.toggle-buttons {
    display: flex;
    position: relative
}

.toggle-buttons__input {
    opacity: 0;
    position: absolute
}

.toggle-buttons__button {
    flex: 1 1 auto;
    padding: 5px 30px;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #e3e3e3;
    border-left-width: 0;
    white-space: nowrap;
    text-align: center;
    cursor: pointer
}

@media only print {
    .toggle-buttons__button {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.toggle-buttons__button:first-of-type {
    border-radius: 2px 0 0 2px;
    border-left-width: 1px
}

.toggle-buttons__button:last-of-type {
    border-radius: 0 2px 2px 0
}

.toggle-buttons__button--active {
    background-color: #176db7;
    border-color: #176db7;
    color: #fff;
    margin: 0 -1px;
    z-index: 1
}

.form__checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1
}

.form__checkbox+.form__checkbox-label {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
    display: block;
    padding-left: 35px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    display: flex;
    min-height: 25px;
    align-items: center
}

.form__checkbox--toggle .form__checkbox+.form__checkbox-label {
    padding-left: 50px
}

.form__checkbox+.form__checkbox-label--hidden>* {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

@media only print {
    .form__checkbox+.form__checkbox-label--hidden>* {
        display: none
    }
}

.form__checkbox+.form__checkbox-label:before {
    content: '';
    position: absolute;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    border: 1px solid #999;
    height: 25px;
    width: 25px;
    background: #fff
}

.form__checkbox--toggle .form__checkbox+.form__checkbox-label:before {
    background-color: #e3e3e3;
    border: none;
    border-radius: 15px;
    transition: background-color .15s ease;
    width: 40px
}

.form__checkbox--toggle .form__checkbox+.form__checkbox-label:after {
    background: #fff;
    border-radius: 15px;
    content: '';
    height: 20px;
    left: 3px;
    position: absolute;
    transition: left .15s linear;
    width: 20px
}

.form__checkbox+.form__checkbox-label:empty,
.form__checkbox+.form__checkbox-label--hidden {
    padding-left: 25px
}

.form__checkbox+.form__checkbox-label:empty:before,
.form__checkbox+.form__checkbox-label--hidden:before {
    top: 0;
    transform: translateY(0)
}

.form__checkbox+.form__checkbox-label .form__checkbox-label-text {
    margin-right: 5px
}

.form__checkbox:checked+.form__checkbox-label:before {
    background: #176db7;
    border: none
}

.form__checkbox:checked+.form__checkbox-label:after {
    position: absolute;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3px;
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 14px;
    color: #fff
}

.form__checkbox--toggle .form__checkbox:checked+.form__checkbox-label:after {
    left: 17px
}

.form__checkbox:checked+.form__checkbox-label:empty:after,
.form__checkbox:checked+.form__checkbox-label--hidden:after {
    top: 2px;
    transform: translateY(0)
}

.form__checkbox:focus+.form__checkbox-label:before {
    border-color: #2e7cbe
}

.form__checkbox:checked:focus+.form__checkbox-label:before {
    background: #2e7cbe
}

.form__checkbox:disabled+.form__checkbox-label {
    color: #999;
    cursor: default
}

.form__checkbox:disabled+.form__checkbox-label:before {
    background: #e3e3e3;
    border-color: #e3e3e3
}

.form__checkbox-card {
    outline: thin solid transparent;
    width: 100%;
    height: 100%
}

.form__checkbox-card:hover+.form__checkbox-card--label,
.form__checkbox-card:focus+.form__checkbox-card--label {
    outline: thin solid #176db7
}

.form__checkbox-card--container {
    margin-bottom: 20px;
    margin-top: 20px;
    padding-bottom: 0;
    padding-top: 0;
    position: relative
}

.form__checkbox-card--label {
    color: #176db7;
    height: 100%;
    background-color: #f1f1f1;
    border: 1px solid #e3e3e3;
    border-radius: 2px;
    cursor: pointer
}

.form__checkbox-card--thumbnail {
    max-width: 100%
}

.form__checkbox-card+.form__checkbox-card--label {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 15px;
    text-align: center
}

@media screen and (min-width: 980px) {
    .form__checkbox-card+.form__checkbox-card--label {
        padding: 15px
    }
}

.form__checkbox-card+.form__checkbox-card--label .form__checkbox-label-text {
    margin: 0
}

.form__checkbox-card:checked+.form__checkbox-card--label {
    background-color: #e8f1f8;
    border-color: #176db7
}

html {
    box-sizing: border-box
}

*,
*::after,
*::before {
    box-sizing: inherit
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

html[data-submenu-state='open'] {
    overflow-x: hidden
}

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

body {
    line-height: 1;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none
}

body[data-variant='ondisplay'] {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none
}

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

button {
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    background: none;
    line-height: normal
}

dialog {
    background: white;
    border: solid;
    color: black;
    display: block;
    height: -moz-fit-content;
    height: -webkit-fit-content;
    height: fit-content;
    left: 0;
    right: 0;
    margin: auto;
    padding: 1em;
    position: absolute;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content
}

img {
    vertical-align: bottom
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 767px) {

    select,
    textarea,
    input {
        font-size: 16px !important
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 767px) {

    select:focus,
    textarea:focus,
    input:focus {
        font-size: 16px !important
    }
}

textarea,
input {
    border-radius: 0
}

.button {
    border-radius: 2px;
    color: currentColor;
    display: inline-block;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.83333;
    padding: 5px 10px;
    text-decoration: none;
    cursor: pointer
}

.button_primary {
    background-color: #176db7;
    color: #fff
}

.button_primary:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.button_primary:hover,
.button_primary:focus,
a:hover .button_primary,
a:focus .button_primary {
    background-color: #2e7cbe;
    color: #fff
}

.button_secondary {
    background-color: #e3e3e3;
    color: #000
}

.button_secondary:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.button_secondary:hover,
.button_secondary:focus,
a:hover .button_secondary,
a:focus .button_secondary {
    background-color: #c6c6c6;
    color: #000
}

.button_secondary_alt {
    background-color: #393939;
    color: #fff
}

.button_secondary_alt:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.button_secondary_alt:hover,
.button_secondary_alt:focus {
    background-color: #999
}

.button_call-out {
    background-color: #fff;
    color: #176db7;
    border: 1px solid #176db7
}

.button_call-out:hover,
.button_call-out:focus {
    color: #2e7cbe;
    border-color: #2e7cbe
}

.button_call-out.disabled {
    background-color: #fff !important;
    color: #c6c6c6;
    border-collapse: #c6c6c6
}

.button_loading-control.button_toggle:not([data-loading='true']) .button__value-text:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 15px;
    padding-left: 10px;
    vertical-align: middle
}

.button--wide {
    padding-left: 30px;
    padding-right: 30px
}

.button--full-width {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    text-align: center
}

@media screen and (max-width: 767px) {
    .button--full-width-small-only {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        text-align: center
    }
}

.button_toggle {
    background-color: #fff;
    color: #176db7;
    border: 1px solid #e3e3e3;
    text-align: left;
    font-weight: 700
}

.button_toggle:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.button_toggle:hover,
.button_toggle:focus {
    color: #2e7cbe
}

.button_toggle [class^='icon-mb'],
.button_toggle [class*=' icon-mb'] {
    vertical-align: middle;
    padding-left: 15px
}

.button__value-text {
    padding-left: 0;
    transition: padding .3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

[data-loading='true'] .button__value-text {
    padding-left: 30px
}

.button .loading-spinner:before {
    content: none;
    width: 19px;
    height: 19px;
    border-width: 3px;
    border-top-color: inherit;
    left: auto;
    top: auto
}

.button[data-loading='true'] .loading-spinner:before {
    content: ''
}


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

.font-secondary {
    font-family: "corporateacondpro", Georgia, serif
}

.font-tertiary {
    font-family: "corpos", sans-serif
}

.font-family-10 {
    font-family: MBCorpoA, Georgia, serif
}

.font-family-20 {
    font-family: MBCorpoS, Arial, sans-serif
}

.font-default-16-24 {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 24px
}

.font-default-15-20 {
    font-family: "Arial", sans-serif;
    font-size: 15px;
    line-height: 20px
}

.font-default-14-20 {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px
}

.font-default-13-20 {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px
}

.font-default-13-13 {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 13px
}

.font-default-12-22 {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px
}

.font-default-12-18 {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px
}

.font-default-12-12 {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 12px
}

.font-default-11-24 {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px
}

.font-secondary-104-112 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 104px;
    line-height: 112px
}

.font-secondary-80-88 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 80px;
    line-height: 88px
}

.font-secondary-64-77 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 64px;
    line-height: 77px
}

.font-secondary-64-72 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 64px;
    line-height: 72px
}

.font-secondary-64-64 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 64px;
    line-height: 64px
}

.font-secondary-48-56 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 48px;
    line-height: 56px
}

.font-secondary-46-46 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 46px;
    line-height: 46px
}

.font-secondary-42-50 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 42px;
    line-height: 50px
}

.font-secondary-40-40 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 40px;
    line-height: 40px
}

.font-secondary-36-36 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px
}

.font-secondary-32-40 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 32px;
    line-height: 40px
}

.font-secondary-32-32 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 32px;
    line-height: 32px
}

.font-secondary-30-38 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 30px;
    line-height: 38px
}

.font-secondary-30-30 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 30px;
    line-height: 30px
}

.font-secondary-28-34 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 28px;
    line-height: 34px
}

.font-secondary-24-28 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px
}

.font-secondary-18-18 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 18px;
    line-height: 18px
}

.font-secondary-16-16 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 16px;
    line-height: 16px
}

.font-tertiary-40-48 {
    font-family: "corpos", sans-serif;
    font-size: 40px;
    line-height: 48px
}

.font-tertiary-32-40 {
    font-family: "corpos", sans-serif;
    font-size: 32px;
    line-height: 40px
}

.font-tertiary-26-32 {
    font-family: "corpos", sans-serif;
    font-size: 26px;
    line-height: 32px
}

.font-tertiary-26-26 {
    font-family: "corpos", sans-serif;
    font-size: 26px;
    line-height: 26px
}

.font-tertiary-18-24 {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px
}

.font-tertiary-16-26 {
    font-family: "corpos", sans-serif;
    font-size: 16px;
    line-height: 26px
}

.font-tertiary-16-16 {
    font-family: "corpos", sans-serif;
    font-size: 16px;
    line-height: 16px
}

.font-tertiary-14-20 {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px
}

.font-weight-black {
    font-weight: 900
}

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

.font-weight-book {
    font-weight: 300
}

.font-weight-light {
    font-weight: 200
}

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

.font-weight-regular {
    font-weight: 400
}

.font-weight-semibold {
    font-weight: 600
}

.italic {
    font-style: italic
}


[class^="icon-"],
[class*=" icon-"] {
    font-family: 'nafta-icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-AMG_logo-performance-center-elite:before {
    content: "\ea01"
}

.icon-AMG_logo-performance-center:before {
    content: "\ea02"
}

.icon-AMG_logo:before {
    content: "\ea03"
}

.icon-about:before {
    content: "\ea04"
}

.icon-acceleration:before {
    content: "\ea05"
}

.icon-application:before {
    content: "\ea06"
}

.icon-apply_for_credit:before {
    content: "\ea07"
}

.icon-arrow-beacon:before {
    content: "\ea08"
}

.icon-arrow-down-square:before {
    content: "\ea09"
}

.icon-arrow-left-right-line:before {
    content: "\ea0a"
}

.icon-arrow-left-square:before {
    content: "\ea0b"
}

.icon-arrow-right-left-line:before {
    content: "\ea0c"
}

.icon-arrow-right-square:before {
    content: "\ea0d"
}

.icon-arrow-up-square:before {
    content: "\ea0e"
}

.icon-assistance:before {
    content: "\ea0f"
}

.icon-backspace:before {
    content: "\ea10"
}

.icon-battery:before {
    content: "\ea11"
}

.icon-build-gear:before {
    content: "\ea12"
}

.icon-calculator:before {
    content: "\ea13"
}

.icon-calendar:before {
    content: "\ea14"
}

.icon-careers:before {
    content: "\ea15"
}

.icon-caret-down-thin:before {
    content: "\ea16"
}

.icon-caret-down:before {
    content: "\ea17"
}

.icon-caret-left-thin:before {
    content: "\ea18"
}

.icon-caret-right-thin:before {
    content: "\ea19"
}

.icon-caret-right:before {
    content: "\ea1a"
}

.icon-caret-up-flattened:before {
    content: "\ea1b"
}

.icon-caret-up-thin:before {
    content: "\ea1c"
}

.icon-caret-up:before {
    content: "\ea1d"
}

.icon-cargo:before {
    content: "\ea1e"
}

.icon-cash-badge:before {
    content: "\ea1f"
}

.icon-check-badge:before {
    content: "\ea20"
}

.icon-check:before {
    content: "\ea21"
}

.icon-checkbook:before {
    content: "\ea22"
}

.icon-checkmark-disc-stroke:before {
    content: "\ea23"
}

.icon-checkmark-disc:before {
    content: "\ea24"
}

.icon-clock:before {
    content: "\ea25"
}

.icon-community:before {
    content: "\ea26"
}

.icon-compare:before {
    content: "\ea27"
}

.icon-concierge:before {
    content: "\ea28"
}

.icon-connected-vehicle:before {
    content: "\ea29"
}

.icon-creatives:before {
    content: "\ea2a"
}

.icon-credit-application-disclosures:before {
    content: "\ea2b"
}

.icon-delete:before {
    content: "\ea2c"
}

.icon-developer:before {
    content: "\ea2d"
}

.icon-document-checkmark:before {
    content: "\ea2e"
}

.icon-dollar-symbol:before {
    content: "\ea2f"
}

.icon-download-arrow:before {
    content: "\ea30"
}

.icon-download:before {
    content: "\ea31"
}

.icon-dragtorotate:before {
    content: "\ea32"
}

.icon-dragtorotate360:before {
    content: "\ea33"
}

.icon-edit-pencil:before {
    content: "\ea34"
}

.icon-email-linear:before {
    content: "\ea35"
}

.icon-email:before {
    content: "\ea36"
}

.icon-engine:before {
    content: "\ea37"
}

.icon-eq-logo:before {
    content: "\ea38"
}

.icon-exit:before {
    content: "\ea39"
}

.icon-expand:before {
    content: "\ea3a"
}

.icon-file-search:before {
    content: "\ea3b"
}

.icon-filters:before {
    content: "\ea3c"
}

.icon-finance-badge:before {
    content: "\ea3d"
}

.icon-fine-minus:before {
    content: "\ea3e"
}

.icon-fine-plus:before {
    content: "\ea3f"
}

.icon-gears:before {
    content: "\ea40"
}

.icon-getting-help:before {
    content: "\ea41"
}

.icon-grid-view:before {
    content: "\ea42"
}

.icon-home:before {
    content: "\ea43"
}

.icon-horsepower:before {
    content: "\ea44"
}

.icon-i-ball:before {
    content: "\ea45"
}

.icon-id-badge:before {
    content: "\ea46"
}

.icon-inventory-favorite:before {
    content: "\ea47"
}

.icon-link:before {
    content: "\ea48"
}

.icon-list-view:before {
    content: "\ea49"
}

.icon-lock:before {
    content: "\ea4a"
}

.icon-maybach-logo:before {
    content: "\ea4b"
}

.icon-mb-collision-center:before {
    content: "\ea4c"
}

.icon-mb-dealer-location:before {
    content: "\ea4d"
}

.icon-mb-logo:before {
    content: "\ea4e"
}

.icon-mbfs-stacked:before {
    content: "\ea4f"
}

.icon-mbfs:before {
    content: "\ea50"
}

.icon-mbusa-logo:before {
    content: "\ea51"
}

.icon-minimize:before {
    content: "\ea52"
}

.icon-minus:before {
    content: "\ea53"
}

.icon-mme-settings:before {
    content: "\ea54"
}

.icon-mobile-app:before {
    content: "\ea55"
}

.icon-model-chooser:before {
    content: "\ea56"
}

.icon-moon:before {
    content: "\ea57"
}

.icon-mpg:before {
    content: "\ea58"
}

.icon-new-tab:before {
    content: "\ea59"
}

.icon-open-display:before {
    content: "\ea5a"
}

.icon-other-sites:before {
    content: "\ea5b"
}

.icon-output:before {
    content: "\ea5c"
}

.icon-passenger:before {
    content: "\ea5d"
}

.icon-pause-looping:before {
    content: "\ea5e"
}

.icon-payment-method:before {
    content: "\ea5f"
}

.icon-payment:before {
    content: "\ea60"
}

.icon-pin-outline:before {
    content: "\ea61"
}

.icon-pin-wide:before {
    content: "\ea62"
}

.icon-pin:before {
    content: "\ea63"
}

.icon-play-looping:before {
    content: "\ea64"
}

.icon-plus-outlined:before {
    content: "\ea65"
}

.icon-plus:before {
    content: "\ea66"
}

.icon-preferred-dealer:before {
    content: "\ea67"
}

.icon-press-release:before {
    content: "\ea68"
}

.icon-print:before {
    content: "\ea69"
}

.icon-privacy-notice:before {
    content: "\ea6a"
}

.icon-profile-outline:before {
    content: "\ea6b"
}

.icon-profile:before {
    content: "\ea6c"
}

.icon-question-mark:before {
    content: "\ea6d"
}

.icon-rain:before {
    content: "\ea6e"
}

.icon-range:before {
    content: "\ea6f"
}

.icon-request_a_test_drive:before {
    content: "\ea70"
}

.icon-reserve-vehicle:before {
    content: "\ea71"
}

.icon-review:before {
    content: "\ea72"
}

.icon-save-empty:before {
    content: "\ea73"
}

.icon-save-filled:before {
    content: "\ea74"
}

.icon-save-your-build:before {
    content: "\ea75"
}

.icon-scale:before {
    content: "\ea76"
}

.icon-search-outline:before {
    content: "\ea77"
}

.icon-search:before {
    content: "\ea78"
}

.icon-share:before {
    content: "\ea79"
}

.icon-shopping-assist-wordmark:before {
    content: "\ea7a"
}

.icon-shopping-bag:before {
    content: "\ea7b"
}

.icon-smart:before {
    content: "\ea7c"
}

.icon-social-facebook:before {
    content: "\ea7d"
}

.icon-social-instagram:before {
    content: "\ea7e"
}

.icon-social-twitter:before {
    content: "\ea7f"
}

.icon-social-youtube:before {
    content: "\ea80"
}

.icon-solid-circle:before {
    content: "\ea81"
}

.icon-special-offers:before {
    content: "\ea82"
}

.icon-steering-wheel:before {
    content: "\ea83"
}

.icon-sun:before {
    content: "\ea84"
}

.icon-terms-of-use:before {
    content: "\ea85"
}

.icon-text-alerts:before {
    content: "\ea86"
}

.icon-top_down:before {
    content: "\ea87"
}

.icon-top_up:before {
    content: "\ea88"
}

.icon-torque:before {
    content: "\ea89"
}

.icon-towing:before {
    content: "\ea8a"
}

.icon-trade-in:before {
    content: "\ea8b"
}

.icon-trade_in_value:before {
    content: "\ea8c"
}

.icon-vehicle-reservations:before {
    content: "\ea8d"
}

.icon-vehicle:before {
    content: "\ea8e"
}

.icon-view-inventory:before {
    content: "\ea8f"
}

.icon-volume:before {
    content: "\ea90"
}

.icon-warning-circle:before {
    content: "\ea91"
}

.icon-warning:before {
    content: "\ea92"
}

.icon-warranty-and-maintenance:before {
    content: "\ea93"
}

.icon-zoomin:before {
    content: "\ea94"
}

.icon-zoomout:before {
    content: "\ea95"
}

.link {
    color: currentColor;
    cursor: pointer;
    text-decoration: none
}

.link_primary {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    padding-left: 10px;
    position: relative
}

@media only print {
    .link_primary {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400
    }
}

.link_primary:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.link_primary:hover,
.link_primary:focus {
    color: #2e7cbe
}

.link_primary:before {
    color: #2e7cbe;
    content: "";
    display: inline-block;
    font-family: nafta-icons;
    font-size: 6px;
    left: 0;
    margin-top: 0;
    position: absolute;
    right: auto;
    top: 50%;
    transform: translateY(-50%)
}

.link_secondary {
    padding-left: 10px;
    position: relative
}

.link_secondary:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.link_secondary:hover,
.link_secondary:focus {
    color: #2e7cbe
}

.link_secondary:before {
    color: #2e7cbe;
    content: "";
    display: inline-block;
    font-family: nafta-icons;
    font-size: 6px;
    left: 0;
    margin-top: 0;
    position: absolute;
    right: auto;
    top: 50%;
    transform: translateY(-50%)
}

@media only print {
    .link_secondary {
        font-family: "Arial", sans-serif;
        font-size: 12px;
        line-height: 18px;
        font-weight: 400
    }
}

@media only print {
    .link_secondary {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.link_plain-link {
    color: #176db7
}

.link_plain-link:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.link_plain-link:hover,
.link_plain-link:focus {
    color: #2e7cbe
}

a:hover .link_plain-link,
a:focus .link_plain-link {
    color: #2e7cbe
}

.link_in-text:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.link_in-text:hover,
.link_in-text:focus {
    color: #2e7cbe
}

.link_bold {
    font-size: 14px;
    font-weight: 700
}

.link_bold:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.link_bold:hover,
.link_bold:focus {
    color: #2e7cbe
}

.link_bold_sub {
    font-size: 12px;
    font-weight: 700
}

.link_bold_sub:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.link_bold_sub:hover,
.link_bold_sub:focus {
    color: #2e7cbe
}

.link_icon_text {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400
}

.link_icon_text:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.link_icon_text:hover,
.link_icon_text:focus {
    color: #2e7cbe
}

@media only print {
    .link_icon_text {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {
    .link_icon_text {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

.link_icon_text [class^='icon-mb'],
.link_icon_text [class*=' icon-mb'] {
    vertical-align: middle
}

.link_external-link:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 9px;
    margin-left: 5px
}

.loading-spinner:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    left: -20px;
    top: -20px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #999;
    -webkit-animation: spinner .6s linear infinite;
    animation: spinner .6s linear infinite
}

.loading-spinner--large:before {
    width: 60px;
    height: 60px;
    left: -30px;
    top: -30px
}

.loading-spinner--inline {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px
}

.loading-spinner--inline.loading-spinner--large {
    width: 60px;
    height: 60px
}

.loading-spinner--inline:before,
.loading-spinner--inline.loading-spinner--large:before {
    top: 0;
    left: 0
}

@-webkit-keyframes spinner {
    to {
        transform: rotate(360deg)
    }
}

@keyframes spinner {
    to {
        transform: rotate(360deg)
    }
}

.screen-small-test,
.screen-large-test,
.screen-xlarge-test,
.screen-xxlarge-test {
    display: none;
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

@media only print {

    .screen-small-test,
    .screen-large-test,
    .screen-xlarge-test,
    .screen-xxlarge-test {
        display: none
    }
}

@media screen and (min-width: 0) and (max-width: 767px) {
    .screen-small-test {
        display: block
    }
}

@media screen and (min-width: 768px) and (max-width: 979px) {
    .screen-large-test {
        display: block
    }
}

@media screen and (min-width: 980px) and (max-width: 1439px) {
    .screen-xlarge-test {
        display: block
    }
}

@media screen and (min-width: 1440px) {
    .screen-xxlarge-test {
        display: block
    }
}

body {
    font-family: "Arial", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.83333;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004)
}

h1:before,
h1:after,
h2:before,
h2:after,
h3:before,
h3:after,
h4:before,
h4:after,
h5:before,
h5:after,
h6:before,
h6:after,
a:before,
a:after,
span:before,
span:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004)
}

code {
    display: block;
    white-space: pre-wrap;
    line-height: 1.5;
    padding: 10px;
    font-family: 'Lucida Console', Monaco, monospace;
    background: #000;
    color: #f1f1f1;
    margin: 16px 0
}

code.inline {
    white-space: normal;
    display: inline;
    padding: 1px 5px;
    margin: 0
}

a {
    text-decoration: none
}

i,
em {
    font-style: italic
}

strong,
b {
    font-weight: bold
}

sup {
    vertical-align: super;
    font-size: 11px
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.uppercase {
    text-transform: uppercase
}

.capitalize {
    text-transform: capitalize
}

.xl-heading-regular-104 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 104px;
    line-height: 112px;
    font-weight: 400
}

.xl-heading-regular-80 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 80px;
    line-height: 88px;
    font-weight: 400
}

.xl-heading-regular-64 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 64px;
    line-height: 72px;
    font-weight: 400
}

.xl-heading-regular-48 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 48px;
    line-height: 56px;
    font-weight: 400
}

.xl-heading-regular-32 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 400
}

.xl-heading-regular {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 42px;
    line-height: 50px;
    font-weight: 400
}

@media screen and (min-width: 980px),
only print {
    .xl-heading-regular {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 64px;
        line-height: 77px;
        font-weight: 400
    }
}

.brand-title-italic {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 46px;
    line-height: 46px;
    font-weight: 400;
    font-style: italic
}

@media screen and (min-width: 768px),
only print {
    .brand-title-italic {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 64px;
        line-height: 64px;
        font-weight: 400;
        font-style: italic
    }
}

.main-heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400
}

@media screen and (min-width: 980px),
only print {
    .main-heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.heading-regular {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400
}

@media screen and (min-width: 980px),
only print {
    .heading-regular {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 36px;
        line-height: 36px;
        font-weight: 400
    }
}

.heading-italic {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    font-style: italic
}

@media screen and (min-width: 980px),
only print {
    .heading-italic {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 36px;
        line-height: 36px;
        font-weight: 400;
        font-style: italic
    }
}

.featured-heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400
}

.featured-heading-italic {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    font-style: italic
}

.subhead-regular {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400
}

@media screen and (min-width: 980px),
only print {
    .subhead-regular {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

.subhead-italic {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    font-style: italic
}

@media screen and (min-width: 980px),
only print {
    .subhead-italic {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400;
        font-style: italic
    }
}

.section-regular {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400
}

@media only print {
    .section-regular {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {
    .section-regular {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

.section-italic {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    font-style: italic
}

@media only print {
    .section-italic {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {
    .section-italic {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

.subsection-regular {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .subsection-regular {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400
    }
}

.subsection-italic {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    font-style: italic
}

@media only print {
    .subsection-italic {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400
    }
}

.small-subhead-regular {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 16px;
    line-height: 16px
}

@media only print {
    .small-subhead-regular {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400
    }
}

@media only print {
    .small-subhead-regular {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {
    .small-subhead-regular {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

.accent-regular-40 {
    font-family: "corpos", sans-serif;
    font-size: 40px;
    line-height: 48px;
    font-weight: 400
}

.accent-regular-32 {
    font-family: "corpos", sans-serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 400
}

.accent-regular {
    font-family: "corpos", sans-serif;
    font-size: 26px;
    line-height: 32px;
    font-weight: 400
}

.accent-bold {
    font-family: "corpos", sans-serif;
    font-size: 26px;
    line-height: 32px;
    font-weight: 700
}

.call-out-text-regular {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400
}

.call-out-text-italic {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    font-style: italic
}

.call-out-text-bold {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700
}

.call-out-text-bold-italic {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    font-style: italic
}

.call-out-text-small {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

.call-out-text-small-bold {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700
}

.hero-copy-regular {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400
}

.featured-copy-regular {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

.featured-copy-bold {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700
}

.highlight-copy-regular {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400
}

@media only print {
    .highlight-copy-regular {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.highlight-copy-bold {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700
}

@media only print {
    .highlight-copy-bold {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.highlight-copy-italic {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    font-style: italic
}

@media only print {
    .highlight-copy-italic {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        font-style: italic
    }
}

.copy-narrow-regular {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .copy-narrow-regular {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.copy-narrow-bold {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700
}

@media only print {
    .copy-narrow-bold {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.copy-narrow-italic {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    font-style: italic
}

@media only print {
    .copy-narrow-italic {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        font-style: italic
    }
}

.copy-wide-regular {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400
}

@media only print {
    .copy-wide-regular {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.copy-wide-bold {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700
}

@media only print {
    .copy-wide-bold {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.copy-wide-italic {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    font-style: italic
}

@media only print {
    .copy-wide-italic {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        font-style: italic
    }
}

.paragraph-wide-regular {
    font-family: "Arial", sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400
}

.disclaimer {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400
}

.font-10-24 {
    font-family: MBCorpoA, Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    line-height: calc(24px + 8px)
}

.font-10-32 {
    font-family: MBCorpoA, Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    line-height: calc(32px + 8px)
}

.font-10-40 {
    font-family: MBCorpoA, Georgia, serif;
    font-size: 40px;
    font-weight: 400;
    line-height: calc(40px + 8px)
}

.font-10-48 {
    font-family: MBCorpoA, Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    line-height: calc(48px + 8px)
}

.font-10-64 {
    font-family: MBCorpoA, Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    line-height: calc(64px + 8px)
}

.font-10-80 {
    font-family: MBCorpoA, Georgia, serif;
    font-size: 80px;
    font-weight: 400;
    line-height: calc(80px + 8px)
}

.font-10-104 {
    font-family: MBCorpoA, Georgia, serif;
    font-size: 104px;
    font-weight: 400;
    line-height: calc(104px + 8px)
}

.font-20-12 {
    font-family: MBCorpoS, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: calc(12px + 8px)
}

.font-20-16 {
    font-family: MBCorpoS, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: calc(16px + 8px)
}

.font-20-24 {
    font-family: MBCorpoS, Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: calc(24px + 8px)
}

.font-20-32 {
    font-family: MBCorpoS, Arial, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: calc(32px + 8px)
}

.font-20-40 {
    font-family: MBCorpoS, Arial, sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: calc(40px + 8px)
}

.font-20-12-bold {
    font-family: MBCorpoS, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: calc(12px + 8px)
}

.font-20-16-bold {
    font-family: MBCorpoS, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: calc(16px + 8px)
}

.font-20-24-bold {
    font-family: MBCorpoS, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: calc(24px + 8px)
}

.font-20-32-bold {
    font-family: MBCorpoS, Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: calc(32px + 8px)
}

.font-20-40-bold {
    font-family: MBCorpoS, Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: calc(40px + 8px)
}

.disabled.button,
.disabled.link {
    cursor: default;
    pointer-events: none
}

.disabled.button:focus,
.disabled.link:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.disabled.button:hover,
.disabled.button:focus,
.disabled.link:hover,
.disabled.link:focus {
    cursor: default
}

.disabled--visually.button,
.disabled--visually.link {
    pointer-events: initial
}

.disabled.button {
    background-color: #c6c6c6 !important
}

.disabled.button:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.disabled.button:hover,
.disabled.button:focus {
    background-color: #c6c6c6
}

.disabled.link {
    color: #c6c6c6
}

.disabled.link:focus {
    -webkit-animation: none;
    animation: none;
    outline: none
}

.disabled.link:before,
.disabled.link:after {
    color: #c6c6c6 !important
}

.disabled.link:link,
.disabled.link:visited,
.disabled.link:hover,
.disabled.link:active,
.disabled.link:focus {
    color: #c6c6c6 !important
}

*:focus {
    outline: thin solid #176db7;
    outline-offset: 4px
}

div:focus {
    outline: none;
    -webkit-animation: none;
    animation: none
}

.outer-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

.outer-container::after {
    clear: both;
    content: '';
    display: block
}

.hide {
    display: none !important
}

@media screen and (max-width: 767px) {
    .hide-small {
        display: none !important
    }
}

@media screen and (min-width: 768px) {
    .hide-large {
        display: none !important
    }
}

@media screen and (min-width: 768px) {
    .hide-large--height {
        height: 0 !important
    }
}

.hide--height {
    height: 0 !important
}

.hide--override-flex {
    display: flex !important
}

.hide--override-block {
    display: block !important
}

.hide--override-inline {
    display: inline !important
}

.hide--override-inline-block {
    display: inline-block !important
}

.no-scroll {
    overflow: hidden
}

.offscreen,
.skip-navigation {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

@media only print {

    .offscreen,
    .skip-navigation {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .skip-navigation:focus {
        clip: auto;
        color: #fff;
        height: auto;
        left: 60px;
        top: 20px;
        width: auto
    }
}

@media screen and (min-width: 980px) {
    .skip-navigation:focus {
        left: 80px
    }
}

.shadowed {
    box-shadow: 0px 5px 25px -10px black
}

.inset-shadowed {
    background-image: radial-gradient(ellipse closest-corner at 50% 100px, 0%, transparent 160%);
    background-position: 0px -300px;
    background-repeat: no-repeat
}

.wrapper {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 93.4375%;
    margin: 0 auto
}

.wrapper::after {
    clear: both;
    content: '';
    display: block
}

@media screen and (min-width: 768px) {
    .wrapper {
        width: 91.14583%;
        margin: 0 auto
    }
}

@media screen and (min-width: 980px) {
    .wrapper {
        width: 95.91837%;
        max-width: 940px
    }
}

@media screen and (min-width: 980px) {
    .wrapper {
        width: 80.61224%;
        max-width: 1440px
    }
}

@media screen and (min-width: 1440px) {
    .wrapper {
        width: 81.25%;
        max-width: 1170px
    }
}

.wrapper .wrapper {
    width: 100%
}

body {
    background-color: #fff
}


/*******************************/
/*******************************/
/*******************************/
/*******************************/
/*******************************/


.mb-title-non-breaking {
    white-space: nowrap
}

body:before,
.grid-debugger:before {
    background-image: linear-gradient(to left, transparent 0, #246195 0, #246195 6.17215%, transparent 6.17215%, transparent 8.5298%, #2e7cbe 8.5298%, #2e7cbe 14.70196%, transparent 14.70196%, transparent 17.05961%, #246195 17.05961%, #246195 23.23176%, transparent 23.23176%, transparent 25.58941%, #2e7cbe 25.58941%, #2e7cbe 31.76157%, transparent 31.76157%, transparent 34.11922%, #246195 34.11922%, #246195 40.29137%, transparent 40.29137%, transparent 42.64902%, #2e7cbe 42.64902%, #2e7cbe 48.82117%, transparent 48.82117%, transparent 51.17883%, #246195 51.17883%, #246195 57.35098%, transparent 57.35098%, transparent 59.70863%, #2e7cbe 59.70863%, #2e7cbe 65.88078%, transparent 65.88078%, transparent 68.23843%, #246195 68.23843%, #246195 74.41059%, transparent 74.41059%, transparent 76.76824%, #2e7cbe 76.76824%, #2e7cbe 82.94039%, transparent 82.94039%, transparent 85.29804%, #246195 85.29804%, #246195 91.4702%, transparent 91.4702%, transparent 93.82785%, #2e7cbe 93.82785%, #2e7cbe 100%, transparent 100%);
    content: '';
    display: inline-block;
    height: 100%;
    left: 0;
    margin: 0 auto;
    max-width: 1200px;
    opacity: .1;
    pointer-events: none;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: 9999
}

@media screen and (max-width: 767px) {

    body:before,
    .grid-debugger:before {
        background-image: linear-gradient(to left, transparent 0, #246195 0, #246195 19.43277%, transparent 19.43277%, transparent 26.85574%, #2e7cbe 26.85574%, #2e7cbe 46.28851%, transparent 46.28851%, transparent 53.71149%, #246195 53.71149%, #246195 73.14426%, transparent 73.14426%, transparent 80.56723%, #2e7cbe 80.56723%, #2e7cbe 100%, transparent 100%)
    }
}

@media screen and (min-width: 768px) {

    body:before,
    .grid-debugger:before {
        background-image: linear-gradient(to left, transparent 0, #246195 0, #246195 6.17215%, transparent 6.17215%, transparent 8.5298%, #2e7cbe 8.5298%, #2e7cbe 14.70196%, transparent 14.70196%, transparent 17.05961%, #246195 17.05961%, #246195 23.23176%, transparent 23.23176%, transparent 25.58941%, #2e7cbe 25.58941%, #2e7cbe 31.76157%, transparent 31.76157%, transparent 34.11922%, #246195 34.11922%, #246195 40.29137%, transparent 40.29137%, transparent 42.64902%, #2e7cbe 42.64902%, #2e7cbe 48.82117%, transparent 48.82117%, transparent 51.17883%, #246195 51.17883%, #246195 57.35098%, transparent 57.35098%, transparent 59.70863%, #2e7cbe 59.70863%, #2e7cbe 65.88078%, transparent 65.88078%, transparent 68.23843%, #246195 68.23843%, #246195 74.41059%, transparent 74.41059%, transparent 76.76824%, #2e7cbe 76.76824%, #2e7cbe 82.94039%, transparent 82.94039%, transparent 85.29804%, #246195 85.29804%, #246195 91.4702%, transparent 91.4702%, transparent 93.82785%, #2e7cbe 93.82785%, #2e7cbe 100%, transparent 100%)
    }
}

@media screen and (min-width: 980px) {

    body:before,
    .grid-debugger:before {
        background-image: linear-gradient(to left, transparent 0, #246195 0, #246195 6.17215%, transparent 6.17215%, transparent 8.5298%, #2e7cbe 8.5298%, #2e7cbe 14.70196%, transparent 14.70196%, transparent 17.05961%, #246195 17.05961%, #246195 23.23176%, transparent 23.23176%, transparent 25.58941%, #2e7cbe 25.58941%, #2e7cbe 31.76157%, transparent 31.76157%, transparent 34.11922%, #246195 34.11922%, #246195 40.29137%, transparent 40.29137%, transparent 42.64902%, #2e7cbe 42.64902%, #2e7cbe 48.82117%, transparent 48.82117%, transparent 51.17883%, #246195 51.17883%, #246195 57.35098%, transparent 57.35098%, transparent 59.70863%, #2e7cbe 59.70863%, #2e7cbe 65.88078%, transparent 65.88078%, transparent 68.23843%, #246195 68.23843%, #246195 74.41059%, transparent 74.41059%, transparent 76.76824%, #2e7cbe 76.76824%, #2e7cbe 82.94039%, transparent 82.94039%, transparent 85.29804%, #246195 85.29804%, #246195 91.4702%, transparent 91.4702%, transparent 93.82785%, #2e7cbe 93.82785%, #2e7cbe 100%, transparent 100%)
    }
}

@media screen and (min-width: 1440px) {

    body:before,
    .grid-debugger:before {
        background-image: linear-gradient(to left, transparent 0, #246195 0, #246195 6.17215%, transparent 6.17215%, transparent 8.5298%, #2e7cbe 8.5298%, #2e7cbe 14.70196%, transparent 14.70196%, transparent 17.05961%, #246195 17.05961%, #246195 23.23176%, transparent 23.23176%, transparent 25.58941%, #2e7cbe 25.58941%, #2e7cbe 31.76157%, transparent 31.76157%, transparent 34.11922%, #246195 34.11922%, #246195 40.29137%, transparent 40.29137%, transparent 42.64902%, #2e7cbe 42.64902%, #2e7cbe 48.82117%, transparent 48.82117%, transparent 51.17883%, #246195 51.17883%, #246195 57.35098%, transparent 57.35098%, transparent 59.70863%, #2e7cbe 59.70863%, #2e7cbe 65.88078%, transparent 65.88078%, transparent 68.23843%, #246195 68.23843%, #246195 74.41059%, transparent 74.41059%, transparent 76.76824%, #2e7cbe 76.76824%, #2e7cbe 82.94039%, transparent 82.94039%, transparent 85.29804%, #246195 85.29804%, #246195 91.4702%, transparent 91.4702%, transparent 93.82785%, #2e7cbe 93.82785%, #2e7cbe 100%, transparent 100%)
    }
}

@media screen and (orientation: landscape) {

    body:before,
    .grid-debugger:before {
        background-image: linear-gradient(to left, transparent 0, #246195 0, #246195 6.17215%, transparent 6.17215%, transparent 8.5298%, #2e7cbe 8.5298%, #2e7cbe 14.70196%, transparent 14.70196%, transparent 17.05961%, #246195 17.05961%, #246195 23.23176%, transparent 23.23176%, transparent 25.58941%, #2e7cbe 25.58941%, #2e7cbe 31.76157%, transparent 31.76157%, transparent 34.11922%, #246195 34.11922%, #246195 40.29137%, transparent 40.29137%, transparent 42.64902%, #2e7cbe 42.64902%, #2e7cbe 48.82117%, transparent 48.82117%, transparent 51.17883%, #246195 51.17883%, #246195 57.35098%, transparent 57.35098%, transparent 59.70863%, #2e7cbe 59.70863%, #2e7cbe 65.88078%, transparent 65.88078%, transparent 68.23843%, #246195 68.23843%, #246195 74.41059%, transparent 74.41059%, transparent 76.76824%, #2e7cbe 76.76824%, #2e7cbe 82.94039%, transparent 82.94039%, transparent 85.29804%, #246195 85.29804%, #246195 91.4702%, transparent 91.4702%, transparent 93.82785%, #2e7cbe 93.82785%, #2e7cbe 100%, transparent 100%)
    }
}

@media screen and (orientation: portrait) {

    body:before,
    .grid-debugger:before {
        background-image: linear-gradient(to left, transparent 0, #246195 0, #246195 6.17215%, transparent 6.17215%, transparent 8.5298%, #2e7cbe 8.5298%, #2e7cbe 14.70196%, transparent 14.70196%, transparent 17.05961%, #246195 17.05961%, #246195 23.23176%, transparent 23.23176%, transparent 25.58941%, #2e7cbe 25.58941%, #2e7cbe 31.76157%, transparent 31.76157%, transparent 34.11922%, #246195 34.11922%, #246195 40.29137%, transparent 40.29137%, transparent 42.64902%, #2e7cbe 42.64902%, #2e7cbe 48.82117%, transparent 48.82117%, transparent 51.17883%, #246195 51.17883%, #246195 57.35098%, transparent 57.35098%, transparent 59.70863%, #2e7cbe 59.70863%, #2e7cbe 65.88078%, transparent 65.88078%, transparent 68.23843%, #246195 68.23843%, #246195 74.41059%, transparent 74.41059%, transparent 76.76824%, #2e7cbe 76.76824%, #2e7cbe 82.94039%, transparent 82.94039%, transparent 85.29804%, #246195 85.29804%, #246195 91.4702%, transparent 91.4702%, transparent 93.82785%, #2e7cbe 93.82785%, #2e7cbe 100%, transparent 100%)
    }
}

.icon-top-nav__shopping-tools--all-vehicles-rollover:before,
.icon-top-nav__shopping-tools--all-vehicles:hover:before,
.icon-top-nav__shopping-tools--all-vehicles:focus:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: -220px 0px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--all-vehicles-rollover:hover,
.icon-top-nav__shopping-tools--all-vehicles:hover,
.icon-top-nav__shopping-tools--all-vehicles-rollover:focus,
.icon-top-nav__shopping-tools--all-vehicles:focus {
    animation: none
}

.icon-top-nav__shopping-tools--all-vehicles:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: -220px -440px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--all-vehicles:hover,
.icon-top-nav__shopping-tools--all-vehicles:focus {
    animation: none
}

.icon-top-nav__shopping-tools--build-rollover:before,
.icon-top-nav__shopping-tools--build:hover:before,
.icon-top-nav__shopping-tools--build:focus:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: 0px -220px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--build-rollover:hover,
.icon-top-nav__shopping-tools--build:hover,
.icon-top-nav__shopping-tools--build-rollover:focus,
.icon-top-nav__shopping-tools--build:focus {
    animation: none
}

.icon-top-nav__shopping-tools--build:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: -220px -220px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--build:hover,
.icon-top-nav__shopping-tools--build:focus {
    animation: none
}

.icon-top-nav__shopping-tools--compare-rollover:before,
.icon-top-nav__shopping-tools--compare:hover:before,
.icon-top-nav__shopping-tools--compare:focus:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: -440px 0px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--compare-rollover:hover,
.icon-top-nav__shopping-tools--compare:hover,
.icon-top-nav__shopping-tools--compare-rollover:focus,
.icon-top-nav__shopping-tools--compare:focus {
    animation: none
}

.icon-top-nav__shopping-tools--compare:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: -440px -220px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--compare:hover,
.icon-top-nav__shopping-tools--compare:focus {
    animation: none
}

.icon-top-nav__shopping-tools--finance-rollover:before,
.icon-top-nav__shopping-tools--finance:hover:before,
.icon-top-nav__shopping-tools--finance:focus:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: 0px -440px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--finance-rollover:hover,
.icon-top-nav__shopping-tools--finance:hover,
.icon-top-nav__shopping-tools--finance-rollover:focus,
.icon-top-nav__shopping-tools--finance:focus {
    animation: none
}

.icon-top-nav__shopping-tools--finance:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: 0px 0px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--finance:hover,
.icon-top-nav__shopping-tools--finance:focus {
    animation: none
}

.icon-top-nav__shopping-tools--find-dealer-rollover:before,
.icon-top-nav__shopping-tools--find-dealer:hover:before,
.icon-top-nav__shopping-tools--find-dealer:focus:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: -440px -440px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--find-dealer-rollover:hover,
.icon-top-nav__shopping-tools--find-dealer:hover,
.icon-top-nav__shopping-tools--find-dealer-rollover:focus,
.icon-top-nav__shopping-tools--find-dealer:focus {
    animation: none
}

.icon-top-nav__shopping-tools--find-dealer:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: -660px 0px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--find-dealer:hover,
.icon-top-nav__shopping-tools--find-dealer:focus {
    animation: none
}

.icon-top-nav__shopping-tools--inventory-rollover:before,
.icon-top-nav__shopping-tools--inventory:hover:before,
.icon-top-nav__shopping-tools--inventory:focus:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: -660px -220px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--inventory-rollover:hover,
.icon-top-nav__shopping-tools--inventory:hover,
.icon-top-nav__shopping-tools--inventory-rollover:focus,
.icon-top-nav__shopping-tools--inventory:focus {
    animation: none
}

.icon-top-nav__shopping-tools--inventory:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: -660px -440px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--inventory:hover,
.icon-top-nav__shopping-tools--inventory:focus {
    animation: none
}

.icon-top-nav__shopping-tools--offers-rollover:before,
.icon-top-nav__shopping-tools--offers:hover:before,
.icon-top-nav__shopping-tools--offers:focus:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: 0px -660px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--offers-rollover:hover,
.icon-top-nav__shopping-tools--offers:hover,
.icon-top-nav__shopping-tools--offers-rollover:focus,
.icon-top-nav__shopping-tools--offers:focus {
    animation: none
}

.icon-top-nav__shopping-tools--offers:before {
    background-image: url(../images/sprites/mb-sprites.png);
    background-position: -220px -660px;
    width: 220px;
    height: 220px;
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: 50%;
    margin-left: -110px
}

.icon-top-nav__shopping-tools--offers:hover,
.icon-top-nav__shopping-tools--offers:focus {
    animation: none
}

section .shopping-tools__element:before {
    transform: scale3d(0.7, 0.7, 1);
    transform-origin: center top
}

@media screen and (min-width: 768px) {
    section .shopping-tools__element:before {
        transform: scale3d(0.9, 0.9, 1)
    }
}

@media screen and (min-width: 980px) {
    section .shopping-tools__element:before {
        transform: scale3d(1, 1, 1)
    }
}

.loading-spinner:before,
.loading-message__spinner:before,
.lazy-loader--has-spinner:not(.lazy-loader--loaded):before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    left: -20px;
    top: -20px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #999;
    animation: spinner .6s linear infinite
}

.loading-spinner--large:before {
    width: 60px;
    height: 60px;
    left: -30px;
    top: -30px
}

.loading-spinner--inline,
.loading-message__spinner {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px
}

.loading-spinner--inline.loading-spinner--large,
.loading-spinner--large.loading-message__spinner {
    width: 60px;
    height: 60px
}

.loading-spinner--inline:before,
.loading-message__spinner:before,
.loading-spinner--inline.loading-spinner--large:before,
.loading-spinner--large.loading-message__spinner:before {
    top: 0;
    left: 0
}

@keyframes spinner {
    to {
        transform: rotate(360deg)
    }
}

.footer {
    background-color: #f1f1f1;
    padding-top: 20px
}

.footer--variant {
    padding-top: 0
}

@media screen and (min-width: 768px) {
    .footer {
        padding-top: 30px
    }

    .footer--variant {
        padding-top: 0
    }
}

@media only print {
    .footer {
        padding-top: 0;
        border-top: #c6c6c6 1px solid;
        background-color: unset
    }
}

@media only print {
    .footer [data-accordion-name="footer-accordion"] {
        display: none
    }
}

@media only print {
    .footer .legal {
        display: none
    }
}

.footer__accordion-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex: 1;
    flex: 1
}

@media screen and (max-width: 767px) {

    .footer__accordion-container.wrapper,
    .footer__accordion-container.modal-carousel__details,
    body.specialty-chapter-detail-page .footer__accordion-container.text-block__container,
    .specialty-chapter-detail-page.grid-debugger .footer__accordion-container.text-block__container,
    .footer__accordion-container.youtube-transcript__wrapper {
        width: 100%
    }
}

.footer__accordion-item {
    width: 100%
}

@media screen and (min-width: 768px) {
    .footer__accordion-item {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .footer__accordion-item:last-child {
        margin-right: 0
    }

    .footer__accordion-item:nth-of-type(3) {
        margin-right: 0
    }
}

@media screen and (min-width: 980px) {
    .footer__accordion-item {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 23.23176%
    }

    .footer__accordion-item:last-child {
        margin-right: 0
    }

    .footer__accordion-item:nth-child(3n) {
        margin-right: 2.35765%
    }

    .footer__accordion-item:nth-child(3n+1) {
        clear: none
    }

    .footer__accordion-item:nth-of-type(4) {
        margin-right: 0
    }
}

.footer__accordion-item.stay-connected__stay-in-touch {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .footer__accordion-item.stay-connected__stay-in-touch {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-right: 0
    }

    .footer__accordion-item.stay-connected__stay-in-touch:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 980px) {
    .footer__accordion-item.stay-connected__stay-in-touch {
        width: 100%
    }
}

@media screen and (min-width: 768px) {
    .footer__accordion-item.stay-connected__other-sites {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%;
        margin-right: 0
    }

    .footer__accordion-item.stay-connected__other-sites:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 768px) {
    .footer__accordion-item-heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        border-bottom: 1px dotted #393939;
        border-top: none;
        margin-bottom: 15px
    }

    .footer__accordion-item-heading button {
        font: inherit
    }
}

@media screen and (max-width: 767px) {
    .footer__accordion-item-content {
        background-color: #fff
    }
}

@media screen and (min-width: 768px) {
    .footer__accordion-item-content {
        margin-bottom: 15px;
        border-top: none;
        padding: 0
    }
}

@media screen and (min-width: 980px) {
    .footer__accordion-item-content {
        margin-bottom: 0
    }
}

@media screen and (min-width: 768px) {
    .footer__accordion-item-cta {
        padding: 0
    }
}

.footer--slim {
    padding-top: 15px;
    background: #e3e3e3
}

[data-global-navigation-behavior="docked"] .footer {
    transition: height 0.4s ease-in-out, padding 0.4s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding-top: 0;
    z-index: 1000;
    overflow: auto
}

[data-global-navigation-behavior="docked"] .footer--active {
    height: 45%;
    padding-top: 20px
}

[data-global-navigation-behavior="docked"] .footer--active.footer--variant {
    height: 20%;
    padding-top: 0;
    background: #fff
}

[data-global-navigation-behavior="docked"] .docked-footer__button {
    position: fixed;
    bottom: 20px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
    color: #717171;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    text-transform: uppercase;
    transition: bottom 0.4s ease-in-out, color 0.2s linear, opacity 0.2s linear
}

@media only print {
    [data-global-navigation-behavior="docked"] .docked-footer__button {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    [data-global-navigation-behavior="docked"] .docked-footer__button {
        bottom: 50px;
        right: 50px
    }
}

[data-global-navigation-behavior="docked"] .docked-footer__button:hover {
    color: #eb0000
}

[data-global-navigation-behavior="docked"] .docked-footer__button .icon {
    margin-right: 5px;
    font-size: 16px;
    vertical-align: text-bottom
}

[data-global-navigation-behavior="docked"] .docked-footer__button .icon:before {
    display: inline-block;
    transition: transform 0.2s linear
}

[data-global-navigation-behavior="docked"] .docked-footer__button--open {
    bottom: calc(45% + 20px);
    color: #eb0000
}

[data-global-navigation-behavior="docked"] .docked-footer__button--open .icon:before {
    transform: rotate(-180deg)
}

[data-global-navigation-behavior="docked"] .docked-footer__button.hidden {
    opacity: 0;
    pointer-events: none
}

[data-global-footer-behavior="collapsible"] .footer {
    padding-top: 0
}

[data-global-footer-behavior="collapsible"] .footer__accordion-container {
    transition: height 0.4s ease-in-out, padding 0.4s ease-in-out;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-top: 0
}

[data-global-footer-behavior="collapsible"] .footer__accordion-container--active {
    height: 100%;
    padding-top: 30px;
    padding-bottom: 15px
}

[data-global-footer-behavior="collapsible"] .footer__toggle {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    display: inline-block;
    background: #f1f1f1;
    margin-top: 15px;
    margin-left: 10px;
    padding: 0 5px;
    color: #393939
}

@media screen and (min-width: 768px) {
    [data-global-footer-behavior="collapsible"] .footer__toggle {
        margin-top: 10px
    }
}

@media screen and (min-width: 980px) {
    [data-global-footer-behavior="collapsible"] .footer__toggle {
        cursor: pointer
    }

    [data-global-footer-behavior="collapsible"] .footer__toggle:focus {
        animation: none;
        outline: none
    }

    [data-global-footer-behavior="collapsible"] .footer__toggle:hover,
    [data-global-footer-behavior="collapsible"] .footer__toggle:focus {
        color: #2e7cbe
    }
}

body[data-variant=dealer] [data-global-footer-behavior="collapsible"] .footer__toggle,
[data-variant=dealer].grid-debugger [data-global-footer-behavior="collapsible"] .footer__toggle {
    display: none
}

body[data-variant=largeformat] [data-global-footer-behavior="collapsible"] .footer__toggle,
[data-variant=largeformat].grid-debugger [data-global-footer-behavior="collapsible"] .footer__toggle {
    display: none
}

body[data-variant=ondisplay] [data-global-footer-behavior="collapsible"] .footer__toggle,
[data-variant=ondisplay].grid-debugger [data-global-footer-behavior="collapsible"] .footer__toggle {
    display: none
}

body[data-variant=popup] [data-global-footer-behavior="collapsible"] .footer__toggle,
[data-variant=popup].grid-debugger [data-global-footer-behavior="collapsible"] .footer__toggle {
    display: none
}

body[data-variant=wheelstand] [data-global-footer-behavior="collapsible"] .footer__toggle,
[data-variant=wheelstand].grid-debugger [data-global-footer-behavior="collapsible"] .footer__toggle {
    display: none
}

[data-global-footer-behavior="collapsible"] .footer__toggle .icon-mb {
    padding-left: 3px
}

[data-global-footer-behavior="collapsible"] .footer__toggle .icon-mb:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%
}

[data-global-footer-behavior="collapsible"] .footer__toggle--open {
    color: #2e7cbe
}

[data-global-footer-behavior="collapsible"] .footer__toggle--open .icon-mb {
    padding-left: 5px
}

[data-global-footer-behavior="collapsible"] .footer__toggle--open .icon-mb:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%
}

[data-global-footer-behavior="collapsible"] .footer .legal {
    margin-top: 0
}

body.debug,
.debug.grid-debugger {
    background-color: transparent
}

body.debug:before,
.debug.grid-debugger:before {
    display: block
}

body:before,
.grid-debugger:before {
    display: none;
    width: 93.4375%;
    margin: 0 auto;
    background: repeating-linear-gradient(90deg, #00a6c9, #00a6c9 20%, transparent 20%, transparent 26.66667%, #007c96 26.66667%, #007c96 46.66667%, transparent 46.66667%, transparent 53.33333%)
}

@media screen and (min-width: 768px) {

    body:before,
    .grid-debugger:before {
        width: calc(700 / 768 * 100%);
        background: repeating-linear-gradient(90deg, #00a6c9, #00a6c9 6.38298%, transparent 6.38298%, transparent 8.51064%, #007c96 8.51064%, #007c96 14.89362%, transparent 14.89362%, transparent 17.02128%)
    }
}

@media screen and (min-width: 980px) {

    body:before,
    .grid-debugger:before {
        width: calc(790 / 980 * 100%);
        max-width: none
    }
}

@media screen and (min-width: 1440px) {

    body:before,
    .grid-debugger:before {
        width: calc(1170 / 1440 * 100%);
        max-width: 1170px
    }
}

.grid-debugger.debug {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none
}

@media screen and (max-width: 979px) {

    body[data-global-header-state="open"],
    [data-global-header-state="open"].grid-debugger {
        padding-top: 60px
    }
}

@media screen and (max-width: 979px) {
    [data-global-header-state="open"] .global-header {
        width: 100%;
        position: fixed;
        top: 0;
        z-index: 910
    }
}

.top-bar {
    background: #000;
    height: 60px;
    width: 100%;
    position: relative
}

@media screen and (min-width: 980px) {
    .top-bar {
        height: 80px
    }
}

body.home-page-v2 .top-bar,
.home-page-v2.grid-debugger .top-bar {
    z-index: 10
}

.top-bar__skip-nav {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700
}

@media only print {
    .top-bar__skip-nav {
        display: none
    }
}

@media screen and (min-width: 980px) {
    .top-bar__skip-nav:focus {
        font-family: "Arial", sans-serif;
        font-size: 12px;
        line-height: 18px;
        font-weight: 400;
        clip: auto;
        color: #fff;
        height: auto;
        left: 80px;
        top: 15px;
        width: auto;
        z-index: 9999
    }
}

@media screen and (min-width: 980px) {
    .top-bar__inner {
        width: 80.61224%;
        height: 100%;
        margin: auto;
        position: relative
    }
}

@media screen and (min-width: 1440px) {
    .top-bar__inner {
        width: 81.25%;
        max-width: 1170px
    }
}

.top-bar__back-button {
    position: absolute;
    left: 3.28%;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #fff;
    transition: opacity 0.2s linear, visibility 0.2s linear;
    opacity: 0;
    visibility: hidden
}

@media screen and (min-width: 768px) {
    .top-bar__back-button {
        left: 4.43%
    }
}

@media screen and (min-width: 980px) {
    .top-bar__back-button {
        display: none
    }
}

.top-bar__back-button:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    vertical-align: bottom;
    margin-right: 5px
}

.top-bar__back-button--visible {
    opacity: 1;
    visibility: visible
}

.top-bar__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 32px;
    height: 32px
}

@media screen and (min-width: 980px) {
    .top-bar__logo {
        left: 0;
        top: 0;
        transform: none;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: end;
        align-items: flex-end;
        width: auto;
        height: 100%;
        cursor: pointer;
        z-index: 999;
        padding: 20px 0
    }

    .top-bar__logo--with-text:after {
        content: "";
        font-family: nafta-icons;
        font-weight: normal;
        font-size: 100%;
        color: #fff;
        line-height: 20px;
        padding: 0 20px 0 40px;
        border-right: 1px solid #fff
    }

    .top-bar__logo--static-menu {
        cursor: default
    }

    .top-bar__logo--static-menu:after {
        border-right: none
    }
}

.top-bar__logo-img {
    width: 100%;
    height: 100%
}

.top-bar__inner>.top-bar__logo-img {
    height: 32px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 32px
}

@media screen and (min-width: 980px) {
    .top-bar__inner>.top-bar__logo-img {
        -ms-flex-align: end;
        align-items: flex-end;
        display: -ms-flexbox;
        display: flex;
        height: 100%;
        left: 0;
        padding: 20px 0;
        top: 0;
        transform: none;
        width: auto;
        z-index: 999
    }
}

@media screen and (min-width: 980px) {
    .top-bar__logo-img {
        width: 40px;
        height: 40px
    }
}

.top-bar__hamburger-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translate3d(0, -50%, 0);
    width: 25px;
    height: 20px
}

@media screen and (min-width: 768px) {
    .top-bar__hamburger-button {
        right: 30px
    }
}

@media screen and (min-width: 980px) {
    .top-bar__hamburger-button {
        display: none
    }
}

.top-bar__hamburger-button-line-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
    transform-origin: center
}

body[data-global-header-state="open"] .top-bar__hamburger-button-line-wrapper--top,
[data-global-header-state="open"].grid-debugger .top-bar__hamburger-button-line-wrapper--top {
    top: 9px;
    transform: rotate(225deg)
}

.top-bar__hamburger-button-line-wrapper--middle {
    top: 9px;
    transition-duration: 0.2s
}

body[data-global-header-state="open"] .top-bar__hamburger-button-line-wrapper--middle,
[data-global-header-state="open"].grid-debugger .top-bar__hamburger-button-line-wrapper--middle {
    opacity: 0
}

.top-bar__hamburger-button-line-wrapper--bottom {
    top: 17px
}

body[data-global-header-state="open"] .top-bar__hamburger-button-line-wrapper--bottom,
[data-global-header-state="open"].grid-debugger .top-bar__hamburger-button-line-wrapper--bottom {
    top: 9px;
    transform: rotate(-225deg)
}

.global-header__menu-l1 {
    background-color: #f1f1f1;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 998
}

.global-header__menu-l1--closed {
    visibility: hidden;
    display: none
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1--closed {
        visibility: visible;
        display: block
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l1 {
        position: fixed
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1 {
        height: auto;
        top: 0;
        background-color: transparent;
        overflow: visible;
        visibility: visible;
        transition: none;
        position: absolute
    }

    body.home-page-v2 .global-header__menu-l1,
    .home-page-v2.grid-debugger .global-header__menu-l1 {
        pointer-events: none;
        z-index: 10
    }
}

body[data-global-header-state="open"] .global-header__menu-l1,
[data-global-header-state="open"].grid-debugger .global-header__menu-l1 {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: calc(100vh - 60px);
    visibility: visible
}

body[data-global-header-state="open"] .global-header__menu-l1--no-scroll,
[data-global-header-state="open"].grid-debugger .global-header__menu-l1--no-scroll {
    overflow: hidden
}

.global-header__menu-l1__inner {
    overflow: auto;
    visibility: visible
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1__inner {
        height: 100%;
        overflow: visible;
        margin: auto;
        width: 80.61224%;
        padding-left: 70px
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l1__inner {
        width: 81.25%;
        max-width: 1170px
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1__inner--with-text {
        padding-left: 225px
    }
}

.global-header__menu-l1__inner[aria-hidden="true"] {
    height: auto;
    overflow: visible;
    visibility: hidden
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1__inner[aria-hidden="true"] {
        overflow: visible;
        visibility: visible
    }
}

.global-header__menu-l1__inner--hidden {
    display: none
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1__inner--hidden {
        display: block
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list {
        display: inline-block
    }

    body.home-page-v2 .global-header__menu-l1-list,
    .home-page-v2.grid-debugger .global-header__menu-l1-list {
        pointer-events: auto
    }
}

.global-header__menu-l1-list-item {
    background-color: #fff;
    transition: background-color 0.3s ease
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list-item {
        background-color: transparent;
        display: inline-block;
        border-bottom: 0;
        height: 100%
    }
}

.global-header__menu-l1-list-item--open {
    background-color: #f1f1f1
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list-item--open {
        background-color: transparent
    }
}

.global-header__menu-l1-list-button {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    text-align: left;
    padding: 30px 15px 25px;
    width: 100%;
    border-bottom: 1px solid #c6c6c6;
    position: relative;
    transition: color 0.2s ease
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list-button:hover {
        color: #2e7cbe
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l1-list-button {
        padding: 30px 35px
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list-button {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        color: #fff;
        padding: 40px 20px 20px;
        height: 100%;
        min-height: 80px;
        max-height: 80px;
        border-bottom: 3px solid transparent;
        transition: color 0.2s ease, border-color 0.2s ease;
        cursor: pointer
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l1-list-button {
        padding: 40px 30px 20px
    }
}

.global-header__menu-l1-list-item--open .global-header__menu-l1-list-button {
    color: #2e7cbe
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list-item--open .global-header__menu-l1-list-button {
        border-bottom: 3px solid #2e7cbe
    }
}

.global-header__menu-l1-list-button:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s linear
}

@media screen and (min-width: 768px) {
    .global-header__menu-l1-list-button:after {
        right: 35px
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list-button:after {
        display: none;
        transform: none
    }
}

.global-header__menu-l1-list-item--open .global-header__menu-l1-list-button:after {
    transform: rotate(180deg) translateY(50%)
}

.global-header__menu-l1-list-button--icon-pin,
.global-header__menu-l1-list-button--icon-profile {
    vertical-align: middle
}

.global-header__menu-l1-list-button--icon-pin {
    text-transform: none;
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400
}

.global-header__menu-l1-list-button--icon-pin:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 25px;
    margin-right: 5px;
    line-height: 1;
    vertical-align: middle
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list-button--icon-pin {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.global-header__menu-l1-list-button--icon-profile {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list-button--icon-profile {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        text-transform: none
    }

    .global-header__menu-l1-list-button--icon-profile:before {
        content: "";
        font-family: nafta-icons;
        font-weight: normal;
        font-size: 100%;
        font-size: 33px;
        margin-right: 5px;
        line-height: 1;
        vertical-align: middle
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list-button-utility-inner {
        max-width: 13vw;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

.global-header__menu-l1-list--secondary {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list--secondary {
        -ms-flex-direction: row;
        flex-direction: row;
        float: right;
        display: -ms-inline-flexbox;
        display: inline-flex
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list--secondary .global-header__menu-l1-list-button {
        padding: 30px 15px 10px
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l1-list--secondary .global-header__menu-l1-list-button {
        padding: 30px 20px 10px
    }
}

.global-header__menu-l1-list-button {
    visibility: visible
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list--secondary .global-header__menu-l1-list-item--open .global-header__menu-l1-list-button {
        color: #fff;
        border-color: transparent
    }
}

@media screen and (min-width: 980px) {

    .global-header__menu-l1-list--secondary .global-header__menu-l1-list-item--open .global-header__menu-l1-list-button.global-header__menu-l1-list-button--icon-pin:before,
    .global-header__menu-l1-list--secondary .global-header__menu-l1-list-item--open .global-header__menu-l1-list-button.global-header__menu-l1-list-button--icon-profile:before {
        color: #2e7cbe
    }
}

.global-header__menu-l1-list--secondary .global-header__menu-l1-list-item:last-of-type .global-header__menu-l1-list-button {
    padding-right: 0
}

.global-header__menu-l2 {
    background-color: #fff;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: height 0.4s ease-in-out, visibility 0.4s ease-in-out
}

@media screen and (min-width: 980px) {
    .global-header__menu-l2 {
        display: none
    }
}

.global-header__menu-l1-list-item--open .global-header__menu-l2 {
    visibility: visible
}

.global-header__menu-l2--dealer {
    background-color: #f1f1f1
}

.global-header__menu-l2-list-item {
    background-color: #fff
}

.global-header__menu-l2-list-item--button {
    display: none
}

@media screen and (min-width: 768px) {
    .global-header__menu-l2-list-item--button {
        display: block
    }
}

.global-header__menu-l2-list-item--tile {
    position: relative
}

@media screen and (min-width: 768px) {
    .global-header__menu-l2-list-item--tile {
        position: static;
        display: none
    }
}

.global-header__menu-l2-list-item--tile .nav-recently-viewed-vehicle__vehicle-name,
.global-header__menu-l2-list-item--tile .nav-recently-viewed-vehicle__msrp {
    color: #000
}

.global-header__menu-l2-list-link,
.global-header__menu-l2-list-button {
    color: #000;
    display: block;
    text-align: left;
    padding: 25px 30px 20px;
    width: 100%;
    border-bottom: 1px solid #c6c6c6;
    position: relative
}

@media screen and (min-width: 768px) {

    .global-header__menu-l2-list-link,
    .global-header__menu-l2-list-button {
        padding: 25px 55px
    }
}

.global-header__menu-l2-list-link:hover,
.global-header__menu-l2-list-button:hover {
    color: #176db7;
    transition: color 0.2s linear
}

.global-header__menu-l2-list-link--hidden,
.global-header__menu-l2-list-button--hidden {
    display: none
}

.global-header__menu-l2-list-link {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    display: block
}

.global-header__menu-l2-list-button {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700
}

.global-header__menu-l2-list-button:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    color: #176db7;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)
}

@media screen and (min-width: 768px) {
    .global-header__menu-l2-list-button:after {
        right: 35px
    }
}

.global-header__menu-l3 {
    position: fixed;
    width: 100vw;
    height: calc(100vh - 60px);
    background: #fff;
    top: 60px;
    right: -100vw;
    z-index: 10001;
    overflow: hidden;
    transform: translateX(0);
    transition: transform 0.2s ease-in-out
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3 {
        position: absolute;
        height: 0;
        width: 96%;
        max-height: calc(100vh - 160px);
        border: 1px solid #999;
        border-top: none;
        top: 80px;
        right: 50%;
        overflow: hidden;
        visibility: hidden;
        transform: translateX(50%);
        transition: height 0.2s ease-in-out, visibility 0.2s ease-in-out
    }

    body.home-page-v2 .global-header__menu-l3,
    .home-page-v2.grid-debugger .global-header__menu-l3 {
        pointer-events: auto
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3 {
        max-width: 1380px
    }
}

.global-header__menu-l3--open {
    transform: translateX(-100vw);
    overflow-x: hidden
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3--open {
        position: absolute;
        transform: translateX(50%);
        visibility: visible
    }
}

.global-header__menu-l3--no-transition {
    transition: none
}

.global-header__menu-l3-content {
    visibility: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 0
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-content {
        overflow: hidden;
        position: absolute;
        top: 0
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-content {
        visibility: hidden;
        max-width: none;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 10;
        transform: translateX(-50%);
        transition: visibility 0.2s ease-in-out;
        background-color: #fff
    }
}

.global-header__menu-l3-content--open {
    visibility: visible;
    height: 100%
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-content--open {
        overflow: visible
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-content--open {
        height: auto
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-content--active {
        visibility: visible;
        z-index: 20
    }
}

.global-header__menu-l3__container-background {
    visibility: hidden;
    padding: 0
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-content--open .global-header__menu-l3__container-background {
        visibility: visible;
        padding: 35px 0
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3__container-background {
        padding: 65px 0 75px
    }
}

.global-header__menu-l3__container-background--active {
    visibility: visible;
    padding: 35px 0
}

.global-header__menu-l3__container-background--alt {
    background-color: #000;
    color: #fff;
    min-height: 100%
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3__container-background--alt {
        height: auto
    }
}

.global-header__menu-l3__container-spacing {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 93.4375%
}

.global-header__menu-l3__container-spacing::after {
    clear: both;
    content: '';
    display: block
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3__container-spacing {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        width: 91.14583%;
        margin: 0 auto
    }

    .global-header__menu-l3__container-spacing::after {
        clear: both;
        content: '';
        display: block
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3__container-spacing {
        width: 84.04255%;
        max-width: none
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3__container-spacing {
        width: 84.78261%;
        max-width: 1170px
    }
}

.global-header__menu-l3-headline {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 20px
}

body[data-theme="amg"] .global-header__menu-l3-headline,
[data-theme="amg"].grid-debugger .global-header__menu-l3-headline,
body[data-theme="theme-page"] .global-header__menu-l3-headline,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3-headline {
    color: #000
}

.amg-component .global-header__menu-l3-headline,
.theme-page-component .global-header__menu-l3-headline {
    color: #000
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-headline {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 30px;
        font-weight: 400;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 23.23176%
    }
}

@media screen and (min-width: 980px) and (min-width: 980px) {
    .global-header__menu-l3-headline {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-headline:last-child {
        margin-right: 0
    }
}

.global-header__menu-l3-tabs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 40px;
    transition: transform .3s ease-in-out
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-tabs {
        border-bottom: 1px solid #999;
        -ms-flex-align: baseline;
        align-items: baseline;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-left: 25.58941%
    }
}

.global-header__menu-l3-tab {
    padding-right: 35px;
    border-bottom: 1px solid #999
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-tab {
        border-bottom: none;
        padding-right: 15px
    }
}

.global-header__menu-l3-tab:last-child {
    padding-right: 0
}

.global-header__menu-l3-tab-button {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    position: relative
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-tab-button {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        vertical-align: bottom;
        white-space: normal;
        cursor: pointer
    }
}

.global-header__menu-l3-tab-button--active {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #176db7;
    border-color: #176db7
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-tab-button--active {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.global-header__menu-l3-tab-button:hover {
    color: #176db7
}

.global-header__menu-l3-panel-item {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.global-header__menu-l3-panel-item::after {
    clear: both;
    content: '';
    display: block
}

.global-header__menu-l3-panel-item--active {
    display: block
}

.global-header__menu-l3-panel-item-links-wrapper {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 46.28851%;
    height: 100%
}

.global-header__menu-l3-panel-item-links-wrapper:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item-links-wrapper {
        float: left;
        display: block;
        margin-right: 5.85151%;
        width: 57.6594%
    }

    .global-header__menu-l3-panel-item-links-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item-links-wrapper {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 73.14426%
    }

    .global-header__menu-l3-panel-item-links-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item-links-wrapper {
        float: left;
        display: block;
        margin-right: 10.1484%;
        width: 63.28387%
    }

    .global-header__menu-l3-panel-item-links-wrapper:last-child {
        margin-right: 0
    }
}

.global-header__menu-l3-panel-item-image-wrapper {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 46.28851%;
    height: 100%
}

.global-header__menu-l3-panel-item-image-wrapper:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item-image-wrapper {
        float: left;
        display: block;
        margin-right: 5.85151%;
        width: 36.4891%
    }

    .global-header__menu-l3-panel-item-image-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item-image-wrapper {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 19.43277%
    }

    .global-header__menu-l3-panel-item-image-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item-image-wrapper {
        float: left;
        display: block;
        margin-right: 10.1484%;
        width: 26.56773%
    }

    .global-header__menu-l3-panel-item-image-wrapper:last-child {
        margin-right: 0
    }
}

.global-header__menu-l3-panel-item-image-wrapper picture {
    display: block;
    width: 108%;
    height: 100%;
    overflow: hidden
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item-image-wrapper picture {
        width: 100%
    }
}

.global-header__menu-l3-subnav-list-item {
    margin-bottom: 20px;
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400
}

.global-header__menu-l3-subnav-list-item:last-child {
    margin-bottom: 0
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-content--vehicles.global-header__menu-l3-content--open {
        overflow: visible
    }
}

.global-header__vehicles-link-list {
    display: none
}

@media screen and (min-width: 980px) {
    .global-header__vehicles-link-list {
        display: block;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 23.23176%
    }

    .global-header__vehicles-link-list:last-child {
        margin-right: 0
    }
}

.global-header__vehicles-link-list-item {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 15px
}

.global-header__vehicles-link-list-item-link {
    color: #000;
    transition: color 0.2s linear
}

.global-header__vehicles-link-list-item-link:hover {
    color: #176db7
}

@media screen and (min-width: 768px) {
    .global-header__grid {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto
    }

    .global-header__grid::after {
        clear: both;
        content: '';
        display: block
    }
}

@media screen and (min-width: 980px) {
    .global-header__grid {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 74.41059%;
        margin-right: 0
    }

    .global-header__grid:last-child {
        margin-right: 0
    }
}

.global-header__item {
    position: relative;
    margin-bottom: 40px
}

.global-header__item--future-vehicle {
    margin-bottom: 40px
}

@media screen and (min-width: 768px) {
    .global-header__item {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%
    }

    .global-header__item:last-child {
        margin-right: 0
    }

    .global-header__item:nth-child(2n) {
        margin-right: 0
    }

    .global-header__item:nth-child(2n+1) {
        clear: left
    }
}

@media screen and (min-width: 980px) {
    .global-header__item {
        float: left;
        display: block;
        margin-right: 3.16844%;
        width: 31.22104%;
        margin-bottom: 20px
    }

    .global-header__item:last-child {
        margin-right: 0
    }

    .global-header__item:nth-child(2n) {
        margin-right: 3.16844%
    }

    .global-header__item:nth-child(2n+1) {
        clear: none
    }

    .global-header__item:nth-child(3n) {
        margin-right: 0
    }

    .global-header__item:nth-child(3n+1) {
        clear: left
    }

    .global-header__item:nth-child(-n+3) .toggle-drawer--global-nav {
        top: 95%;
        margin-bottom: 20px
    }

    .global-header__item:nth-child(n+4) .toggle-drawer--global-nav {
        bottom: 49px
    }
}

@media screen and (min-width: 768px) {
    .global-header__item:nth-last-child(-n+2) {
        margin-bottom: 0
    }
}

@media screen and (min-width: 980px) {
    .global-header__item:nth-last-child(-n+2) {
        margin-bottom: 40px
    }
}

@media screen and (min-width: 980px) {
    .global-header__item:nth-last-child(-n+3) {
        margin-bottom: 0
    }
}

.global-header__item-link {
    display: block;
    padding-bottom: 20px
}

@media screen and (min-width: 980px) {
    .global-header__item-link--vehicle-details {
        padding-bottom: 5px
    }
}

.global-header__item-vehicle-picture {
    padding-bottom: 53%;
    margin-bottom: 20px;
    position: relative
}

.global-header__item-vehicle-image {
    width: 100%;
}

.global-header__item-vehicle-name {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: -5px
}

@media screen and (min-width: 980px),
only print {
    .global-header__item-vehicle-name {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

@media screen and (min-width: 980px) {
    .global-header__item-vehicle-name {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        margin-bottom: 0;
        transition: color 0.2s linear
    }

    .global-header__item-link:hover .global-header__item-vehicle-name {
        color: #2e7cbe
    }
}

.global-header__item--future-vehicle .global-header__item-vehicle-name {
    margin-bottom: 0
}

.global-header__item-vehicle-details {
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none
}

.global-header__item-vehicle-details .disclaimer__marker {
    pointer-events: auto
}

@media screen and (min-width: 980px) {
    .global-header__item-vehicle-details {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none
    }
}

.global-header__item-vehicle-msrp {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #717171;
    text-align: center;
    margin: 5px 0 15px
}

@media screen and (min-width: 980px) {
    .global-header__item-vehicle-msrp {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        margin-bottom: 5px
    }
}

.global-header__item-models-cta {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    top: calc(20px * -1);
    color: #176db7;
    cursor: pointer;
    margin: 0 auto;
    pointer-events: auto;
    transition: bottom 0.5s
}

@media screen and (min-width: 980px) {
    .global-header__item-models-cta {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.global-header__item-models-cta:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    margin: auto 0 auto 10px;
    font-size: 11px;
    transition: transform 0.1s;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.global-header__item-models-cta[aria-expanded="true"]:after {
    transform: rotate(180deg)
}

.global-header__item-models-cta:hover {
    color: #2e7cbe
}

.global-header__item-models-list {
    background-color: #fff;
    z-index: 10002
}

@media screen and (min-width: 980px) {
    .global-header__item-models-list {
        padding: 0 15px
    }
}

.global-header__item-models-list-item {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.global-header__item-models-list-item::after {
    clear: both;
    content: '';
    display: block
}

@media screen and (min-width: 980px) {
    .global-header__item-models-list-item {
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.global-header__item-models-list-item:not(:last-child):before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 20px;
    width: calc(100% - 40px);
    height: 1px;
    background-color: #e3e3e3
}

@media screen and (min-width: 980px) {
    .global-header__item-models-list-item:not(:last-child):before {
        left: 0;
        width: 100%
    }
}

.global-header__item-models-list-item-cta--model.link,
.global-header__item-models-list-item-cta--build.link {
    color: #176db7;
    cursor: pointer
}

body[data-theme="amg"] .global-header__item-models-list-item-cta--model.link,
[data-theme="amg"].grid-debugger .global-header__item-models-list-item-cta--model.link,
body[data-theme="amg"] .global-header__item-models-list-item-cta--build.link,
[data-theme="amg"].grid-debugger .global-header__item-models-list-item-cta--build.link {
    color: #176db7
}

.amg-component .global-header__item-models-list-item-cta--model.link,
.amg-component .global-header__item-models-list-item-cta--build.link {
    color: #176db7
}

.global-header__item-models-list-item-cta--model {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 73.14426%;
    float: none;
    padding: 20px 20px 15px;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.global-header__item-models-list-item-cta--model:last-child {
    margin-right: 0
}

.global-header__item-models-list-item-cta--model:last-child {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
    float: none
}

.global-header__item-models-list-item-cta--model:last-child:last-child {
    margin-right: 0
}

@media screen and (min-width: 980px) {
    .global-header__item-models-list-item-cta--model {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        padding: 15px 0;
        margin-right: 0
    }
}

.global-header__item-models-list-item-cta--build {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding: 20px 20px 15px 20px;
    text-align: right;
    position: relative
}

@media screen and (min-width: 980px) {
    .global-header__item-models-list-item-cta--build {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        padding: 15px 0 15px 15px
    }
}

.global-header__item-models-list-item-cta--build:before {
    content: '';
    height: calc(100% - 40px);
    border-left: solid 1px #e3e3e3;
    position: absolute;
    top: 20px;
    left: 0
}

@media screen and (min-width: 980px) {
    .global-header__item-models-list-item-cta--build:before {
        height: calc(100% - 30px);
        top: 15px
    }
}

.toggle-drawer--global-nav {
    border: 0px solid transparent;
    transition: max-height 0.3s, padding-bottom 0.3s, border 0.3s
}

@media screen and (min-width: 980px) {
    .toggle-drawer--global-nav {
        position: absolute;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 10002
    }
}

.toggle-drawer--global-nav[aria-hidden="true"] {
    visibility: hidden
}

.toggle-drawer--global-nav[aria-hidden="false"] {
    border: 1px solid #e3e3e3;
    margin-bottom: 40px
}

@media screen and (min-width: 980px) {
    .toggle-drawer--global-nav[aria-hidden="false"] {
        margin-bottom: 0
    }
}

@media screen and (min-width: 980px) {
    .toggle-drawer--scroll {
        overflow-y: auto;
        scrollbar-width: none
    }

    .toggle-drawer--scroll::-webkit-scrollbar {
        display: none
    }
}

@media screen and (min-width: 980px) {
    .primary-global-header__vehicles-link-list {
        margin-bottom: 25px
    }
}

@media screen and (min-width: 980px) {
    .secondary-global-header__vehicles-link-list {
        padding-top: 25px
    }

    .secondary-global-header__vehicles-link-list:before {
        border-bottom: 1px solid #000;
        content: '';
        display: block;
        width: 30px;
        position: relative;
        top: -25px
    }
}

.nav-profile {
    min-width: 100%;
    padding: 20px 30px;
    border-bottom: 1px solid #c6c6c6;
    display: inline-block
}

@media screen and (min-width: 768px) {
    .nav-profile {
        min-width: auto
    }
}

.nav-profile__container {
    display: none
}

.nav-profile__container--active {
    display: block
}

.nav-profile__heading {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 10px
}

@media screen and (min-width: 768px) {
    .nav-profile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        margin-bottom: 15px
    }
}

.nav-profile__description {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 15px
}

@media screen and (min-width: 768px) {
    .nav-profile__description {
        padding-top: 20px;
        position: relative
    }
}

@media screen and (min-width: 980px) {
    .nav-profile__description {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 100%
    }

    .nav-profile__description:last-child {
        margin-right: 0
    }
}

.nav-profile__description:before {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    border-bottom: 1px solid #fff
}

.nav-profile__links-list {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    margin-bottom: 20px;
    position: relative
}

.nav-profile__links-list:before {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    border-bottom: 1px solid #fff
}

.nav-profile__links-list:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 30px;
    border-bottom: 1px solid #fff
}

.nav-profile__links-list .nav-profile__link {
    margin-bottom: 20px
}

@media screen and (min-width: 980px) {
    .nav-profile__links-list .nav-profile__link {
        margin-bottom: 15px
    }
}

@media screen and (min-width: 980px) {
    .nav-profile__links-list .nav-profile__link:last-child {
        margin-bottom: 20px
    }
}

.nav-profile__buttons-wrapper {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
    display: -ms-flexbox;
    display: flex
}

.nav-profile__buttons-wrapper:last-child {
    margin-right: 0
}

.nav-profile__container--authenticated .nav-profile__buttons-wrapper {
    display: block
}

@media screen and (min-width: 768px) {
    .nav-profile__container--authenticated .nav-profile__buttons-wrapper {
        display: -ms-flexbox;
        display: flex
    }
}

.nav-profile__button-container {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 46.28851%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.nav-profile__button-container:last-child {
    margin-right: 0
}

@media screen and (min-width: 980px) {
    .nav-profile__button-container:nth-child(2n) {
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

.nav-profile__container--authenticated .nav-profile__button-container {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%
}

.nav-profile__container--authenticated .nav-profile__button-container:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .nav-profile__container--authenticated .nav-profile__button-container {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 46.28851%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }

    .nav-profile__container--authenticated .nav-profile__button-container:last-child {
        margin-right: 0
    }
}

.nav-profile__button {
    white-space: nowrap
}

body[data-theme="amg"] .nav-profile__button.button_primary,
[data-theme="amg"].grid-debugger .nav-profile__button.button_primary {
    background-color: #176db7
}

body[data-theme="amg"] .nav-profile__button.button_primary:hover,
[data-theme="amg"].grid-debugger .nav-profile__button.button_primary:hover,
body[data-theme="amg"] .nav-profile__button.button_primary:focus,
[data-theme="amg"].grid-debugger .nav-profile__button.button_primary:focus {
    background-color: #2e7cbe
}

.amg-component .nav-profile__button.button_primary {
    background-color: #176db7
}

.amg-component .nav-profile__button.button_primary:hover,
.amg-component .nav-profile__button.button_primary:focus {
    background-color: #2e7cbe
}

.nav-profile__link {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
    cursor: pointer
}

@media screen and (min-width: 768px) {
    .nav-profile__link {
        color: #fff
    }
}

.nav-profile__link:hover {
    color: #2e7cbe;
    transition: color 0.1s linear
}

.nav-profile__link:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 12px;
    color: #2e7cbe;
    margin-left: 5px
}

.nav-profile__logout {
    display: inline-block;
    margin-top: 20px
}

@media screen and (min-width: 768px) {
    .nav-profile__logout {
        margin-top: 0
    }
}

.global-header__menu-l3-panel-item .nav-profile {
    padding: 0;
    border-bottom: none
}

.global-header__menu-l3-panel-item--profile .nav-profile__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 20px
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item--profile .nav-profile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 30px;
        font-weight: 400
    }
}

@media screen and (min-width: 980px) and (min-width: 980px) {
    .global-header__menu-l3-panel-item--profile .nav-profile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.global-header__menu-l3-panel-item--profile .nav-profile__description {
    padding-top: 20px;
    position: relative
}

.global-header__menu-l3-panel-item--profile .nav-profile__link {
    color: #fff
}

.nav-promo-tile {
    width: 100%;
    padding: 10px 30px 10px;
    border-bottom: 1px solid #c6c6c6;
    display: inline-block
}

@media screen and (min-width: 768px) {
    .nav-promo-tile {
        padding: 25px 55px
    }
}

@media screen and (min-width: 980px) {
    .nav-promo-tile {
        padding: 0;
        border-bottom: none
    }
}

.nav-promo-tile__image-wrapper {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px
}

.nav-promo-tile__image-wrapper picture {
    position: relative;
    padding-bottom: 23%;
    width: 100%;
    height: 100%
}

.nav-promo-tile__image {
    position: absolute;
    width: 100%
}

.nav-promo-tile__heading {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 10px
}

body[data-theme="amg"] .nav-promo-tile__heading,
[data-theme="amg"].grid-debugger .nav-promo-tile__heading,
body[data-theme="theme-page"] .nav-promo-tile__heading,
[data-theme="theme-page"].grid-debugger .nav-promo-tile__heading {
    color: #000
}

.amg-component .nav-promo-tile__heading,
.theme-page-component .nav-promo-tile__heading {
    color: #000
}

@media screen and (min-width: 768px) {
    .nav-promo-tile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400
    }

    body[data-theme="amg"] .nav-promo-tile__heading,
    [data-theme="amg"].grid-debugger .nav-promo-tile__heading,
    body[data-theme="theme-page"] .nav-promo-tile__heading,
    [data-theme="theme-page"].grid-debugger .nav-promo-tile__heading {
        color: #fff
    }

    .amg-component .nav-promo-tile__heading,
    .theme-page-component .nav-promo-tile__heading {
        color: #fff
    }
}

.nav-promo-tile__subhead {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 15px
}

body[data-theme="amg"] .nav-promo-tile__subhead,
[data-theme="amg"].grid-debugger .nav-promo-tile__subhead,
body[data-theme="theme-page"] .nav-promo-tile__subhead,
[data-theme="theme-page"].grid-debugger .nav-promo-tile__subhead {
    color: #000
}

.amg-component .nav-promo-tile__subhead,
.theme-page-component .nav-promo-tile__subhead {
    color: #000
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .nav-promo-tile__subhead,
    [data-theme="amg"].grid-debugger .nav-promo-tile__subhead,
    body[data-theme="theme-page"] .nav-promo-tile__subhead,
    [data-theme="theme-page"].grid-debugger .nav-promo-tile__subhead {
        color: #fff
    }

    .amg-component .nav-promo-tile__subhead,
    .theme-page-component .nav-promo-tile__subhead {
        color: #fff
    }
}

.nav-promo-tile__buttons-wrapper {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.nav-promo-tile__buttons-wrapper:last-child {
    margin-right: 0
}

.nav-promo-tile__button-container {
    min-height: 30px;
    margin: 0 20px 10px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (min-width: 768px) {
    .nav-promo-tile__button-container {
        margin-right: 15px
    }
}

@media screen and (min-width: 980px) {
    .nav-promo-tile__button-container {
        margin-right: 20px
    }
}

@media screen and (min-width: 1440px) {
    .nav-promo-tile__button-container {
        margin-right: 25px
    }
}

.nav-promo-tile__button-container:last-child {
    margin-right: 0
}

@media screen and (min-width: 980px) {
    .nav-promo-tile__button-container:nth-child(2n) {
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

.nav-promo-tile__button {
    white-space: nowrap
}

body[data-theme="amg"] .nav-promo-tile__button.button_primary,
[data-theme="amg"].grid-debugger .nav-promo-tile__button.button_primary {
    background-color: #176db7
}

body[data-theme="amg"] .nav-promo-tile__button.button_primary:hover,
[data-theme="amg"].grid-debugger .nav-promo-tile__button.button_primary:hover,
body[data-theme="amg"] .nav-promo-tile__button.button_primary:focus,
[data-theme="amg"].grid-debugger .nav-promo-tile__button.button_primary:focus {
    background-color: #2e7cbe
}

.amg-component .nav-promo-tile__button.button_primary {
    background-color: #176db7
}

.amg-component .nav-promo-tile__button.button_primary:hover,
.amg-component .nav-promo-tile__button.button_primary:focus {
    background-color: #2e7cbe
}

.nav-promo-tile__link {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
    cursor: pointer
}

@media screen and (min-width: 768px) {
    .nav-promo-tile__link {
        color: #fff
    }
}

.nav-promo-tile__link:hover {
    color: #2e7cbe;
    transition: color 0.1s linear
}

.nav-promo-tile__link:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 12px;
    color: #2e7cbe;
    margin-left: 5px
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item .nav-promo-tile {
        padding: 0;
        border-bottom: none
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item .nav-promo-tile__link {
        color: #fff
    }
}

.nav-link-group {
    width: 100%;
    height: 100%;
    padding: 10px 30px 20px;
    border-bottom: 1px solid #c6c6c6;
    display: inline-block
}

.nav-link-group--secondary {
    height: auto
}

@media screen and (min-width: 768px) {
    .nav-link-group {
        border-bottom: none
    }
}

.nav-link-group__links-wrapper {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 46.28851%;
    height: 100%
}

.nav-link-group__links-wrapper:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .nav-link-group__links-wrapper {
        float: left;
        display: block;
        margin-right: 5.85151%;
        width: 57.6594%
    }

    .nav-link-group__links-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 980px) {
    .nav-link-group__links-wrapper {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 73.14426%
    }

    .nav-link-group__links-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .nav-link-group__links-wrapper {
        float: left;
        display: block;
        margin-right: 10.1484%;
        width: 63.28387%
    }

    .nav-link-group__links-wrapper:last-child {
        margin-right: 0
    }
}

.nav-link-group__image-wrapper {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 46.28851%;
    height: 100%
}

.nav-link-group__image-wrapper:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .nav-link-group__image-wrapper {
        float: left;
        display: block;
        margin-right: 5.85151%;
        width: 36.4891%
    }

    .nav-link-group__image-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 980px) {
    .nav-link-group__image-wrapper {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 19.43277%
    }

    .nav-link-group__image-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .nav-link-group__image-wrapper {
        float: left;
        display: block;
        margin-right: 10.1484%;
        width: 26.56773%
    }

    .nav-link-group__image-wrapper:last-child {
        margin-right: 0
    }
}

.nav-link-group--secondary .nav-link-group__image-wrapper {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    margin-left: 0;
    overflow: hidden
}

.nav-link-group__image-wrapper picture {
    display: block;
    width: 108%;
    height: 100%;
    overflow: hidden
}

@media screen and (min-width: 768px) {
    .nav-link-group__image-wrapper picture {
        width: 100%
    }
}

.nav-link-group--secondary .nav-link-group__image-wrapper picture {
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 23%
}

.nav-link-group__image {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%
}

.nav-link-group--secondary .nav-link-group__image {
    width: 100%;
    height: auto;
    position: absolute
}

.nav-link-group__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 20px
}

body[data-theme="amg"] .nav-link-group__heading,
[data-theme="amg"].grid-debugger .nav-link-group__heading,
body[data-theme="theme-page"] .nav-link-group__heading,
[data-theme="theme-page"].grid-debugger .nav-link-group__heading {
    color: #000
}

.amg-component .nav-link-group__heading,
.theme-page-component .nav-link-group__heading {
    color: #000
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .nav-link-group__heading,
    [data-theme="amg"].grid-debugger .nav-link-group__heading,
    body[data-theme="theme-page"] .nav-link-group__heading,
    [data-theme="theme-page"].grid-debugger .nav-link-group__heading {
        color: #000
    }

    .amg-component .nav-link-group__heading,
    .theme-page-component .nav-link-group__heading {
        color: #000
    }
}

@media screen and (min-width: 980px) {
    .nav-link-group__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 30px;
        font-weight: 400
    }
}

@media screen and (min-width: 980px) and (min-width: 980px) {
    .nav-link-group__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.nav-link-group--secondary .nav-link-group__heading {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 20px
}

@media screen and (min-width: 768px) {
    .nav-link-group--secondary .nav-link-group__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400
    }

    body[data-theme="amg"] .nav-link-group--secondary .nav-link-group__heading,
    [data-theme="amg"].grid-debugger .nav-link-group--secondary .nav-link-group__heading,
    body[data-theme="theme-page"] .nav-link-group--secondary .nav-link-group__heading,
    [data-theme="theme-page"].grid-debugger .nav-link-group--secondary .nav-link-group__heading {
        color: #fff
    }

    .amg-component .nav-link-group--secondary .nav-link-group__heading,
    .theme-page-component .nav-link-group--secondary .nav-link-group__heading {
        color: #fff
    }
}

@media screen and (min-width: 980px) {
    .nav-link-group--secondary .nav-link-group__heading {
        width: auto
    }
}

@media screen and (min-width: 768px) {
    .nav-link-group__links:before {
        content: '';
        position: absolute;
        width: 30px;
        border-bottom: 1px solid #393939
    }

    .nav-link-group--secondary .nav-link-group__links:before {
        border-color: #fff
    }
}

.nav-link-group__link {
    margin-bottom: 15px;
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400
}

@media screen and (min-width: 768px) {
    .nav-link-group__link {
        margin-bottom: 20px
    }
}

@media screen and (min-width: 980px) {
    .nav-link-group__link {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        margin-bottom: 15px
    }
}

.nav-link-group__link:first-child {
    padding-top: 0
}

@media screen and (min-width: 768px) {
    .nav-link-group__link:first-child {
        padding-top: 20px
    }
}

.nav-link-group__link:last-child {
    margin-bottom: 0
}

body[data-theme="amg"] .nav-link-group__link .link,
[data-theme="amg"].grid-debugger .nav-link-group__link .link,
body[data-theme="theme-page"] .nav-link-group__link .link,
[data-theme="theme-page"].grid-debugger .nav-link-group__link .link {
    color: #000
}

body[data-theme="amg"] .nav-link-group__link .link_in-text:hover,
[data-theme="amg"].grid-debugger .nav-link-group__link .link_in-text:hover,
body[data-theme="amg"] .nav-link-group__link .link_in-text:focus,
[data-theme="amg"].grid-debugger .nav-link-group__link .link_in-text:focus,
body[data-theme="theme-page"] .nav-link-group__link .link_in-text:hover,
[data-theme="theme-page"].grid-debugger .nav-link-group__link .link_in-text:hover,
body[data-theme="theme-page"] .nav-link-group__link .link_in-text:focus,
[data-theme="theme-page"].grid-debugger .nav-link-group__link .link_in-text:focus {
    color: #2e7cbe
}

.amg-component .nav-link-group__link .link,
.theme-page-component .nav-link-group__link .link {
    color: #000
}

.amg-component .nav-link-group__link .link_in-text:hover,
.amg-component .nav-link-group__link .link_in-text:focus,
.theme-page-component .nav-link-group__link .link_in-text:hover,
.theme-page-component .nav-link-group__link .link_in-text:focus {
    color: #2e7cbe
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .nav-link-group--secondary .nav-link-group__link .link,
    [data-theme="amg"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link,
    body[data-theme="theme-page"] .nav-link-group--secondary .nav-link-group__link .link,
    [data-theme="theme-page"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link {
        color: #fff
    }

    body[data-theme="amg"] .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    [data-theme="amg"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    body[data-theme="amg"] .nav-link-group--secondary .nav-link-group__link .link_in-text:focus,
    [data-theme="amg"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link_in-text:focus,
    body[data-theme="theme-page"] .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    [data-theme="theme-page"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    body[data-theme="theme-page"] .nav-link-group--secondary .nav-link-group__link .link_in-text:focus,
    [data-theme="theme-page"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link_in-text:focus {
        color: #2e7cbe
    }

    .amg-component .nav-link-group--secondary .nav-link-group__link .link,
    .theme-page-component .nav-link-group--secondary .nav-link-group__link .link {
        color: #fff
    }

    .amg-component .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    .amg-component .nav-link-group--secondary .nav-link-group__link .link_in-text:focus,
    .theme-page-component .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    .theme-page-component .nav-link-group--secondary .nav-link-group__link .link_in-text:focus {
        color: #2e7cbe
    }
}

.global-header__menu-l3-panel-item .nav-link-group {
    padding: 0;
    border-bottom: none
}

.global-header__menu-l3-panel-item .nav-link-group:not(.nav-link-group--secondary) .nav-link-group__image-wrapper {
    display: none;
    height: calc(100vh - 130px)
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item .nav-link-group:not(.nav-link-group--secondary) .nav-link-group__image-wrapper {
        display: -ms-flexbox;
        display: flex;
        height: 210px
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item .nav-link-group:not(.nav-link-group--secondary) .nav-link-group__image-wrapper {
        height: 190px
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item .nav-link-group:not(.nav-link-group--secondary) .nav-link-group__image-wrapper {
        height: 255px
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-content--container {
        width: 84.78261%;
        max-width: 1170px;
        margin: 0 auto
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-content--shopping {
        background: linear-gradient(90deg, #fff 65%, #000 35%)
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-headline--shopping {
        float: none;
        width: 100%
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3__container-background--shopping {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%
    }

    .global-header__menu-l3__container-background--shopping:last-child {
        margin-right: 0
    }
}

.global-header__menu-l3__container-background--alt--shopping {
    background-color: #fff;
    color: inherit
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3__container-background--alt--shopping {
        background-color: #000;
        color: #fff
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3__container-background--alt--shopping {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .global-header__menu-l3__container-background--alt--shopping:last-child {
        margin-right: 0
    }
}

.global-header__menu-l3__container-background--alt--shopping .nav-profile__link {
    color: #000
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3__container-background--alt--shopping .nav-profile__link {
        color: #fff
    }
}

.global-header__menu-l3__container-background--alt--shopping .nav-profile__description:before,
.global-header__menu-l3__container-background--alt--shopping .nav-profile__description:after,
.global-header__menu-l3__container-background--alt--shopping .nav-profile__links-list:before,
.global-header__menu-l3__container-background--alt--shopping .nav-profile__links-list:after {
    border-color: #393939
}

@media screen and (min-width: 768px) {

    .global-header__menu-l3__container-background--alt--shopping .nav-profile__description:before,
    .global-header__menu-l3__container-background--alt--shopping .nav-profile__description:after,
    .global-header__menu-l3__container-background--alt--shopping .nav-profile__links-list:before,
    .global-header__menu-l3__container-background--alt--shopping .nav-profile__links-list:after {
        border-color: #fff
    }
}

body[data-theme="amg"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link,
body[data-theme="amg"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text {
    color: #000
}

body[data-theme="amg"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:hover,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:hover,
body[data-theme="amg"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:focus,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:focus,
body[data-theme="amg"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
body[data-theme="amg"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:hover,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:hover,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:focus,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:focus,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus {
    color: #176db7
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-headline,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-headline,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-headline,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-headline {
        color: #fff
    }
}

body[data-theme="amg"] .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading {
    color: #000
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading {
        color: #fff
    }
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link,
    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text {
        color: #fff
    }

    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:hover,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:hover,
    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:focus,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:focus,
    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:hover,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:hover,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:focus,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:focus,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus {
        color: #176db7
    }
}

.amg-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link,
.amg-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text,
.theme-page-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link,
.theme-page-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text {
    color: #000
}

.amg-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:hover,
.amg-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:focus,
.amg-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
.amg-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus,
.theme-page-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:hover,
.theme-page-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link:focus,
.theme-page-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
.theme-page-component .global-header__menu-l3__container-background--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus {
    color: #176db7
}

@media screen and (min-width: 768px) {

    .amg-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-headline,
    .theme-page-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-headline {
        color: #fff
    }
}

.amg-component .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading,
.theme-page-component .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading {
    color: #000
}

@media screen and (min-width: 768px) {

    .amg-component .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading,
    .theme-page-component .global-header__menu-l3__container-background--alt--shopping .nav-profile__heading {
        color: #fff
    }
}

@media screen and (min-width: 768px) {

    .amg-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link,
    .amg-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text,
    .theme-page-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link,
    .theme-page-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text {
        color: #fff
    }

    .amg-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:hover,
    .amg-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:focus,
    .amg-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    .amg-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus,
    .theme-page-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:hover,
    .theme-page-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link:focus,
    .theme-page-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    .theme-page-component .global-header__menu-l3__container-background--alt--shopping .global-header__menu-l3-subnav-list-item .link_in-text:focus {
        color: #176db7
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-list--shopping {
        float: left;
        display: block;
        margin-right: 3.57866%;
        width: 100%
    }

    .global-header__menu-l3-panel-list--shopping:last-child {
        margin-right: 0
    }

    .global-header__menu-l3-panel-list--shopping--alt {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 100%
    }

    .global-header__menu-l3-panel-list--shopping--alt:last-child {
        margin-right: 0
    }
}

.global-header__menu-l3-panel-item--shopping {
    min-height: calc(100vh - 130px);
    margin-bottom: 0
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item--shopping {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 40.29137%;
        min-height: 210px;
        margin-bottom: 65px
    }

    .global-header__menu-l3-panel-item--shopping:last-child {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--shopping:nth-child(2n) {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--shopping:nth-child(2n+1) {
        clear: left
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item--shopping {
        margin-left: 8.5298%;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        min-height: 190px
    }

    .global-header__menu-l3-panel-item--shopping:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--shopping {
        margin-left: 0%;
        float: left;
        display: block;
        margin-right: 3.57866%;
        width: 35.26333%;
        min-height: 255px
    }

    .global-header__menu-l3-panel-item--shopping:last-child {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--shopping:nth-child(2n) {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--shopping:nth-child(2n+1) {
        clear: left
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item--shopping:nth-child(2n) {
        margin-left: 8.5298%
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item--shopping:nth-child(2n) {
        margin-left: 17.05961%
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--shopping:nth-child(2n) {
        margin-left: 12.94733%
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item--shopping:nth-last-child(-n+2) {
        margin-bottom: 10px
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item--shopping--profile {
        height: auto
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item--shopping--profile {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .global-header__menu-l3-panel-item--shopping--profile:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--shopping--alt {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 73.14426%;
        margin-left: 26.85574%;
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--shopping--alt:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--shopping--alt:nth-child(2n) {
        margin-left: 26.85574%
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--shopping--alt:nth-last-child(-n+2) {
        margin-bottom: 60px
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--shopping--alt:last-child {
        margin-bottom: 0
    }
}

.global-header__menu-l3-panel-item-links-wrapper--shopping .global-header__menu-l3-subnav:before {
    content: '';
    position: absolute;
    width: 30px;
    border-bottom: 1px solid #393939
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item-links-wrapper--shopping--alt {
        float: left;
        display: block;
        margin-right: 10.1484%;
        width: 63.28387%
    }

    .global-header__menu-l3-panel-item-links-wrapper--shopping--alt:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item-links-wrapper--shopping--alt .global-header__menu-l3-subnav:before {
        border-color: #fff
    }
}

.global-header__menu-l3-panel-item-image--shopping {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item-image-wrapper--shopping--alt {
        float: left;
        display: block;
        margin-right: 10.1484%;
        width: 26.56773%
    }

    .global-header__menu-l3-panel-item-image-wrapper--shopping--alt:last-child {
        margin-right: 0
    }
}

.global-header__menu-l3-panel-item--nav-promo-tile {
    height: auto
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-subnav-list-item--shopping {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        margin-bottom: 15px
    }
}

.global-header__menu-l3-subnav-list-item--shopping:first-child {
    padding-top: 20px
}

.nav-profile {
    min-width: 100%;
    padding: 20px 30px;
    border-bottom: 1px solid #c6c6c6;
    display: inline-block
}

@media screen and (min-width: 768px) {
    .nav-profile {
        min-width: auto
    }
}

.nav-profile__container {
    display: none
}

.nav-profile__container--active {
    display: block
}

.nav-profile__heading {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 10px
}

@media screen and (min-width: 768px) {
    .nav-profile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        margin-bottom: 15px
    }
}

.nav-profile__description {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 15px
}

@media screen and (min-width: 768px) {
    .nav-profile__description {
        padding-top: 20px;
        position: relative
    }
}

@media screen and (min-width: 980px) {
    .nav-profile__description {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 100%
    }

    .nav-profile__description:last-child {
        margin-right: 0
    }
}

.nav-profile__description:before {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    border-bottom: 1px solid #fff
}

.nav-profile__links-list {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    margin-bottom: 20px;
    position: relative
}

.nav-profile__links-list:before {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    border-bottom: 1px solid #fff
}

.nav-profile__links-list:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 30px;
    border-bottom: 1px solid #fff
}

.nav-profile__links-list .nav-profile__link {
    margin-bottom: 20px
}

@media screen and (min-width: 980px) {
    .nav-profile__links-list .nav-profile__link {
        margin-bottom: 15px
    }
}

@media screen and (min-width: 980px) {
    .nav-profile__links-list .nav-profile__link:last-child {
        margin-bottom: 20px
    }
}

.nav-profile__buttons-wrapper {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
    display: -ms-flexbox;
    display: flex
}

.nav-profile__buttons-wrapper:last-child {
    margin-right: 0
}

.nav-profile__container--authenticated .nav-profile__buttons-wrapper {
    display: block
}

@media screen and (min-width: 768px) {
    .nav-profile__container--authenticated .nav-profile__buttons-wrapper {
        display: -ms-flexbox;
        display: flex
    }
}

.nav-profile__button-container {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 46.28851%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.nav-profile__button-container:last-child {
    margin-right: 0
}

@media screen and (min-width: 980px) {
    .nav-profile__button-container:nth-child(2n) {
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

.nav-profile__container--authenticated .nav-profile__button-container {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%
}

.nav-profile__container--authenticated .nav-profile__button-container:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .nav-profile__container--authenticated .nav-profile__button-container {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 46.28851%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }

    .nav-profile__container--authenticated .nav-profile__button-container:last-child {
        margin-right: 0
    }
}

.nav-profile__button {
    white-space: nowrap
}

body[data-theme="amg"] .nav-profile__button.button_primary,
[data-theme="amg"].grid-debugger .nav-profile__button.button_primary {
    background-color: #176db7
}

body[data-theme="amg"] .nav-profile__button.button_primary:hover,
[data-theme="amg"].grid-debugger .nav-profile__button.button_primary:hover,
body[data-theme="amg"] .nav-profile__button.button_primary:focus,
[data-theme="amg"].grid-debugger .nav-profile__button.button_primary:focus {
    background-color: #2e7cbe
}

.amg-component .nav-profile__button.button_primary {
    background-color: #176db7
}

.amg-component .nav-profile__button.button_primary:hover,
.amg-component .nav-profile__button.button_primary:focus {
    background-color: #2e7cbe
}

.nav-profile__link {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
    cursor: pointer
}

@media screen and (min-width: 768px) {
    .nav-profile__link {
        color: #fff
    }
}

.nav-profile__link:hover {
    color: #2e7cbe;
    transition: color 0.1s linear
}

.nav-profile__link:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 12px;
    color: #2e7cbe;
    margin-left: 5px
}

.nav-profile__logout {
    display: inline-block;
    margin-top: 20px
}

@media screen and (min-width: 768px) {
    .nav-profile__logout {
        margin-top: 0
    }
}

.global-header__menu-l3-panel-item .nav-profile {
    padding: 0;
    border-bottom: none
}

.global-header__menu-l3-panel-item--profile .nav-profile__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 20px
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item--profile .nav-profile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 30px;
        font-weight: 400
    }
}

@media screen and (min-width: 980px) and (min-width: 980px) {
    .global-header__menu-l3-panel-item--profile .nav-profile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.global-header__menu-l3-panel-item--profile .nav-profile__description {
    padding-top: 20px;
    position: relative
}

.global-header__menu-l3-panel-item--profile .nav-profile__link {
    color: #fff
}

.nav-link-group {
    width: 100%;
    height: 100%;
    padding: 10px 30px 20px;
    border-bottom: 1px solid #c6c6c6;
    display: inline-block
}

.nav-link-group--secondary {
    height: auto
}

@media screen and (min-width: 768px) {
    .nav-link-group {
        border-bottom: none
    }
}

.nav-link-group__links-wrapper {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 46.28851%;
    height: 100%
}

.nav-link-group__links-wrapper:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .nav-link-group__links-wrapper {
        float: left;
        display: block;
        margin-right: 5.85151%;
        width: 57.6594%
    }

    .nav-link-group__links-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 980px) {
    .nav-link-group__links-wrapper {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 73.14426%
    }

    .nav-link-group__links-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .nav-link-group__links-wrapper {
        float: left;
        display: block;
        margin-right: 10.1484%;
        width: 63.28387%
    }

    .nav-link-group__links-wrapper:last-child {
        margin-right: 0
    }
}

.nav-link-group__image-wrapper {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 46.28851%;
    height: 100%
}

.nav-link-group__image-wrapper:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .nav-link-group__image-wrapper {
        float: left;
        display: block;
        margin-right: 5.85151%;
        width: 36.4891%
    }

    .nav-link-group__image-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 980px) {
    .nav-link-group__image-wrapper {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 19.43277%
    }

    .nav-link-group__image-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .nav-link-group__image-wrapper {
        float: left;
        display: block;
        margin-right: 10.1484%;
        width: 26.56773%
    }

    .nav-link-group__image-wrapper:last-child {
        margin-right: 0
    }
}

.nav-link-group--secondary .nav-link-group__image-wrapper {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    margin-left: 0;
    overflow: hidden
}

.nav-link-group__image-wrapper picture {
    display: block;
    width: 108%;
    height: 100%;
    overflow: hidden
}

@media screen and (min-width: 768px) {
    .nav-link-group__image-wrapper picture {
        width: 100%
    }
}

.nav-link-group--secondary .nav-link-group__image-wrapper picture {
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 23%
}

.nav-link-group__image {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%
}

.nav-link-group--secondary .nav-link-group__image {
    width: 100%;
    height: auto;
    position: absolute
}

.nav-link-group__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 20px
}

body[data-theme="amg"] .nav-link-group__heading,
[data-theme="amg"].grid-debugger .nav-link-group__heading,
body[data-theme="theme-page"] .nav-link-group__heading,
[data-theme="theme-page"].grid-debugger .nav-link-group__heading {
    color: #000
}

.amg-component .nav-link-group__heading,
.theme-page-component .nav-link-group__heading {
    color: #000
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .nav-link-group__heading,
    [data-theme="amg"].grid-debugger .nav-link-group__heading,
    body[data-theme="theme-page"] .nav-link-group__heading,
    [data-theme="theme-page"].grid-debugger .nav-link-group__heading {
        color: #000
    }

    .amg-component .nav-link-group__heading,
    .theme-page-component .nav-link-group__heading {
        color: #000
    }
}

@media screen and (min-width: 980px) {
    .nav-link-group__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 30px;
        font-weight: 400
    }
}

@media screen and (min-width: 980px) and (min-width: 980px) {
    .nav-link-group__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.nav-link-group--secondary .nav-link-group__heading {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 20px
}

@media screen and (min-width: 768px) {
    .nav-link-group--secondary .nav-link-group__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400
    }

    body[data-theme="amg"] .nav-link-group--secondary .nav-link-group__heading,
    [data-theme="amg"].grid-debugger .nav-link-group--secondary .nav-link-group__heading,
    body[data-theme="theme-page"] .nav-link-group--secondary .nav-link-group__heading,
    [data-theme="theme-page"].grid-debugger .nav-link-group--secondary .nav-link-group__heading {
        color: #fff
    }

    .amg-component .nav-link-group--secondary .nav-link-group__heading,
    .theme-page-component .nav-link-group--secondary .nav-link-group__heading {
        color: #fff
    }
}

@media screen and (min-width: 980px) {
    .nav-link-group--secondary .nav-link-group__heading {
        width: auto
    }
}

@media screen and (min-width: 768px) {
    .nav-link-group__links:before {
        content: '';
        position: absolute;
        width: 30px;
        border-bottom: 1px solid #393939
    }

    .nav-link-group--secondary .nav-link-group__links:before {
        border-color: #fff
    }
}

.nav-link-group__link {
    margin-bottom: 15px;
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400
}

@media screen and (min-width: 768px) {
    .nav-link-group__link {
        margin-bottom: 20px
    }
}

@media screen and (min-width: 980px) {
    .nav-link-group__link {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        margin-bottom: 15px
    }
}

.nav-link-group__link:first-child {
    padding-top: 0
}

@media screen and (min-width: 768px) {
    .nav-link-group__link:first-child {
        padding-top: 20px
    }
}

.nav-link-group__link:last-child {
    margin-bottom: 0
}

body[data-theme="amg"] .nav-link-group__link .link,
[data-theme="amg"].grid-debugger .nav-link-group__link .link,
body[data-theme="theme-page"] .nav-link-group__link .link,
[data-theme="theme-page"].grid-debugger .nav-link-group__link .link {
    color: #000
}

body[data-theme="amg"] .nav-link-group__link .link_in-text:hover,
[data-theme="amg"].grid-debugger .nav-link-group__link .link_in-text:hover,
body[data-theme="amg"] .nav-link-group__link .link_in-text:focus,
[data-theme="amg"].grid-debugger .nav-link-group__link .link_in-text:focus,
body[data-theme="theme-page"] .nav-link-group__link .link_in-text:hover,
[data-theme="theme-page"].grid-debugger .nav-link-group__link .link_in-text:hover,
body[data-theme="theme-page"] .nav-link-group__link .link_in-text:focus,
[data-theme="theme-page"].grid-debugger .nav-link-group__link .link_in-text:focus {
    color: #2e7cbe
}

.amg-component .nav-link-group__link .link,
.theme-page-component .nav-link-group__link .link {
    color: #000
}

.amg-component .nav-link-group__link .link_in-text:hover,
.amg-component .nav-link-group__link .link_in-text:focus,
.theme-page-component .nav-link-group__link .link_in-text:hover,
.theme-page-component .nav-link-group__link .link_in-text:focus {
    color: #2e7cbe
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .nav-link-group--secondary .nav-link-group__link .link,
    [data-theme="amg"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link,
    body[data-theme="theme-page"] .nav-link-group--secondary .nav-link-group__link .link,
    [data-theme="theme-page"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link {
        color: #fff
    }

    body[data-theme="amg"] .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    [data-theme="amg"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    body[data-theme="amg"] .nav-link-group--secondary .nav-link-group__link .link_in-text:focus,
    [data-theme="amg"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link_in-text:focus,
    body[data-theme="theme-page"] .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    [data-theme="theme-page"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    body[data-theme="theme-page"] .nav-link-group--secondary .nav-link-group__link .link_in-text:focus,
    [data-theme="theme-page"].grid-debugger .nav-link-group--secondary .nav-link-group__link .link_in-text:focus {
        color: #2e7cbe
    }

    .amg-component .nav-link-group--secondary .nav-link-group__link .link,
    .theme-page-component .nav-link-group--secondary .nav-link-group__link .link {
        color: #fff
    }

    .amg-component .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    .amg-component .nav-link-group--secondary .nav-link-group__link .link_in-text:focus,
    .theme-page-component .nav-link-group--secondary .nav-link-group__link .link_in-text:hover,
    .theme-page-component .nav-link-group--secondary .nav-link-group__link .link_in-text:focus {
        color: #2e7cbe
    }
}

.global-header__menu-l3-panel-item .nav-link-group {
    padding: 0;
    border-bottom: none
}

.global-header__menu-l3-panel-item .nav-link-group:not(.nav-link-group--secondary) .nav-link-group__image-wrapper {
    display: none;
    height: calc(100vh - 130px)
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item .nav-link-group:not(.nav-link-group--secondary) .nav-link-group__image-wrapper {
        display: -ms-flexbox;
        display: flex;
        height: 210px
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item .nav-link-group:not(.nav-link-group--secondary) .nav-link-group__image-wrapper {
        height: 190px
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item .nav-link-group:not(.nav-link-group--secondary) .nav-link-group__image-wrapper {
        height: 255px
    }
}

.mb-title-non-breaking {
    white-space: nowrap
}

.choose-a-dealer {
    border-top: 1px solid #999;
    position: relative
}

.choose-a-dealer__address-container-dealer {
    padding-top: 10px;
    padding-left: 35px
}

.choose-a-dealer__address-container-dealer::before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 25px;
    color: #176db7;
    position: absolute;
    width: 5px;
    margin-top: -5px;
    right: 0;
    left: 0
}

.choose-a-dealer__dealer-name {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700
}

@media only print {
    .choose-a-dealer__dealer-name {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.choose-a-dealer__address {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .choose-a-dealer__address {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.choose-a-dealer__phone-number {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #176db7
}

@media only print {
    .choose-a-dealer__phone-number {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.choose-a-dealer__icon {
    font-size: 6px
}

.choose-a-dealer__link {
    font-weight: bold
}

.choose-a-dealer__map {
    height: 145px;
    margin-top: 5px
}

.dealer-results__list {
    max-height: 195px;
    overflow-y: auto;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999
}

.dealer-results.error .dealer-results__list {
    border: 0
}

.dealer-results__sub-heading-copy {
    margin-bottom: 20px
}

.dealer-results__error-message {
    display: none;
    color: #eb0000
}

.dealer-results.error .dealer-results__error-message {
    display: block
}

.dealer-results__sub-heading {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 10px
}

.dealer-results__sub-heading-copy {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

.dealer-result-list-item {
    border-bottom: 1px dotted #e3e3e3;
    padding-bottom: 10px;
    position: relative;
    cursor: pointer;
    min-height: 65px
}

.dealer-result-list-item__suggested {
    padding-top: 15px
}

.dealer-result-list-item:last-of-type {
    border-bottom: none
}

.dealer-result-list-item__address-container {
    padding-top: 10px;
    padding-left: 35px
}

.dealer-result-list-item__address-container::before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 25px;
    position: absolute;
    width: 5px;
    margin-top: -5px;
    right: 0;
    left: 0
}

.dealer-result-list-item__dealer-name {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700
}

@media only print {
    .dealer-result-list-item__dealer-name {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.dealer-result-list-item__dealer-distance {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    float: right;
    margin-right: 0
}

@media only print {
    .dealer-result-list-item__dealer-distance {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.dealer-result-list-item__address {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .dealer-result-list-item__address {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.dealer-result-list-item__suggested-dealer {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #176db7;
    padding-top: 15px
}

@media only print {
    .dealer-result-list-item__suggested-dealer {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.dealer-result-list-item__suggested-dealer:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    margin-right: 5px
}

.dealer-result-list-item__error {
    color: #eb0000
}

.choose-a-dealer-plugin__sub-heading {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 10px
}

.choose-a-dealer-plugin__sub-heading-copy {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

.dealer-form::after {
    clear: both;
    content: '';
    display: block
}

.dealer-form__header {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #717171
}

@media screen and (min-width: 768px) {
    .dealer-form__header {
        padding-bottom: 20px;
        margin-bottom: 20px
    }
}

.dealer-form__header--input-heading {
    padding-top: 20px
}

@media screen and (min-width: 768px) {
    .dealer-form__header--input-heading {
        padding-top: 0
    }
}

.dealer-form__header--section-label {
    margin-bottom: 30px
}

@media screen and (min-width: 768px) {
    .dealer-form__header--section-label {
        margin-bottom: 40px
    }
}

.dealer-form__subheader {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding-top: 5px
}

@media screen and (min-width: 768px) {
    .dealer-form__input-group {
        display: -ms-flexbox;
        display: flex
    }
}

.dealer-form__input-container {
    display: block
}

@media screen and (min-width: 768px) {
    .dealer-form__input-container {
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        margin-right: 20px
    }
}

@media screen and (min-width: 768px) {
    .dealer-form__input-container:nth-child(2n) {
        margin-right: 0
    }
}

.dealer-form__input-container--select {
    margin-top: -4px
}

.dealer-form__radio-group {
    margin-bottom: 15px
}

@media screen and (min-width: 768px) {
    .dealer-form__radio-option {
        float: left;
        display: block;
        margin-right: 3.57866%;
        width: 22.316%
    }

    .dealer-form__radio-option:last-child {
        margin-right: 0
    }
}

.dealer-form__field-heading {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 15px
}

.dealer-form__personal-info {
    margin-bottom: 20px
}

.dealer-form__personal-info::after {
    clear: both;
    content: '';
    display: block
}

.dealer-form__contact-preference {
    margin-bottom: 20px
}

.dealer-form__contact-preference::after {
    clear: both;
    content: '';
    display: block
}

@media screen and (min-width: 768px) {
    .dealer-form__contact-preference {
        margin-bottom: 40px
    }
}

@media screen and (min-width: 768px) {
    .dealer-form__home-test-drive-address-container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        float: none
    }

    .dealer-form__home-test-drive-address-container:last-child {
        margin-right: 0
    }

    .dealer-form__home-test-drive-address-container:nth-child(2n) {
        margin-right: 0
    }

    .dealer-form__home-test-drive-address-container:nth-child(2n+1) {
        clear: left
    }
}

.dealer-form__home-test-drive-select {
    padding: 20px 0
}

.dealer-form__section-dealer {
    margin-bottom: 30px
}

.dealer-form__section-two {
    margin-bottom: 30px
}

.dealer-form__recaptcha {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px
}

@media screen and (min-width: 768px) {
    .dealer-form__recaptcha {
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

.dealer-form__footer {
    border-top: 1px solid #c6c6c6;
    padding-top: 30px
}

.dealer-form__footer::after {
    clear: both;
    content: '';
    display: block
}

@media screen and (min-width: 768px) {
    .dealer-form__footer {
        padding-top: 20px
    }
}

.dealer-form__footnote {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #717171;
    margin-bottom: 30px
}

@media only print {
    .dealer-form__footnote {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.dealer-form__submit-container {
    text-align: center
}

.dealer-form__error-message {
    margin-top: 20px
}

.dealer-form__error-message:empty {
    margin-top: 0
}

.dealer-form__error-message .form-error-message {
    width: 100%
}

.dealer-form__success-container {
    margin-bottom: 20px
}

.dealer-form__success-body {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    margin: 0 auto 15px;
    text-align: center
}

@media only print {
    .dealer-form__success-body {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .dealer-form__success-body {
        width: 70%
    }
}

.dealer-form__success-footnote {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .dealer-form__success-footnote {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.dealer-form-modal {
    padding: 20px 2.35765%
}

@media screen and (min-width: 768px) {
    .dealer-form-modal {
        padding: 40px 60px
    }
}

.recently-viewed-tile {
    border-bottom: 1px solid #c6c6c6;
    display: inline-block;
    min-height: 355px;
    padding: 25px 10px 35px;
    width: 100%
}

@media screen and (min-width: 768px) {
    .recently-viewed-tile {
        border-bottom: none;
        padding: 0 25px 30px
    }
}

@media screen and (min-width: 980px) {
    .recently-viewed-tile {
        min-height: 270px;
        padding: 0
    }
}

@media screen and (min-width: 1440px) {
    .recently-viewed-tile {
        min-height: 340px;
        padding: 20px 0 0
    }
}

@media screen and (max-width: 767px) {
    .recently-viewed-tile--cpo {
        padding-top: 30px
    }
}

.recently-viewed-tile__heading {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase
}

body[data-theme="amg"] .recently-viewed-tile__heading,
[data-theme="amg"].grid-debugger .recently-viewed-tile__heading,
body[data-theme="theme-page"] .recently-viewed-tile__heading,
[data-theme="theme-page"].grid-debugger .recently-viewed-tile__heading {
    color: #000
}

.amg-component .recently-viewed-tile__heading,
.theme-page-component .recently-viewed-tile__heading {
    color: #000
}

@media screen and (min-width: 768px) {
    .recently-viewed-tile__heading {
        margin-bottom: 10px
    }

    body[data-theme="amg"] .recently-viewed-tile__heading,
    [data-theme="amg"].grid-debugger .recently-viewed-tile__heading,
    body[data-theme="theme-page"] .recently-viewed-tile__heading,
    [data-theme="theme-page"].grid-debugger .recently-viewed-tile__heading {
        color: #fff
    }

    .amg-component .recently-viewed-tile__heading,
    .theme-page-component .recently-viewed-tile__heading {
        color: #fff
    }
}

@media screen and (min-width: 1440px) {
    .recently-viewed-tile__heading {
        margin-bottom: 5px
    }
}

.recently-viewed-tile--cpo .recently-viewed-tile__heading {
    margin-bottom: 10px
}

@media screen and (min-width: 1440px) {
    .recently-viewed-tile--cpo .recently-viewed-tile__heading {
        margin-bottom: 25px
    }
}

.recently-viewed-tile__available {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .recently-viewed-tile__available {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.recently-viewed-tile__tool-tip {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 15px
}

.recently-viewed-tile__tool-tip--text {
    padding-right: 5px
}

.recently-viewed-tile__tool-tip__description {
    color: #000
}

.recently-viewed-tile__tool-tip .tool-tip__icon {
    color: #2e7cbe;
    font-size: 18px
}

@media screen and (min-width: 1440px) {
    .recently-viewed-tile__tool-tip .tool-tip__icon {
        font-size: 14px;
        padding-top: 2px
    }
}

.tool-tip--active .recently-viewed-tile__tool-tip .tool-tip__icon,
.recently-viewed-tile__tool-tip .tool-tip__icon:hover,
.recently-viewed-tile__tool-tip .tool-tip__icon:focus {
    color: #176db7
}

.recently-viewed-tile__tool-tip .tool-tip__flyout {
    max-height: 85px;
    overflow: auto
}

@media screen and (min-width: 768px) {
    .recently-viewed-tile__tool-tip .tool-tip__flyout {
        max-height: 200px
    }
}

@media screen and (min-width: 1440px) {
    .recently-viewed-tile__tool-tip .tool-tip__flyout {
        max-height: 95px
    }
}

@media screen and (min-width: 1440px) {
    .recently-viewed-tile__tool-tip .tool-tip__flyout {
        max-height: 100px
    }
}

.recently-viewed-tile__image-wrapper--cpo {
    margin-bottom: 15px
}

.recently-viewed-tile__image-wrapper--vehicle {
    height: 0;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: calc(45% + 15px);
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 0
}

@media screen and (min-width: 768px) {
    .recently-viewed-tile__image-wrapper--vehicle {
        padding-bottom: calc(50% + 40px)
    }
}

@media screen and (min-width: 980px) {
    .recently-viewed-tile__image-wrapper--vehicle {
        padding-bottom: calc(30% + 15px);
        width: 80%
    }
}

@media screen and (min-width: 1440px) {
    .recently-viewed-tile__image-wrapper--vehicle {
        padding-bottom: calc(45% + 10px);
        width: 100%
    }
}

.recently-viewed-tile__image-container {
    position: relative;
    width: 100%
}

.recently-viewed-tile__image-wrapper--cpo .recently-viewed-tile__image-container {
    max-height: 165px;
    overflow: hidden;
    padding-top: 50%
}

.recently-viewed-tile__image-wrapper--cpo .recently-viewed-tile__image-item {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.recently-viewed-tile__image-wrapper--vehicle .recently-viewed-tile__vehicle-image .responsive-image {
    transform: scale3d(1.2, 1.2, 1) translate(-5px, -15px)
}

.recently-viewed-tile__image-wrapper--vehicle .recently-viewed-tile__vehicle-image .responsive-image:not(.fallback-image) {
    height: 100%;
    max-height: 580px;
    width: 100%;
    transform: scale3d(1.55, 1.55, 1) translate(0, 20px)
}

@media screen and (min-width: 768px) {
    .recently-viewed-tile__image-wrapper--vehicle .recently-viewed-tile__vehicle-image .responsive-image:not(.fallback-image) {
        transform: scale3d(1.8, 1.8, 1) translate(10px, 20px)
    }
}

@media screen and (min-width: 980px) {
    .recently-viewed-tile__image-wrapper--vehicle .recently-viewed-tile__vehicle-image .responsive-image:not(.fallback-image) {
        transform: scale3d(1.42, 1.42, 1) translate(0, 10px)
    }
}

@media screen and (min-width: 1440px) {
    .recently-viewed-tile__image-wrapper--vehicle .recently-viewed-tile__vehicle-image .responsive-image:not(.fallback-image) {
        transform: scale3d(1.56, 1.56, 1) translate(-5px, 15px)
    }
}

.recently-viewed-tile__background-container {
    display: block;
    height: 100%;
    position: absolute;
    top: 0
}

.recently-viewed-tile__image-wrapper--cpo .recently-viewed-tile__background-container {
    display: none
}

.recently-viewed-tile__image-wrapper--vehicle .recently-viewed-tile__background-container {
    float: left;
    height: calc(50px + 120%);
    width: 110%
}

@media screen and (min-width: 768px) {
    .recently-viewed-tile__image-wrapper--vehicle .recently-viewed-tile__background-container {
        height: 127%;
        width: 130%
    }
}

@media screen and (min-width: 980px) {
    .recently-viewed-tile__image-wrapper--vehicle .recently-viewed-tile__background-container {
        height: 123%;
        width: 100%
    }
}

.recently-viewed-tile__vehicle-info {
    margin-bottom: 15px
}

@media screen and (min-width: 1440px) {
    .recently-viewed-tile__vehicle-info {
        margin-bottom: 25px
    }
}

.recently-viewed-tile__vehicle-name {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-align: center
}

.recently-viewed-tile__msrp {
    margin-bottom: 15px
}

.recently-viewed-tile__msrp>* {
    text-align: center
}

.recently-viewed-tile__msrp--title {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: -5px
}

.recently-viewed-tile__msrp--pricing {
    font-family: "corpos", sans-serif;
    font-size: 26px;
    line-height: 32px;
    font-weight: 400
}

.recently-viewed-tile__msrp .tool-tip {
    padding-top: 3px
}

.recently-viewed-tile__cta-container {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    min-height: 30px
}

@media screen and (min-width: 768px) and (max-width: 979px) {
    .recently-viewed-tile__cta-container {
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.recently-viewed-tile__cta {
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    white-space: nowrap
}

@media screen and (min-width: 768px) and (max-width: 979px) {
    .recently-viewed-tile__cta {
        width: 90%
    }
}

.recently-viewed-tile__cta:first-child {
    margin-right: 10px
}

@media screen and (min-width: 768px) and (max-width: 979px) {
    .recently-viewed-tile__cta:first-child {
        margin: 0 0 15px
    }
}

.recently-viewed-tile__cta--details {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

body[data-theme="amg"] .recently-viewed-tile__cta.button_primary,
[data-theme="amg"].grid-debugger .recently-viewed-tile__cta.button_primary {
    background-color: #2e7cbe
}

body[data-theme="amg"] .recently-viewed-tile__cta.button_primary:hover,
[data-theme="amg"].grid-debugger .recently-viewed-tile__cta.button_primary:hover,
body[data-theme="amg"] .recently-viewed-tile__cta.button_primary:focus,
[data-theme="amg"].grid-debugger .recently-viewed-tile__cta.button_primary:focus {
    background-color: #176db7
}

.amg-component .recently-viewed-tile__cta.button_primary {
    background-color: #2e7cbe
}

.amg-component .recently-viewed-tile__cta.button_primary:hover,
.amg-component .recently-viewed-tile__cta.button_primary:focus {
    background-color: #176db7
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-content--container {
        width: 84.78261%;
        max-width: 1170px;
        margin: 0 auto
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-content--additional {
        background: linear-gradient(90deg, #fff 65%, #000 35%)
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-headline--additional {
        float: none;
        width: 100%
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3__container-background--additional {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%
    }

    .global-header__menu-l3__container-background--additional:last-child {
        margin-right: 0
    }
}

.global-header__menu-l3__container-background--alt--additional {
    background-color: #fff;
    color: inherit
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3__container-background--alt--additional {
        background-color: #000;
        color: #fff
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3__container-background--alt--additional {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .global-header__menu-l3__container-background--alt--additional:last-child {
        margin-right: 0
    }
}

body[data-theme="amg"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link,
body[data-theme="amg"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text {
    color: #000
}

body[data-theme="amg"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:hover,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:hover,
body[data-theme="amg"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:focus,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:focus,
body[data-theme="amg"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
body[data-theme="amg"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus,
[data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:hover,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:hover,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:focus,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:focus,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
body[data-theme="theme-page"] .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus,
[data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus {
    color: #176db7
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-headline,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-headline,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-headline,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-headline {
        color: #fff
    }
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link,
    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text {
        color: #fff
    }

    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:hover,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:hover,
    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:focus,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:focus,
    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    body[data-theme="amg"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus,
    [data-theme="amg"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:hover,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:hover,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:focus,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:focus,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    body[data-theme="theme-page"] .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus,
    [data-theme="theme-page"].grid-debugger .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus {
        color: #176db7
    }
}

.amg-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link,
.amg-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text,
.theme-page-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link,
.theme-page-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text {
    color: #000
}

.amg-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:hover,
.amg-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:focus,
.amg-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
.amg-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus,
.theme-page-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:hover,
.theme-page-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link:focus,
.theme-page-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
.theme-page-component .global-header__menu-l3__container-background--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus {
    color: #176db7
}

@media screen and (min-width: 768px) {

    .amg-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-headline,
    .theme-page-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-headline {
        color: #fff
    }
}

@media screen and (min-width: 768px) {

    .amg-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link,
    .amg-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text,
    .theme-page-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link,
    .theme-page-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text {
        color: #fff
    }

    .amg-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:hover,
    .amg-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:focus,
    .amg-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    .amg-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus,
    .theme-page-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:hover,
    .theme-page-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link:focus,
    .theme-page-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:hover,
    .theme-page-component .global-header__menu-l3__container-background--alt--additional .global-header__menu-l3-subnav-list-item .link_in-text:focus {
        color: #176db7
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-list--additional {
        float: left;
        display: block;
        margin-right: 3.57866%;
        width: 100%
    }

    .global-header__menu-l3-panel-list--additional:last-child {
        margin-right: 0
    }

    .global-header__menu-l3-panel-list--additional--alt {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 100%
    }

    .global-header__menu-l3-panel-list--additional--alt:last-child {
        margin-right: 0
    }
}

.global-header__menu-l3-panel-item--additional {
    height: calc(100vh - 130px);
    margin-bottom: 0
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item--additional {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 40.29137%;
        height: 210px;
        margin-bottom: 65px
    }

    .global-header__menu-l3-panel-item--additional:last-child {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--additional:nth-child(2n) {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--additional:nth-child(2n+1) {
        clear: left
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item--additional {
        margin-left: 8.5298%;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        height: 190px
    }

    .global-header__menu-l3-panel-item--additional:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--additional {
        margin-left: 0%;
        float: left;
        display: block;
        margin-right: 3.57866%;
        width: 35.26333%;
        height: 255px
    }

    .global-header__menu-l3-panel-item--additional:last-child {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--additional:nth-child(2n) {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--additional:nth-child(2n+1) {
        clear: left
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item--additional:nth-child(2n) {
        margin-left: 8.5298%
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item--additional:nth-child(2n) {
        margin-left: 17.05961%
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--additional:nth-child(2n) {
        margin-left: 12.94733%
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item--additional:nth-last-child(-n+2) {
        margin-bottom: 10px
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--additional--alt {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 73.14426%;
        margin-left: 26.85574%;
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--additional--alt:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--additional--alt:nth-child(2n) {
        margin-left: 26.85574%
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--additional--alt:nth-last-child(-n+2) {
        margin-bottom: 60px
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item--additional--alt:last-child {
        margin-bottom: 0
    }
}

.global-header__menu-l3-panel-item-links-wrapper--additional .global-header__menu-l3-subnav:before {
    content: '';
    position: absolute;
    width: 30px;
    border-bottom: 1px solid #393939
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item-links-wrapper--additional--alt {
        float: left;
        display: block;
        margin-right: 10.1484%;
        width: 63.28387%
    }

    .global-header__menu-l3-panel-item-links-wrapper--additional--alt:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item-links-wrapper--additional--alt .global-header__menu-l3-subnav:before {
        border-color: #fff
    }
}

.global-header__menu-l3-panel-item-image--additional {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item-image-wrapper--additional--alt {
        float: left;
        display: block;
        margin-right: 10.1484%;
        width: 26.56773%
    }

    .global-header__menu-l3-panel-item-image-wrapper--additional--alt:last-child {
        margin-right: 0
    }
}

.global-header__menu-l3-panel-item--nav-promo-tile,
.global-header__menu-l3-panel-item--nav-recently-viewed-tile {
    height: auto
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-subnav-list-item--additional {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        margin-bottom: 15px
    }
}

.global-header__menu-l3-subnav-list-item--additional:first-child {
    padding-top: 20px
}

.nav-profile {
    min-width: 100%;
    padding: 20px 30px;
    border-bottom: 1px solid #c6c6c6;
    display: inline-block
}

@media screen and (min-width: 768px) {
    .nav-profile {
        min-width: auto
    }
}

.nav-profile__container {
    display: none
}

.nav-profile__container--active {
    display: block
}

.nav-profile__heading {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 10px
}

@media screen and (min-width: 768px) {
    .nav-profile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        margin-bottom: 15px
    }
}

.nav-profile__description {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 15px
}

@media screen and (min-width: 768px) {
    .nav-profile__description {
        padding-top: 20px;
        position: relative
    }
}

@media screen and (min-width: 980px) {
    .nav-profile__description {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 100%
    }

    .nav-profile__description:last-child {
        margin-right: 0
    }
}

.nav-profile__description:before {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    border-bottom: 1px solid #fff
}

.nav-profile__links-list {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 20px;
    margin-bottom: 20px;
    position: relative
}

.nav-profile__links-list:before {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    border-bottom: 1px solid #fff
}

.nav-profile__links-list:after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 30px;
    border-bottom: 1px solid #fff
}

.nav-profile__links-list .nav-profile__link {
    margin-bottom: 20px
}

@media screen and (min-width: 980px) {
    .nav-profile__links-list .nav-profile__link {
        margin-bottom: 15px
    }
}

@media screen and (min-width: 980px) {
    .nav-profile__links-list .nav-profile__link:last-child {
        margin-bottom: 20px
    }
}

.nav-profile__buttons-wrapper {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
    display: -ms-flexbox;
    display: flex
}

.nav-profile__buttons-wrapper:last-child {
    margin-right: 0
}

.nav-profile__container--authenticated .nav-profile__buttons-wrapper {
    display: block
}

@media screen and (min-width: 768px) {
    .nav-profile__container--authenticated .nav-profile__buttons-wrapper {
        display: -ms-flexbox;
        display: flex
    }
}

.nav-profile__button-container {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 46.28851%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.nav-profile__button-container:last-child {
    margin-right: 0
}

@media screen and (min-width: 980px) {
    .nav-profile__button-container:nth-child(2n) {
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

.nav-profile__container--authenticated .nav-profile__button-container {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%
}

.nav-profile__container--authenticated .nav-profile__button-container:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .nav-profile__container--authenticated .nav-profile__button-container {
        float: left;
        display: block;
        margin-right: 7.42297%;
        width: 46.28851%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }

    .nav-profile__container--authenticated .nav-profile__button-container:last-child {
        margin-right: 0
    }
}

.nav-profile__button {
    white-space: nowrap
}

body[data-theme="amg"] .nav-profile__button.button_primary,
[data-theme="amg"].grid-debugger .nav-profile__button.button_primary {
    background-color: #176db7
}

body[data-theme="amg"] .nav-profile__button.button_primary:hover,
[data-theme="amg"].grid-debugger .nav-profile__button.button_primary:hover,
body[data-theme="amg"] .nav-profile__button.button_primary:focus,
[data-theme="amg"].grid-debugger .nav-profile__button.button_primary:focus {
    background-color: #2e7cbe
}

.amg-component .nav-profile__button.button_primary {
    background-color: #176db7
}

.amg-component .nav-profile__button.button_primary:hover,
.amg-component .nav-profile__button.button_primary:focus {
    background-color: #2e7cbe
}

.nav-profile__link {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
    cursor: pointer
}

@media screen and (min-width: 768px) {
    .nav-profile__link {
        color: #fff
    }
}

.nav-profile__link:hover {
    color: #2e7cbe;
    transition: color 0.1s linear
}

.nav-profile__link:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 12px;
    color: #2e7cbe;
    margin-left: 5px
}

.nav-profile__logout {
    display: inline-block;
    margin-top: 20px
}

@media screen and (min-width: 768px) {
    .nav-profile__logout {
        margin-top: 0
    }
}

.global-header__menu-l3-panel-item .nav-profile {
    padding: 0;
    border-bottom: none
}

.global-header__menu-l3-panel-item--profile .nav-profile__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 20px
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item--profile .nav-profile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 30px;
        font-weight: 400
    }
}

@media screen and (min-width: 980px) and (min-width: 980px) {
    .global-header__menu-l3-panel-item--profile .nav-profile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.global-header__menu-l3-panel-item--profile .nav-profile__description {
    padding-top: 20px;
    position: relative
}

.global-header__menu-l3-panel-item--profile .nav-profile__link {
    color: #fff
}

.nav-cta-tile__wrapper {
    width: 100%;
    padding: 20px 0
}

.nav-cta-tile__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 20px
}

@media screen and (min-width: 980px) {
    .nav-cta-tile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 30px;
        font-weight: 400
    }
}

@media screen and (min-width: 980px) and (min-width: 980px) {
    .nav-cta-tile__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.nav-cta-tile__logo {
    max-height: 70px
}

.nav-cta-tile__description {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    position: relative;
    padding-top: 20px
}

@media screen and (min-width: 980px) {
    .nav-cta-tile__description {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        margin-bottom: 20px
    }
}

.nav-cta-tile__description:before {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    border-bottom: 1px solid #393939
}

.nav-cta-tile--utility .nav-cta-tile__description:before {
    border-color: #fff
}

.nav-cta-tile__list-item {
    margin-bottom: 20px
}

@media screen and (min-width: 980px) {
    .nav-cta-tile__list-item {
        margin-bottom: 15px
    }
}

.nav-cta-tile__list-item:last-child {
    margin-bottom: 0
}

.nav-cta-tile__link {
    color: #000;
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400
}

@media screen and (min-width: 980px) {
    .nav-cta-tile__link {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.nav-cta-tile--utility .nav-cta-tile__link {
    color: #fff
}

.nav-cta-tile__link:hover {
    color: #2e7cbe;
    transition: color 0.1s linear
}

.nav-cta-tile__link--active {
    border-bottom: 2px solid #2e7cbe;
    padding-bottom: 5px;
    color: #2e7cbe
}

.nav-cta-tile__link:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 12px;
    color: #2e7cbe;
    margin-left: 5px
}

.global-header__menu-l1-list-button-utility.global-header__menu-l1-list-button--icon {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list-button-utility.global-header__menu-l1-list-button--icon {
        font-family: "corpos", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
        text-transform: none
    }
}

.global-header__menu-l3-panel-list--utility {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

.global-header__menu-l3-panel-list--utility::after {
    clear: both;
    content: '';
    display: block
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item--utility {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 40.29137%;
        margin-bottom: 60px
    }

    .global-header__menu-l3-panel-item--utility:last-child {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--utility:nth-child(2n) {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--utility:nth-child(2n+1) {
        clear: left
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item--utility {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 23.23176%
    }

    .global-header__menu-l3-panel-item--utility:last-child {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--utility:nth-child(2n) {
        margin-right: 2.35765%
    }

    .global-header__menu-l3-panel-item--utility:nth-child(2n+1) {
        clear: none
    }

    .global-header__menu-l3-panel-item--utility:nth-child(3n) {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--utility:nth-child(3n+1) {
        clear: left
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item--utility:nth-child(2) {
        margin-left: 8.5298%
    }
}

@media screen and (min-width: 768px) {
    .global-header__menu-l3-panel-item--profile {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-bottom: 60px
    }

    .global-header__menu-l3-panel-item--profile:last-child {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--profile:nth-child(2n) {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--profile:nth-child(2n+1) {
        clear: left
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item--profile {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        margin-left: 8.5298%
    }

    .global-header__menu-l3-panel-item--profile:last-child {
        margin-right: 0
    }

    .global-header__menu-l3-panel-item--profile:nth-child(2n) {
        margin-right: 2.35765%
    }

    .global-header__menu-l3-panel-item--profile:nth-child(2n+1) {
        clear: none
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item--dealer {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto
    }

    .global-header__menu-l3-panel-item--dealer::after {
        clear: both;
        content: '';
        display: block
    }
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item-search-wrapper {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 74.41059%
    }

    .global-header__menu-l3-panel-item-search-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item-search-wrapper {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%
    }

    .global-header__menu-l3-panel-item-search-wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-headline--dealer {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .global-header__menu-l3-headline--dealer:last-child {
        margin-right: 0
    }

    .global-header__menu-l3-headline--search {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 14.70196%
    }

    .global-header__menu-l3-headline--search:last-child {
        margin-right: 0
    }
}

.global-header__location-input {
    padding-bottom: 160px
}

@media screen and (min-width: 980px) {
    .global-header__location-input {
        padding: 0 0 170px;
        margin-top: calc(10px * -1)
    }
}

.global-header__location-input__search-bar__container {
    background-color: #fff;
    padding: 20px 15px 40px;
    border-bottom: 1px solid #c6c6c6
}

@media screen and (min-width: 768px) {
    .global-header__location-input__search-bar__container {
        padding-left: 35px;
        padding-right: 35px
    }
}

@media screen and (min-width: 980px) {
    .global-header__location-input__search-bar__container {
        padding: 0;
        background-color: transparent;
        border: none
    }
}

@media screen and (min-width: 980px) {
    .global-header__location-input .dealer-search-bar__location-search {
        -ms-flex-positive: 5;
        flex-grow: 5
    }
}

@media screen and (min-width: 980px) {
    .global-header__location-input .dealer-search-bar__cta {
        -ms-flex-positive: 1;
        flex-grow: 1
    }
}

body[data-theme="amg"] .global-header__location-input .dealer-search-bar__cta>button,
[data-theme="amg"].grid-debugger .global-header__location-input .dealer-search-bar__cta>button {
    background-color: #176db7
}

body[data-theme="amg"] .global-header__location-input .dealer-search-bar__cta>button:hover,
[data-theme="amg"].grid-debugger .global-header__location-input .dealer-search-bar__cta>button:hover {
    background-color: #2e7cbe
}

.amg-component .global-header__location-input .dealer-search-bar__cta>button {
    background-color: #176db7
}

.amg-component .global-header__location-input .dealer-search-bar__cta>button:hover {
    background-color: #2e7cbe
}

.global-header__location-input .dealer-search-bar__cta>button {
    width: 90px
}

@media screen and (min-width: 980px) {
    .global-header__location-input .dealer-search-bar__cta>button {
        width: 100%
    }
}

.global-header__location-input .form__input-label {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400
}

.global-header__location-input .form__input-error {
    margin-bottom: calc(25px * -1)
}

@media screen and (min-width: 980px) {
    .site-search__component-container {
        float: left;
        display: block;
        margin-right: 2.84259%;
        width: 89.71574%
    }

    .site-search__component-container:last-child {
        margin-right: 0
    }
}

.site-search__input-container {
    display: inline-block;
    width: calc(100% - 30px)
}

.site-search__input-container .form__input {
    padding-bottom: 10px
}

.site-search__submit {
    width: 30px;
    padding: 5px 0 5px 5px;
    margin-top: 20px;
    color: #176db7;
    font-size: 20px;
    cursor: pointer
}

.site-search__submit:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%
}

.site-search__submit-container {
    float: right
}

.site-search__server-error-container .form-error-message {
    width: 100%
}

.type-ahead {
    position: relative
}

.type-ahead__custom-error {
    display: block;
    position: relative;
    top: -20px
}

.type-ahead__error-cta {
    text-decoration: underline;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400
}

@media only print {
    .type-ahead__error-cta {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.type-ahead__wrapper {
    position: absolute;
    width: 100%;
    z-index: 100;
    top: 50px
}

.type-ahead__results {
    background: #fff;
    border: 1px solid #c6c6c6;
    border-top: none;
    z-index: 100;
    width: 100%
}

.type-ahead__results::after {
    clear: both;
    content: '';
    display: block
}

.type-ahead__results--active {
    display: block
}

.type-ahead__results--inactive {
    display: none
}

.type-ahead__option {
    color: #000;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700
}

.type-ahead__option:hover {
    color: #2e7cbe;
    cursor: pointer
}

.type-ahead__option:focus {
    color: #2e7cbe
}

.type-ahead__loading {
    color: #717171;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

.global-header__hamburger-search-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    padding: 10px 15px 20px;
    background-color: #fff;
    border-bottom: 1px solid #c6c6c6
}

.global-header__hamburger-search-wrapper::after {
    clear: both;
    content: '';
    display: block
}

@media screen and (min-width: 768px) {
    .global-header__hamburger-search-wrapper {
        padding: 10px 35px 20px
    }
}

@media screen and (min-width: 980px) {
    .global-header__hamburger-search-wrapper {
        display: none
    }
}

.global-header__menu-l1-list-item--search {
    display: none
}

@media screen and (min-width: 980px) {
    .global-header__menu-l1-list-item--search {
        display: inline-block
    }
}

.global-header__menu-l1-list-item--search .global-header__menu-l1-list-button {
    font-size: 22px
}

.global-header__menu-l3-content--search .global-header__menu-l3__container-background {
    padding: 70px 0 50px
}

.global-header__menu-l3-panel-item-search {
    margin-bottom: 20px
}

.global-header__menu-l3-panel-item-quick-links {
    display: none
}

@media screen and (min-width: 980px) {
    .global-header__menu-l3-panel-item-quick-links {
        display: block;
        margin-left: 25.58941%;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 74.41059%
    }

    .global-header__menu-l3-panel-item-quick-links:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .global-header__menu-l3-panel-item-quick-links {
        margin-left: 17.05961%;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 82.94039%
    }

    .global-header__menu-l3-panel-item-quick-links:last-child {
        margin-right: 0
    }
}

.global-header__menu-l3-section-title {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px
}

.global-header__menu-l3-subnav-list-item {
    margin-bottom: 5px
}

.global-header__menu-l3-subnav-list-item a {
    font-family: "corpos", sans-serif;
    font-size: 26px;
    line-height: 32px;
    font-weight: 400;
    color: #176db7
}

[data-global-navigation-behavior='docked'] .global-header,
[data-global-navigation-behavior='peek-a-boo'] .global-header {
    position: fixed;
    width: 100%;
    transform: translateY(0);
    z-index: 700
}

body[data-theme="amg"] [data-global-navigation-behavior='docked'] .global-header,
[data-theme="amg"].grid-debugger [data-global-navigation-behavior='docked'] .global-header,
body[data-theme="amg"] [data-global-navigation-behavior='peek-a-boo'] .global-header,
[data-theme="amg"].grid-debugger [data-global-navigation-behavior='peek-a-boo'] .global-header {
    background-color: #000
}

.amg-component [data-global-navigation-behavior='docked'] .global-header,
.amg-component [data-global-navigation-behavior='peek-a-boo'] .global-header {
    background-color: #000
}

@media screen and (min-width: 980px) {

    [data-global-navigation-behavior='docked'] .global-header,
    [data-global-navigation-behavior='peek-a-boo'] .global-header {
        transform: none;
        top: 0
    }
}

[data-global-navigation-behavior='docked'] .global-header--docking-state,
[data-global-navigation-behavior='peek-a-boo'] .global-header--docking-state {
    transform: translate(0, -60px)
}

@media screen and (min-width: 980px) {

    [data-global-navigation-behavior='docked'] .global-header--docking-state,
    [data-global-navigation-behavior='peek-a-boo'] .global-header--docking-state {
        transform: none
    }
}

[data-global-navigation-behavior='docked'] .global-header__show-nav-btn,
[data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

@media only print {

    [data-global-navigation-behavior='docked'] .global-header__show-nav-btn,
    [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn {
        display: none
    }
}

@media screen and (min-width: 980px) {

    [data-global-navigation-behavior='docked'] .global-header__show-nav-btn,
    [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn {
        display: block;
        position: fixed;
        right: 0;
        top: 15px
    }

    body[data-theme="amg"] [data-global-navigation-behavior='docked'] .global-header__show-nav-btn.link:focus,
    [data-theme="amg"].grid-debugger [data-global-navigation-behavior='docked'] .global-header__show-nav-btn.link:focus,
    body[data-theme="amg"] [data-global-navigation-behavior='docked'] .global-header__show-nav-btn.link_in-text:focus,
    [data-theme="amg"].grid-debugger [data-global-navigation-behavior='docked'] .global-header__show-nav-btn.link_in-text:focus,
    body[data-theme="amg"] [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn.link:focus,
    [data-theme="amg"].grid-debugger [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn.link:focus,
    body[data-theme="amg"] [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn.link_in-text:focus,
    [data-theme="amg"].grid-debugger [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn.link_in-text:focus {
        color: #fff
    }

    .amg-component [data-global-navigation-behavior='docked'] .global-header__show-nav-btn.link:focus,
    .amg-component [data-global-navigation-behavior='docked'] .global-header__show-nav-btn.link_in-text:focus,
    .amg-component [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn.link:focus,
    .amg-component [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn.link_in-text:focus {
        color: #fff
    }

    [data-global-navigation-behavior='docked'] .global-header__show-nav-btn:focus,
    [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn:focus {
        clip: auto;
        height: auto;
        width: auto
    }

    [data-global-navigation-behavior='docked'] .global-header__show-nav-btn--hidden,
    [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn--hidden {
        display: none
    }
}

@media screen and (min-width: 980px) {

    [data-global-navigation-behavior='docked'] .global-header__show-nav-container,
    [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-container {
        display: block;
        width: 80.61224%;
        height: 1px;
        position: fixed;
        left: 50%;
        top: 0;
        z-index: 10000;
        transform: translateX(-50%)
    }
}

@media screen and (min-width: 1440px) {

    [data-global-navigation-behavior='docked'] .global-header__show-nav-container,
    [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-container {
        width: 81.25%;
        max-width: 1170px
    }
}

@media screen and (min-width: 980px) {
    [data-global-navigation-behavior='docked'] .global-header--docking-state {
        top: -85px
    }
}

[data-global-navigation-behavior='docked'] .global-header:not(.externally-locked) {
    transition: transform 0.5s 0s ease-out, visibility 1s ease-out
}

@media screen and (min-width: 980px) {
    [data-global-navigation-behavior='docked'] .global-header:not(.externally-locked) {
        transition: top 0.5s 0s ease-out, visibility 1s ease-out
    }

    [data-global-navigation-behavior='docked'] .global-header:not(.externally-locked)__menu-l1 {
        transition: visibility 0.5s ease-out
    }

    [data-global-navigation-behavior='docked'] .global-header:not(.externally-locked)[aria-hidden="true"] .top-bar,
    [data-global-navigation-behavior='docked'] .global-header:not(.externally-locked)[aria-hidden="true"] .global-header__menu-l1 {
        visibility: hidden
    }
}

@media screen and (min-width: 980px) {
    [data-global-navigation-behavior='docked'] .global-header:not(.externally-locked)__show-nav-btn {
        font-family: "Arial", sans-serif;
        font-size: 12px;
        line-height: 18px;
        font-weight: 400;
        color: #fff
    }

    [data-global-navigation-behavior='docked'] .global-header:not(.externally-locked)__show-nav-btn:focus {
        background-color: transparent
    }
}

@media screen and (max-width: 979px) {
    [data-global-header-state="open"] [data-global-navigation-behavior='peek-a-boo'] {
        margin-top: -60px
    }
}

[data-global-navigation-behavior='peek-a-boo'] .global-header {
    transition: transform 0.25s 0s ease-out, visibility 0.5s ease-out;
    z-index: 910
}

@media screen and (min-width: 980px) {
    [data-global-navigation-behavior='peek-a-boo'] .global-header {
        transition: top .3s 0s cubic-bezier(0, 0.59, 0.63, 1), visibility 0.5s ease-out
    }
}

@media screen and (min-width: 980px) {
    [data-global-navigation-behavior='peek-a-boo'] .global-header--docking-state {
        top: -80px
    }
}

[data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content {
    padding-top: 60px
}

@media screen and (min-width: 980px) {
    [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content {
        padding-top: 80px
    }
}

[data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after {
    content: "";
    display: block;
    height: 40px;
    width: 100%;
    background-color: #fff;
    position: relative
}

@media screen and (min-width: 980px) {
    [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after {
        height: 60px
    }
}

.account [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after,
.confirmation-success [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after,
.warranty-maintenance [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after,
[data-global-content-styling='full-bleed'] [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after {
    content: none
}

body[data-theme="amg"] [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after,
[data-theme="amg"].grid-debugger [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after,
body[data-theme="theme-page"] [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after,
[data-theme="theme-page"].grid-debugger [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after {
    background-color: #000
}

.amg-component [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after,
.theme-page-component [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content::after {
    background-color: #000
}

.home-page-v2 [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content,
.specialty-page [data-global-navigation-behavior='peek-a-boo'] .global-header~.page-content {
    padding-top: 0
}

[data-global-navigation-behavior='peek-a-boo'] .global-header__menu-l1 {
    transition: height 0.3s ease, visibility 0.5s ease-out
}

[data-global-navigation-behavior='peek-a-boo'] .global-header[aria-hidden="true"] .top-bar {
    visibility: hidden;
    transition: top 0.25s 0s ease-out, visibility 0.5s ease-out
}

[data-global-navigation-behavior='peek-a-boo'] .global-header[aria-hidden="true"] .top-bar__hamburger-button,
[data-global-navigation-behavior='peek-a-boo'] .global-header[aria-hidden="true"] .top-bar__logo-img {
    transition: visibility 1s ease-out;
    visibility: hidden
}

@media screen and (min-width: 980px) {
    [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn {
        position: relative;
        top: 0;
        float: right
    }

    [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-btn:focus {
        padding: 5px 10px
    }
}

@media screen and (min-width: 980px) {
    [data-global-navigation-behavior='peek-a-boo'] .global-header__show-nav-container {
        position: absolute;
        top: 90px;
        z-index: 699
    }
}

.global-header__show-nav-btn {
    display: none
}

.global-header__show-nav-container {
    display: none
}

.saved-vehicles-panel {
    padding: 0 10px
}

@media screen and (min-width: 768px) {
    .saved-vehicles-panel {
        padding: 0 35px
    }
}

.saved-vehicles-panel__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px
}

.saved-vehicles-panel__sub-heading {
    text-align: center;
    margin-bottom: 30px
}

.saved-vehicles-panel__benefits {
    padding-bottom: 50px
}

.saved-vehicles-panel__benefits-heading {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center
}

@media only print {
    .saved-vehicles-panel__benefits-heading {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.saved-vehicles-panel__benefits-icons {
    margin: 0 auto;
    width: 165px
}

@media screen and (min-width: 768px) {
    .saved-vehicles-panel__benefits-icons {
        text-align: center;
        width: auto
    }
}

@media screen and (min-width: 768px) {
    .saved-vehicles-panel__icon {
        display: inline-block;
        width: calc(33% - 20px)
    }
}

.saved-vehicles-panel__cta-container {
    text-align: center;
    margin-bottom: 20px
}

.saved-vehicles-panel__cta {
    width: 100%;
    margin-bottom: 20px
}

.saved-vehicles-panel__cta:last-child {
    margin-bottom: 0
}

@media screen and (min-width: 768px) {
    .saved-vehicles-panel__cta {
        width: calc(50% - 12px);
        margin-right: 20px
    }

    .saved-vehicles-panel__cta:last-child {
        margin-right: 0
    }
}

.saved-vehicles-panel__icon:before {
    display: inline-block;
    margin-right: 30px;
    text-align: center;
    vertical-align: middle;
    width: 30px
}

@media screen and (min-width: 768px) {
    .saved-vehicles-panel__icon:before {
        display: block;
        margin-right: 0;
        width: auto
    }
}

.saved-vehicles-panel__builds-icon:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 20px
}

.saved-vehicles-panel__inventory-icon:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 20px
}

.saved-vehicles-panel__recommendations-icon:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 20px
}

@media screen and (min-width: 768px) {
    .saved-vehicles-panel__recommendations-icon:before {
        display: block;
        margin-right: 0
    }
}

.saved-vehicles-panel__already-registered {
    text-align: center
}

.saved-vehicles-panel__login-link {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .saved-vehicles-panel__login-link {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.saved-vehicles-panel__create-account {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .saved-vehicles-panel__create-account {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.saved-vehicles-panel__email {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700
}

@media only print {
    .saved-vehicles-panel__email {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.saved-vehicles-panel .button-control {
    display: inline
}

.screen-small-test,
.screen-large-test,
.screen-xlarge-test,
.screen-xxlarge-test {
    display: none;
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

@media only print {

    .screen-small-test,
    .screen-large-test,
    .screen-xlarge-test,
    .screen-xxlarge-test {
        display: none
    }
}

.screen-small-test {
    display: block
}

@media screen and (min-width: 768px) {
    .screen-small-test {
        display: none
    }
}

@media screen and (min-width: 980px) {
    .screen-small-test {
        display: none
    }
}

@media screen and (min-width: 1440px) {
    .screen-small-test {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .screen-large-test {
        display: block
    }
}

@media screen and (min-width: 980px) {
    .screen-large-test {
        display: none
    }
}

@media screen and (min-width: 1440px) {
    .screen-large-test {
        display: none
    }
}

@media screen and (min-width: 980px) {
    .screen-xlarge-test {
        display: block
    }
}

@media screen and (min-width: 1440px) {
    .screen-xlarge-test {
        display: none
    }
}

@media screen and (min-width: 1440px) {
    .screen-xxlarge-test {
        display: block
    }
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
 */
.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.pika-single.is-hidden {
    display: none
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5)
}

.pika-single {
    *zoom: 1
}

.pika-single:before,
.pika-single:after {
    content: " ";
    display: table
}

.pika-single:after {
    clear: both
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px
}

.pika-title {
    position: relative;
    text-align: center
}

.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0
}

.pika-label {
    display: inline-block;
    *display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: #333;
    background-color: #fff
}

.pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    *position: absolute;
    *top: 0
}

.pika-prev:hover,
.pika-next:hover {
    opacity: 1
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: .2
}

.pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
    *left: 0
}

.pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
    *right: 0
}

.pika-select {
    display: inline-block;
    *display: inline
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0
}

.pika-table th,
.pika-table td {
    width: 14.285714285714286%;
    padding: 0
}

.pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center
}

.pika-table abbr {
    border-bottom: none;
    cursor: help
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5
}

.is-today .pika-button {
    color: #3af;
    font-weight: bold
}

.is-selected .pika-button {
    color: #fff;
    font-weight: bold;
    background: #3af;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px
}

.is-disabled .pika-button,
.is-outside-current-month .pika-button {
    color: #999;
    opacity: .3
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default
}

.pika-button:hover {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px
}

.pika-button .is-selection-disabled {
    pointer-events: none;
    cursor: default
}

.pika-week {
    font-size: 11px;
    color: #999
}

.is-inrange .pika-button {
    background: #D5E9F7
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px
}

.form-input__date-picker {
    background-color: #f1f1f1
}

.form-input__date-picker .pika-lendar {
    width: 220px
}

.form-input__date-picker .pika-title {
    border-bottom: 1px solid #c6c6c6
}

.form-input__date-picker .pika-label {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    background-color: transparent
}

@media only print {
    .form-input__date-picker .pika-label {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400
    }
}

.form-input__date-picker .pika-next,
.form-input__date-picker .pika-prev {
    background-image: none;
    opacity: 1;
    text-indent: 0px;
    width: 15px;
    color: #176db7;
    font-size: 14px
}

.form-input__date-picker .pika-next:before,
.form-input__date-picker .pika-prev:before {
    margin-right: 10px
}

.form-input__date-picker .pika-next.is-disabled,
.form-input__date-picker .pika-prev.is-disabled {
    color: #c6c6c6
}

.form-input__date-picker .pika-next {
    margin-right: 10px
}

.form-input__date-picker .pika-next:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%
}

.form-input__date-picker .pika-prev {
    margin-left: 10px
}

.form-input__date-picker .pika-prev:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%
}

.form-input__date-picker .pika-table {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

.form-input__date-picker .pika-button {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #000;
    background-color: transparent;
    text-align: center
}

@media only print {
    .form-input__date-picker .pika-button {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.form-input__date-picker .pika-button:hover {
    background-color: #c6c6c6;
    border-radius: 0;
    box-shadow: none
}

.form-input__date-picker .is-disabled .pika-button {
    background: none
}

.form-input__date-picker .is-selected .pika-button {
    background-color: #2e7cbe;
    color: #fff;
    border-radius: 0;
    box-shadow: none
}

.form__radio-control-group-container.error .form__input-error {
    display: block
}

.form__radio-control-group-label {
    margin-bottom: 20px
}

.form__radio-control-group-label[data-required] .form__radio-control-group-label-text:after {
    display: inline;
    content: "*"
}

.form__radio-control {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    margin-bottom: 15px
}

.form__radio {
    position: absolute;
    z-index: -1;
    opacity: 0
}

.form__radio:checked+.form__radio-indicator:after {
    background: #176db7
}

.form__radio:focus+.form__radio-indicator {
    border-color: #2e7cbe
}

.form__radio-label {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

.form__radio-indicator {
    position: absolute;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #999;
    border-radius: 50%;
    left: 0;
    height: 20px;
    width: 20px
}

.form__radio-indicator:after {
    display: block;
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    transition: background 0.25s linear
}

.form__horizontal-radio {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.form__horizontal-radio>.form__radio-control-container {
    margin-right: 60px
}

.form__horizontal-radio>.form__radio-control-container:last-of-type {
    margin-right: 0
}

.form__radio-card-control {
    text-align: center;
    color: #176db7
}

.form__radio-card-label-wrapper {
    background-color: #f1f1f1;
    border: 1px solid #e3e3e3;
    margin-bottom: 10px;
    padding: 30px
}

.form__radio-card-label-wrapper:hover,
.form__radio-card-label-wrapper:focus {
    cursor: pointer
}

.form__radio-card:checked+.form__radio-card-label-wrapper {
    background-color: #e8f1f8;
    border: 1px solid #176db7
}

.form__radio-card:focus+.form__radio-card-label-wrapper {
    outline: thin solid #176db7;
    outline-offset: 4px
}

.form__radio-card-label-wrapper--with-eyebrow {
    padding-top: 10px
}

.form__radio-card-control-group--inline .form__radio-card-label-wrapper {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
    padding: 20px 20px 15px
}

.form__radio-card-eyebrow {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase
}

.form__radio-card-icon {
    font-size: 40px;
    margin-bottom: 20px
}

.form__radio-card-control-group--inline .form__radio-card-icon {
    margin-bottom: 10px
}

.form__radio-card-icon--selected {
    display: none
}

.form__radio-card-icon--selected:before {
    background-color: #fff;
    border-radius: 50%
}

.form__radio-card:checked+.form__radio-card-label-wrapper .form__radio-card-icon--selected {
    display: block
}

.form__radio-card-icon--unselected {
    display: block
}

.form__radio-card:checked+.form__radio-card-label-wrapper .form__radio-card-icon--unselected {
    display: none
}

.form__radio-card-label {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

.form__radio-card:checked+.form__radio-card-label-wrapper .form__radio-card-label {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700
}

.form__radio-card-extended {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #000
}

.form__radio-card:checked+.form__radio-card-label-wrapper .form__radio-card-extended {
    margin-top: 10px
}

.form__radio-card:not(:checked)+.form__radio-card-label-wrapper .form__radio-card-extended {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

@media only print {
    .form__radio-card:not(:checked)+.form__radio-card-label-wrapper .form__radio-card-extended {
        display: none
    }
}

.form__radio-card {
    opacity: 0;
    position: absolute;
    z-index: -1
}

.form__radio-card-control-group--inline {
    margin-top: 15px;
    display: -ms-flexbox;
    display: flex
}

.form__radio-card-control-group--inline>div {
    -ms-flex: 1 1 0px;
    flex: 1 1 0;
    margin-right: 10px
}

.form__radio-card-control-group--inline>div:last-child {
    margin-right: 0
}

.range-control {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-bottom: 30px;
    padding-top: 15px
}

@media screen and (min-width: 768px) {
    .range-control {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap
    }
}

.range-control__label {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-order: 1;
    order: 1
}

@media only print {
    .range-control__label {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .range-control__label {
        -ms-flex: 0 1 20%;
        flex: 0 1 20%
    }
}

.range-control__label--max {
    -ms-flex: 0;
    flex: 0
}

@media screen and (min-width: 768px) {
    .range-control__label--max {
        -ms-flex: 0 1 20%;
        flex: 0 1 20%;
        -ms-flex-order: 3;
        order: 3;
        text-align: left
    }
}

.range-control__container {
    margin-top: 30px;
    -ms-flex-order: 2;
    order: 2;
    position: relative;
    width: 100%
}

@media screen and (min-width: 768px) {
    .range-control__container {
        margin: 0 10px
    }
}

.range-control__track {
    background: transparent;
    height: 6px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.range-control__track-background {
    background: #e3e3e3;
    border-radius: 2px;
    height: 100%;
    left: 2.5%;
    position: absolute;
    top: 0;
    width: 95%
}

.range-control__fill {
    background: #176db7;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.range-control__handle {
    background: #fff;
    border: 1px solid #e3e3e3;
    cursor: -webkit-grab;
    cursor: grab;
    height: 30px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    width: 15px
}

@media screen and (max-width: 767px) {
    .range-control__handle:before {
        content: '';
        position: absolute;
        top: -10px;
        bottom: -10px;
        left: -10px;
        right: -10px
    }
}

.range-control__handle:after {
    content: '';
    border-right: 1px solid #e3e3e3;
    height: 12px;
    left: 6px;
    position: absolute;
    top: 8px
}

.range-control__handle:focus {
    border: 1px solid #2e7cbe
}

.button-control__error {
    display: none;
    color: #eb0000;
    margin-top: 10px
}

.error .button-control__error {
    display: block
}

.recaptcha__error {
    display: none;
    color: #eb0000
}

.recaptcha.error .recaptcha__error {
    display: block
}

.recaptcha-v3-branding__copy {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    color: #717171
}

@media only print {
    .recaptcha-v3-branding__copy {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.grecaptcha-badge {
    visibility: hidden
}

.terms-of-use-page {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

.terms-of-use-page::after {
    clear: both;
    content: '';
    display: block
}

@media screen and (min-width: 768px) {
    .terms-of-use-page__container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 17.05961%
    }

    .terms-of-use-page__container:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 980px) {
    .terms-of-use-page__container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-left: 25.58941%
    }

    .terms-of-use-page__container:last-child {
        margin-right: 0
    }
}

.terms-of-use__wrapper {
    padding: 30px;
    text-align: center
}

@media screen and (min-width: 768px) {
    .terms-of-use__wrapper {
        padding: 40px
    }
}

@media screen and (min-width: 980px) {
    .terms-of-use__wrapper {
        padding: 40px 0
    }
}

.terms-of-use__title {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 20px
}

@media screen and (min-width: 980px),
only print {
    .terms-of-use__title {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

.terms-of-use__subtitle {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 20px
}

.terms-of-use__description {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 20px
}

.terms-of-use__check {
    margin-bottom: 40px
}

.terms-of-use__check a {
    color: #176db7
}

.terms-of-use__check a:hover {
    color: #2e7cbe
}

.terms-of-use__check .form__checkbox-label {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400
}

@media only print {
    .terms-of-use__check .form__checkbox-label {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.terms-of-use__cta {
    width: 100%
}

@media screen and (min-width: 768px) {
    .terms-of-use__cta {
        width: auto
    }
}

.terms-of-use__cta:first-child {
    margin-bottom: 20px
}

@media screen and (min-width: 768px) {
    .terms-of-use__cta:first-child {
        margin: 0 20px 0 0
    }
}

.terms-of-use .form__input {
    text-align: left
}

body[data-theme="amg"],
[data-theme="amg"].grid-debugger {
    background-color: #000;
    color: #fff
}

.amg-component {
    background-color: #000;
    color: #fff
}

body.specialty-chapter-detail-page,
.specialty-chapter-detail-page.grid-debugger {
    color: #393939;
    background-color: #e3e3e3
}

.module-separator {
    padding-top: 20px;
    padding-bottom: 20px
}

@media screen and (min-width: 768px) {
    .module-separator {
        padding-top: 30px;
        padding-bottom: 30px
    }
}

.module-separator--top {
    padding-top: 20px
}

@media screen and (min-width: 768px) {
    .module-separator--top {
        padding-top: 30px
    }
}

.module-separator--bottom {
    padding-bottom: 20px
}

@media screen and (min-width: 768px) {
    .module-separator--bottom {
        padding-bottom: 30px
    }
}

.proof-points {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
}

.proof-points::after {
    clear: both;
    content: '';
    display: block
}

.proof-points_wrapper {
    padding-top: 0
}

@media screen and (min-width: 768px) {
    .proof-points_wrapper {
        margin-left: 8.5298%;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 82.94039%;
        margin-right: 0
    }

    .proof-points_wrapper:last-child {
        margin-right: 0
    }

    .proof-points_wrapper::after {
        clear: both;
        content: '';
        display: block
    }
}

.proof-points_wrapper.module-separator {
    padding-bottom: 0
}

body[data-editorial="true"] .proof-points .newpar,
[data-editorial="true"].grid-debugger .proof-points .newpar {
    float: left;
    width: 100%
}

body[data-theme="theme-page"],
[data-theme="theme-page"].grid-debugger {
    background-color: #000;
    color: #fff
}

.theme-page-component {
    background-color: #000;
    color: #fff
}

body[data-theme="amg"] .button_primary,
[data-theme="amg"].grid-debugger .button_primary {
    background-color: #eb0000;
    color: #fff
}

body[data-theme="amg"] .button_primary:focus,
[data-theme="amg"].grid-debugger .button_primary:focus {
    animation: none;
    outline: none
}

body[data-theme="amg"] .button_primary:hover,
[data-theme="amg"].grid-debugger .button_primary:hover,
body[data-theme="amg"] .button_primary:focus,
[data-theme="amg"].grid-debugger .button_primary:focus,
a:hover body[data-theme="amg"] .button_primary,
a:hover [data-theme="amg"].grid-debugger .button_primary,
a:focus body[data-theme="amg"] .button_primary,
a:focus [data-theme="amg"].grid-debugger .button_primary {
    background-color: #f14b4b
}

.amg-component .button_primary {
    background-color: #eb0000;
    color: #fff
}

.amg-component .button_primary:focus {
    animation: none;
    outline: none
}

.amg-component .button_primary:hover,
.amg-component .button_primary:focus,
a:hover .amg-component .button_primary,
a:focus .amg-component .button_primary {
    background-color: #f14b4b
}

body[data-theme="maybach"] .button_primary,
[data-theme="maybach"].grid-debugger .button_primary {
    background-color: #00635b
}

body[data-theme="maybach"] .button_primary:focus,
[data-theme="maybach"].grid-debugger .button_primary:focus {
    animation: none;
    outline: none
}

body[data-theme="maybach"] .button_primary:hover,
[data-theme="maybach"].grid-debugger .button_primary:hover,
body[data-theme="maybach"] .button_primary:focus,
[data-theme="maybach"].grid-debugger .button_primary:focus,
a:hover body[data-theme="maybach"] .button_primary,
a:hover [data-theme="maybach"].grid-debugger .button_primary,
a:focus body[data-theme="maybach"] .button_primary,
a:focus [data-theme="maybach"].grid-debugger .button_primary {
    background-color: #005670
}

.maybach-component .button_primary {
    background-color: #00635b
}

.maybach-component .button_primary:focus {
    animation: none;
    outline: none
}

.maybach-component .button_primary:hover,
.maybach-component .button_primary:focus,
a:hover .maybach-component .button_primary,
a:focus .maybach-component .button_primary {
    background-color: #005670
}

body[data-theme="amg"] .button_call-out,
[data-theme="amg"].grid-debugger .button_call-out {
    color: #eb0000;
    background-color: #000;
    border-color: #eb0000
}

body[data-theme="amg"] .button_call-out:hover,
[data-theme="amg"].grid-debugger .button_call-out:hover,
body[data-theme="amg"] .button_call-out:focus,
[data-theme="amg"].grid-debugger .button_call-out:focus {
    color: #f14b4b;
    border-color: #f14b4b
}

.amg-component .button_call-out {
    color: #eb0000;
    background-color: #000;
    border-color: #eb0000
}

.amg-component .button_call-out:hover,
.amg-component .button_call-out:focus {
    color: #f14b4b;
    border-color: #f14b4b
}

.button_amg {
    background-color: #eb0000;
    color: #fff
}

.button_amg:focus {
    animation: none;
    outline: none
}

.button_amg:hover,
.button_amg:focus {
    background-color: #f14b4b
}

.button--page-top-sticky {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
    border-radius: 0;
    padding: 10px 70px
}

.column-link-list__link-container {
    color: #000
}

.column-link-list__link-container li {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

@media screen and (min-width: 768px) {
    .column-link-list__link-container li {
        font-family: "Arial", sans-serif;
        font-size: 12px;
        line-height: 22px;
        font-weight: 700
    }
}

.column-link-list__link-container a {
    display: block;
    padding-bottom: 10px;
    color: #000
}

.column-link-list__link-container a:focus {
    animation: none;
    outline: none
}

.column-link-list__link-container a:hover,
.column-link-list__link-container a:focus {
    color: #2e7cbe
}

.default-content-section {
    overflow: hidden
}

.default-content-section__container,
.default-content-section__container--with-section-divider {
    margin-bottom: 20px
}

@media screen and (min-width: 768px) {

    .default-content-section__container,
    .default-content-section__container--with-section-divider {
        margin-bottom: 30px
    }
}

.default-content-section__container--with-section-divider {
    padding-bottom: 30px;
    border-bottom: 1px solid #c6c6c6
}

.default-content-section:last-of-type>.default-content-section__container,
.default-content-section:last-of-type>.default-content-section__container--with-section-divider {
    border-bottom: none
}

.default-content-section_heading-wrapper {
    padding-bottom: 0
}

.default-content-section_heading-wrapper .button,
.default-content-section_heading-wrapper .link {
    margin-bottom: 20px
}

.default-content-section_heading-wrapper .link {
    display: inline-block
}

@media screen and (min-width: 768px) {
    .default-content-section_heading-wrapper {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto
    }

    .default-content-section_heading-wrapper::after {
        clear: both;
        content: '';
        display: block
    }

    .default-content-section_heading-wrapper--no-padding {
        padding-top: 0
    }
}

.default-content-section_heading,
.default-content-section_heading--left {
    text-align: center
}

@media screen and (min-width: 768px) {

    .default-content-section_heading,
    .default-content-section_heading--left {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 17.05961%
    }

    .default-content-section_heading:last-child,
    .default-content-section_heading--left:last-child {
        margin-right: 0
    }
}

.default-content-section_heading--left {
    text-align: left
}

@media screen and (min-width: 768px) {
    .default-content-section_heading--left {
        margin-left: 0%
    }
}

.default-content-section_header {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 20px
}

@media only print {
    .default-content-section_header {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {
    .default-content-section_header {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .default-content-section_header {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 36px;
        line-height: 36px;
        font-weight: 400
    }
}

.default-content-section_header--masked {
    opacity: 0;
    transition: max-height 0.3s, opacity 0.3s;
    max-height: 0;
    overflow: hidden
}

.default-content-section_header--masked:focus {
    opacity: 1;
    max-height: 75px
}

.default-content-section_description {
    margin-bottom: 20px
}

.default-content-section_cta.button {
    min-width: 160px
}

.disclaimer__drawer {
    background-color: #fff;
    overflow: hidden
}

.disclaimer__drawer[aria-expanded],
.disclaimer__drawer[aria-hidden="false"] {
    display: block;
    height: auto;
    overflow: visible
}

.footer--slim .disclaimer__drawer[aria-expanded="true"],
.footer--slim .disclaimer__drawer[aria-hidden="false"] {
    padding-bottom: 5px;
    background: #e3e3e3
}

.disclaimer__drawer[aria-expanded="false"],
.disclaimer__drawer[aria-hidden="true"] {
    display: none;
    height: 0;
    overflow: hidden
}

.disclaimer__note {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    color: #000
}

.disclaimer__note--regular {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .disclaimer__note--regular {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.disclaimer__legend {
    float: left;
    line-height: 1.25;
    margin-right: 5px
}

.disclaimer--error {
    color: #eb0000
}

.disclaimer__text {
    line-height: 1.25;
    margin-bottom: 10px
}

.disclaimer__text::after {
    clear: both;
    content: '';
    display: block
}

.disclaimer__text.rich-text p {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    line-height: 1.25
}

.rte.rte--small .disclaimer__text p {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    line-height: 1.25
}

.rte.rte--small .disclaimer__text p sup {
    line-height: 0
}

.disclaimer__marker {
    color: #176db7
}

body[data-theme="amg"] .disclaimer__marker,
[data-theme="amg"].grid-debugger .disclaimer__marker {
    color: #eb0000
}

.amg-component .disclaimer__marker {
    color: #eb0000
}

body[data-theme="maybach"] .disclaimer__marker,
[data-theme="maybach"].grid-debugger .disclaimer__marker {
    color: #00635b
}

.maybach-component .disclaimer__marker {
    color: #00635b
}

body[data-theme="amg"] .disclaimer__marker:hover,
[data-theme="amg"].grid-debugger .disclaimer__marker:hover {
    color: #eb0000
}

.amg-component .disclaimer__marker:hover {
    color: #eb0000
}

@media screen and (max-width: 767px) {
    .disclaimer__marker {
        padding: 5px;
        margin: -5px
    }
}

.disclaimer__marker[data-legend*='†'],
.disclaimer__marker[data-legend*='‡'] {
    font-size: 70%;
    vertical-align: super
}

.disclaimer__legend-reference {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    line-height: 0;
    vertical-align: super
}

.disclaimer__toggle {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    color: #176db7;
    cursor: pointer
}

.disclaimer__toggle:hover {
    color: #2e7cbe
}

.disclaimer__drawer-cta-container {
    display: block
}

.disclaimer__drawer-cta-container::after {
    clear: both;
    content: '';
    display: block
}

.disclaimer__drawer-cta {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #176db7;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 0;
    text-align: left;
    width: 100%
}

@media only print {
    .disclaimer__drawer-cta {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.disclaimer__drawer-cta:hover {
    color: #2e7cbe
}

.disclaimer__drawer-cta .icon-mb {
    margin-left: 8px
}

.disclaimer__drawer-cta .icon-mb:before {
    display: inline-block;
    transform: none;
    transition: transform 0.4s
}

.disclaimer__drawer-cta[aria-expanded="true"] .icon-mb:before {
    transform: rotate(180deg)
}

.disclaimer__back-to-content-cta {
    position: relative
}

.fixed-hero {
    overflow: hidden;
    position: relative;
    width: 100%
}

@media screen and (min-width: 768px) {
    .fixed-hero--no-gap {
        line-height: 0;
        margin-bottom: 0
    }
}

.fixed-hero__image-container {
    text-align: center;
    position: relative;
    width: 768px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0
}

.playing .fixed-hero__image-container {
    z-index: 1
}

@media screen and (min-width: 768px) {
    .fixed-hero__image-container {
        width: 1440px
    }
}

.fixed-hero__image-container--with-video {
    max-width: 100vw
}

@media screen and (min-width: 768px) {
    .fixed-hero__image-container .fixed-hero__icon-play {
        display: none
    }
}

.fixed-hero__interior {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px
}

@media screen and (min-width: 768px) {
    .fixed-hero__interior {
        padding-top: 60px;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1;
        pointer-events: none
    }
}

.playing .fixed-hero__interior {
    z-index: 0
}

.fixed-hero__interior a,
.fixed-hero__interior button {
    pointer-events: auto
}

.fixed-hero__copy-container {
    overflow: hidden
}

body[data-theme="amg"] .fixed-hero__copy-container,
[data-theme="amg"].grid-debugger .fixed-hero__copy-container {
    text-align: center
}

.amg-component .fixed-hero__copy-container {
    text-align: center
}

.fixed-hero__copy-container.dark .disclaimer__marker,
.fixed-hero__copy-container.dark .disclaimer__legend-reference,
.fixed-hero__copy-container.light .disclaimer__marker,
.fixed-hero__copy-container.light .disclaimer__legend-reference {
    color: #176db7
}

body[data-theme="amg"] .fixed-hero__copy-container.dark .disclaimer__marker,
[data-theme="amg"].grid-debugger .fixed-hero__copy-container.dark .disclaimer__marker,
body[data-theme="amg"] .fixed-hero__copy-container.dark .disclaimer__legend-reference,
[data-theme="amg"].grid-debugger .fixed-hero__copy-container.dark .disclaimer__legend-reference,
body[data-theme="amg"] .fixed-hero__copy-container.light .disclaimer__marker,
[data-theme="amg"].grid-debugger .fixed-hero__copy-container.light .disclaimer__marker,
body[data-theme="amg"] .fixed-hero__copy-container.light .disclaimer__legend-reference,
[data-theme="amg"].grid-debugger .fixed-hero__copy-container.light .disclaimer__legend-reference {
    color: inherit
}

.amg-component .fixed-hero__copy-container.dark .disclaimer__marker,
.amg-component .fixed-hero__copy-container.dark .disclaimer__legend-reference,
.amg-component .fixed-hero__copy-container.light .disclaimer__marker,
.amg-component .fixed-hero__copy-container.light .disclaimer__legend-reference {
    color: inherit
}

.fixed-hero__copy-container .button_secondary {
    margin-left: 10px
}

@media screen and (min-width: 768px) {
    .fixed-hero__copy-container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .fixed-hero__copy-container:last-child {
        margin-right: 0
    }

    body[data-theme="amg"] .fixed-hero__copy-container,
    [data-theme="amg"].grid-debugger .fixed-hero__copy-container {
        text-align: inherit
    }

    .amg-component .fixed-hero__copy-container {
        text-align: inherit
    }

    .fixed-hero__copy-container.right {
        margin-left: 68.23843%
    }

    .fixed-hero__copy-container.dark {
        color: #000
    }

    .fixed-hero__copy-container.dark .disclaimer__legend-reference,
    .fixed-hero__copy-container.dark .disclaimer__marker {
        color: #176db7
    }

    body[data-theme="amg"] .fixed-hero__copy-container.dark .disclaimer__legend-reference,
    [data-theme="amg"].grid-debugger .fixed-hero__copy-container.dark .disclaimer__legend-reference,
    body[data-theme="amg"] .fixed-hero__copy-container.dark .disclaimer__marker,
    [data-theme="amg"].grid-debugger .fixed-hero__copy-container.dark .disclaimer__marker {
        color: #eb0000
    }

    .amg-component .fixed-hero__copy-container.dark .disclaimer__legend-reference,
    .amg-component .fixed-hero__copy-container.dark .disclaimer__marker {
        color: #eb0000
    }

    .fixed-hero__copy-container.light {
        color: white
    }

    .fixed-hero__copy-container.light .disclaimer__legend-reference,
    .fixed-hero__copy-container.light .disclaimer__marker {
        color: #fff
    }

    .fixed-hero__copy-container--wide {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 40.29137%
    }

    .fixed-hero__copy-container--wide:last-child {
        margin-right: 0
    }

    .fixed-hero__copy-container--wide.right {
        margin-left: 59.70863%
    }
}

@media screen and (min-width: 980px) {
    .fixed-hero__copy-container {
        overflow: visible
    }
}

.fixed-hero__eyebrow {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-transform: uppercase
}

.fixed-hero__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 15px
}

@media screen and (min-width: 980px),
only print {
    .fixed-hero__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .fixed-hero__heading {
        margin-bottom: 20px
    }
}

.fixed-hero__sub-heading {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 15px
}

@media screen and (min-width: 768px) {
    .fixed-hero__sub-heading {
        margin-bottom: 20px
    }
}

.fixed-hero .app-badges {
    margin-bottom: 20px
}

.fixed-hero__image {
    width: 100%
}

.fixed-hero__image--override-image {
    display: block
}

@media screen and (min-width: 768px) {
    .fixed-hero__image--override-image {
        display: none
    }
}

.fixed-hero__youtube {
    position: relative
}

.fixed-hero__video {
    width: 100%;
    max-width: 100%;
    position: relative
}

.fixed-hero__video--override-video .multimedia-asset__video {
    display: none
}

@media screen and (min-width: 768px) {
    .fixed-hero__video--override-video .multimedia-asset__video {
        display: block
    }
}

.fixed-hero__video-preview-container {
    position: relative;
    overflow: hidden;
    z-index: 1
}

.fixed-hero__icon-play {
    border-radius: 50%;
    border: 2px solid #fff;
    width: auto;
    height: 75px;
    max-height: 80%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2
}

@media screen and (min-width: 768px) {
    .fixed-hero__icon-play {
        margin-left: -37px;
        margin-top: -37px
    }
}

.playing .fixed-hero__icon-play {
    z-index: 0
}

.fixed-hero__circle {
    opacity: 0.5;
    fill: #000
}

.fixed-hero__triangle {
    fill: #fff
}

.fixed-hero__youtube-preview-image {
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%
}

.fixed-hero__youtube-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.0001;
    z-index: 9;
    transition: opacity .8s ease-in-out;
    background-color: #fff
}

body[data-theme="amg"] .fixed-hero__youtube-container,
[data-theme="amg"].grid-debugger .fixed-hero__youtube-container {
    background-color: #000
}

.amg-component .fixed-hero__youtube-container {
    background-color: #000
}

.playing .fixed-hero__youtube-container {
    opacity: 1
}

.fixed-hero__youtube-container iframe {
    width: 100%;
    height: 100%
}

.fixed-hero__youtube-modal-opener {
    cursor: pointer;
    z-index: 2
}

@media screen and (max-width: 767px) {
    .fixed-hero__youtube-modal-opener {
        display: none
    }
}

.playing .fixed-hero__youtube-modal-opener {
    z-index: 0
}

.fixed-hero__youtube-start {
    cursor: pointer;
    z-index: 2
}

@media screen and (max-width: 767px) {
    .fixed-hero__youtube-start {
        display: none
    }
}

.playing .fixed-hero__youtube-start {
    z-index: 0
}

.fixed-hero__ctas-multiple {
    display: -ms-grid;
    display: grid;
    -ms-flex-pack: left;
    justify-content: left;
    text-align: center
}

.fixed-hero__ctas-multiple .button_primary {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
    margin-bottom: 10px
}

.fixed-hero__ctas-multiple .button_secondary {
    margin-left: 0;
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1
}

#js-modal .fixed-hero__youtube {
    background-color: #000;
    width: 100%;
    display: block;
    margin: 0 auto
}

.fluid-hero__image-container {
    left: 0;
    transform: none;
    width: 100%
}

.sales-hero {
    padding-top: 0
}

@media screen and (min-width: 768px) {

    body.corporate-page .sales-hero,
    .corporate-page.grid-debugger .sales-hero {
        padding-bottom: 0
    }
}

@media screen and (min-width: 768px) {

    body.special-offers .sales-hero,
    .special-offers.grid-debugger .sales-hero {
        padding-bottom: 0
    }
}

.sales-hero__image-container {
    line-height: 0
}

@media screen and (max-width: 767px) {
    .sales-hero__image-container {
        left: 0;
        transform: none;
        width: 100%
    }
}

.sales-hero__interior {
    padding-bottom: 0
}

@media screen and (min-width: 768px) {
    .sales-hero__copy-container.right {
        margin-left: 68.23843%
    }
}

.sales-hero__copy-container.center {
    text-align: center
}

@media screen and (min-width: 768px) {
    .sales-hero__copy-container.center {
        margin-left: 34.11922%
    }
}

.sales-hero__copy-container>:last-child {
    margin-bottom: 0
}

@media screen and (min-width: 768px) {
    .specialty-hero__image-container {
        left: 0;
        transform: none;
        width: 100%
    }
}

@media screen and (min-width: 980px) {
    .specialty-hero__copy-container--narrow {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 23.23176%
    }

    .specialty-hero__copy-container--narrow:last-child {
        margin-right: 0
    }

    .specialty-hero__copy-container--narrow.right {
        margin-left: 76.76824%
    }
}

.specialty-chapter-detail-hero-inner {
    color: #717171;
    padding: 0 0 20px;
    margin-bottom: 30px;
    overflow: visible;
    z-index: 1
}

@media screen and (min-width: 980px) {
    .specialty-chapter-detail-hero-inner {
        overflow: hidden
    }
}

.specialty-chapter-detail-hero-inner--no-specs {
    padding: 0;
    margin-bottom: 10px
}

.specialty-chapter-detail-hero__image-container {
    width: 100%;
    height: 185px;
    overflow: hidden
}

@media screen and (min-width: 768px) {
    .specialty-chapter-detail-hero__image-container {
        height: 300px;
        margin-bottom: 10px
    }
}

@media screen and (min-width: 980px) {
    .specialty-chapter-detail-hero__image-container {
        height: 350px;
        margin-bottom: 50px
    }
}

.specialty-chapter-detail-hero__image-container--no-specs {
    margin-bottom: 0
}

.specialty-chapter-detail-hero__responsive-image {
    height: 100%;
    left: 50%;
    position: relative;
    transform: translateX(-50%)
}

.specialty-chapter-detail-hero__interior {
    padding: 20px 0 0;
    height: 100%
}

.specialty-chapter-detail-hero__interior .wrapper,
.specialty-chapter-detail-hero__interior .modal-carousel__details,
.specialty-chapter-detail-hero__interior body.specialty-chapter-detail-page .text-block__container,
body.specialty-chapter-detail-page .specialty-chapter-detail-hero__interior .text-block__container,
.specialty-chapter-detail-hero__interior .specialty-chapter-detail-page.grid-debugger .text-block__container,
.specialty-chapter-detail-page.grid-debugger .specialty-chapter-detail-hero__interior .text-block__container,
.specialty-chapter-detail-hero__interior .youtube-transcript__wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%
}

@media screen and (min-width: 768px) {
    .specialty-chapter-detail-hero__interior {
        position: relative
    }
}

@media screen and (min-width: 980px) {
    .specialty-chapter-detail-hero__interior {
        padding-top: 60px;
        position: absolute
    }
}

.specialty-chapter-detail-hero__copy-container {
    margin-bottom: 5px;
    position: relative;
    -ms-flex-order: 1;
    order: 1
}

.specialty-chapter-detail-hero__copy-container:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    width: 0;
    height: 100%;
    border-left: 3px solid #c6c6c6;
    transform: skewX(-39deg)
}

@media screen and (min-width: 768px) {
    .specialty-chapter-detail-hero__copy-container:before {
        left: 50%
    }
}

@media screen and (min-width: 768px) {
    .specialty-chapter-detail-hero__copy-container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%
    }

    .specialty-chapter-detail-hero__copy-container:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 768px) {
    .specialty-chapter-detail-hero__copy-container {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        position: relative
    }
}

@media screen and (min-width: 980px) {
    .specialty-chapter-detail-hero__copy-container {
        -ms-flex-item-align: start;
        align-self: flex-start;
        -ms-flex-order: 0;
        order: 0
    }
}

.specialty-chapter-detail-hero__model-name {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-size: 13px;
    color: #393939;
    margin-bottom: 25px;
    text-transform: uppercase
}

.specialty-chapter-detail-hero__model-name:before {
    content: "\25C6";
    color: #eb0000
}

@media screen and (min-width: 768px) {
    .specialty-chapter-detail-hero__model-name {
        margin-bottom: 0;
        font-size: 13px;
        cursor: pointer
    }
}

.specialty-chapter-detail-hero__model-details {
    -ms-flex-order: 0;
    order: 0;
    text-align: center;
    position: relative
}

@media screen and (min-width: 980px) {
    .specialty-chapter-detail-hero__model-details {
        -ms-flex-order: 1;
        order: 1;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.specialty-chapter-detail-hero__model-stats {
    background-color: rgba(0, 0, 0, 0.75);
    top: 50px;
    color: #fff;
    font-size: 14px;
    margin-left: -12px;
    transition: opacity 0.2s ease-out;
    position: absolute;
    opacity: 0;
    width: calc(100% + 24px)
}

.specialty-chapter-detail-hero__model-stats--active {
    opacity: 1
}

.specialty-chapter-detail-hero__model-stats:after {
    background-color: #717171;
    content: "";
    display: block;
    height: 15px;
    position: absolute;
    top: -25px;
    left: 50%;
    width: 1px
}

@media screen and (min-width: 980px) {
    .specialty-chapter-detail-hero__model-stats:after {
        top: 65px
    }
}

@media screen and (min-width: 768px) {
    .specialty-chapter-detail-hero__model-stats {
        width: calc(100% + 64px);
        margin-left: -32px
    }
}

@media screen and (min-width: 980px) {
    .specialty-chapter-detail-hero__model-stats {
        width: 510px;
        height: 55px;
        margin: 0;
        top: auto;
        left: calc(50% - 255px);
        bottom: 50px
    }
}

.specialty-chapter-detail-hero__model-stats-list {
    padding: 5px 0
}

@media screen and (min-width: 980px) {
    .specialty-chapter-detail-hero__model-stats-list {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }
}

.specialty-chapter-detail-hero__model-stats-details {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 200px;
    height: 45px;
    padding: 5px 0;
    position: relative;
    left: 50%;
    transform: translateX(-65px)
}

@media only print {
    .specialty-chapter-detail-hero__model-stats-details {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.specialty-chapter-detail-hero__model-stats-details .icon-mb {
    width: 35px;
    margin-right: 30px
}

@media screen and (min-width: 980px) {
    .specialty-chapter-detail-hero__model-stats-details .icon-mb {
        width: auto;
        margin-right: 20px
    }
}

.specialty-chapter-detail-hero__model-stats-details .disclaimer__marker {
    color: #eb0000
}

.specialty-chapter-detail-hero__model-stats-details--horsepower-icon {
    font-size: 34px
}

.specialty-chapter-detail-hero__model-stats-details--horsepower-icon:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%
}

.specialty-chapter-detail-hero__model-stats-details--acceleration-icon {
    font-size: 18px
}

.specialty-chapter-detail-hero__model-stats-details--acceleration-icon:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%
}

.specialty-chapter-detail-hero__model-stats-details--acceleration-icon:after {
    content: "0 - 60";
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    line-height: 1;
    display: block;
    margin-top: 3px
}

.specialty-chapter-detail-hero__model-stats-details--torque-icon {
    font-size: 25px
}

.specialty-chapter-detail-hero__model-stats-details--torque-icon:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%
}

@media screen and (min-width: 980px) {
    .specialty-chapter-detail-hero__model-stats-details {
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        padding-left: 0;
        width: auto;
        left: 0;
        transform: none
    }
}

@media screen and (min-width: 980px) {

    .specialty-chapter-detail-hero__model-stats-details:nth-child(2):before,
    .specialty-chapter-detail-hero__model-stats-details:nth-child(2):after {
        content: "";
        display: block;
        width: 0;
        height: 13px;
        border-left: 1px solid #fff;
        position: absolute;
        top: 50%;
        transform: translateY(-50%) skewX(-39deg)
    }

    .specialty-chapter-detail-hero__model-stats-details:nth-child(2):before {
        left: -30px
    }

    .specialty-chapter-detail-hero__model-stats-details:nth-child(2):after {
        right: -30px
    }
}

.specialty-chapter-detail-hero__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 46px;
    line-height: 46px;
    font-weight: 400;
    font-style: italic;
    font-weight: 200;
    text-align: center;
    padding: 25px 0 40px;
    margin: 0;
    position: relative
}

@media screen and (min-width: 768px),
only print {
    .specialty-chapter-detail-hero__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 64px;
        line-height: 64px;
        font-weight: 400;
        font-style: italic
    }
}

@media screen and (min-width: 768px) {
    .specialty-chapter-detail-hero__heading {
        font-weight: 200;
        padding: 45px 0 50px
    }
}

.timeline-hero {
    color: #fff
}

.timeline-hero__scroll-to-begin {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 150px;
    text-align: center
}

.timeline-hero__btn-scroll {
    text-transform: uppercase;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    color: #e3e3e3;
    font-weight: 700;
    margin-bottom: 10px
}

@media only print {
    .timeline-hero__btn-scroll {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.timeline-hero__line-scroll {
    height: 25px;
    width: 1px;
    background: #fff;
    margin: 0 auto
}

.timeline-hero .multimedia-container .fixed-hero__video-container {
    background: #000
}

.timeline-hero .multimedia-container .fixed-hero__video-container video {
    min-width: 100%;
    min-height: calc(100vh - 60px)
}

@media screen and (min-width: 768px) {
    .timeline-hero .multimedia-container .fixed-hero__video-container video {
        min-height: calc(100vh - 80px)
    }
}

.timeline-hero .multimedia-container .fixed-hero__video-container.fixed-height video {
    min-height: auto;
    width: 100%
}

.timeline-hero .multimedia-container .fixed-hero__video-container .timeline-video-large {
    display: none
}

@media screen and (min-width: 768px) {
    .timeline-hero .multimedia-container .fixed-hero__video-container .timeline-video-large {
        display: block
    }
}

.timeline-hero .multimedia-container .fixed-hero__video-container .timeline-video-small {
    display: block
}

@media screen and (min-width: 768px) {
    .timeline-hero .multimedia-container .fixed-hero__video-container .timeline-video-small {
        display: none
    }
}

.timeline-hero .multimedia-container .fixed-hero__video-container.video-large-only .timeline-video-large {
    display: block
}

.timeline-hero .fixed-hero__image-container img {
    min-width: 100%;
    min-height: calc(100vh - 60px)
}

@media screen and (min-width: 768px) {
    .timeline-hero .fixed-hero__image-container img {
        min-height: calc(100vh - 80px)
    }
}

.timeline-hero .fixed-hero__image-container.fixed-height img {
    min-height: auto;
    width: 100%
}

.timeline-hero .fixed-hero__interior {
    padding: 0;
    bottom: 20%;
    top: auto;
    position: absolute
}

@media screen and (max-width: 767px) {
    .timeline-hero .fixed-hero__interior {
        width: 100%
    }
}

.timeline-hero .fixed-hero__eyebrow {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    font-weight: 700
}

@media only print {
    .timeline-hero .fixed-hero__eyebrow {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.timeline-hero .fixed-hero__heading {
    font-size: 64px;
    color: #fff;
    line-height: 64px;
    margin-bottom: 30px
}

@media screen and (min-width: 768px) {
    .timeline-hero .fixed-hero__heading {
        max-width: 400px
    }
}

.timeline-hero .fixed-hero__sub-heading {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    letter-spacing: 0
}

@media only print {
    .timeline-hero .fixed-hero__sub-heading {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.timeline-hero .fixed-hero__copy-container {
    width: 100%
}

@media screen and (min-width: 768px) {
    .timeline-hero .fixed-hero__copy-container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 40.29137%
    }

    .timeline-hero .fixed-hero__copy-container:last-child {
        margin-right: 0
    }
}

.timeline-hero.timeline-hero--author .multimedia-container .fixed-hero__image-container img {
    min-height: 300px
}

.timeline-hero.timeline-hero--author .multimedia-container .fixed-hero__video-container video {
    min-height: 300px
}

@media screen and (min-width: 768px) {
    .timeline-hero.timeline-hero--author .multimedia-container .fixed-hero__image-container img {
        min-height: 300px
    }

    .timeline-hero.timeline-hero--author .multimedia-container .fixed-hero__video-container video {
        min-height: 300px
    }
}

.full-height-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    transition: height 0.15s linear
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .full-height-hero {
        height: auto;
        min-height: 100vh;
        line-height: 0
    }
}

@media screen and (min-width: 980px) {
    .full-height-hero {
        transition: none
    }
}

.aem-editorial .full-height-hero,
.aem-preview .full-height-hero {
    height: 730px
}

.full-height-hero__picture {
    position: relative;
    left: 50%;
    height: 100%
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .full-height-hero__picture {
        display: block !important;
        position: static;
        left: 0
    }
}

@media screen and (min-width: 980px) {
    .full-height-hero__picture--width {
        display: block !important
    }
}

.full-height-hero__video {
    position: relative;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-50%)
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .full-height-hero__video {
        width: 100%;
        height: auto;
        transform: none;
        left: 0
    }
}

.full-height-hero__video--width {
    width: 100%;
    height: auto
}

.full-height-hero__image {
    height: 100%;
    transform: translateX(-50%)
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .full-height-hero__image {
        height: auto;
        width: 100%;
        transform: none
    }
}

@media screen and (min-width: 768px) {
    .full-height-hero__image--width {
        width: 100%;
        height: auto
    }
}

.full-height-hero__image-container,
.full-height-hero__video-container {
    width: auto;
    min-width: 100%;
    height: 100%;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%)
}

@media screen and (max-width: 767px) and (orientation: landscape) {

    .full-height-hero__image-container,
    .full-height-hero__video-container {
        min-width: auto;
        max-width: 100%;
        transform: none;
        left: 0;
        top: 0
    }
}

@media screen and (min-width: 980px) {

    .full-height-hero__image-container--width,
    .full-height-hero__video-container--width {
        height: auto;
        min-height: 100%
    }
}

.full-height-hero__video {
    background-color: #fff
}

.full-height-hero__image-container {
    background-color: #fff
}

.full-height-hero__video-container {
    background-color: #000
}

.full-height-hero__video-container .html5-video-control__button-wrapper {
    top: 80px;
    bottom: auto
}

@media screen and (min-width: 980px) {
    .full-height-hero__video-container .html5-video-control__button-wrapper {
        top: 100px
    }
}

.full-height-hero__interior {
    width: 100vw;
    position: absolute;
    left: 50%;
    top: 85px;
    transform: translateX(-50%);
    pointer-events: none
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .full-height-hero__interior {
        padding: 75px 0 30px;
        top: 0;
        left: 0;
        transform: none
    }
}

@media screen and (min-width: 768px) {
    .full-height-hero__interior {
        top: 120px
    }

    .full-height-hero__interior .hero-flipbook__counter-label {
        margin-left: calc(100% - 25px);
        margin-bottom: 35px
    }
}

@media screen and (min-width: 980px) {
    .full-height-hero__interior {
        padding-top: 30px
    }

    .full-height-hero__interior .hero-flipbook__counter-label {
        margin-bottom: 25px
    }
}

.full-height-hero__interior a,
.full-height-hero__interior button {
    pointer-events: auto
}

.full-height-hero__button-container :first-child {
    margin-bottom: 10px;
    margin-right: 20px
}

.full-height-hero__copy-container {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 73.14426%;
    float: none;
    overflow: hidden;
    position: relative;
    top: 0
}

.full-height-hero__copy-container:last-child {
    margin-right: 0
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .full-height-hero__copy-container {
        margin-top: 0 !important
    }
}

@media screen and (min-width: 768px) {
    .full-height-hero__copy-container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%
    }

    .full-height-hero__copy-container:last-child {
        margin-right: 0
    }

    .full-height-hero__copy-container.left {
        text-align: left
    }

    .full-height-hero__copy-container.left .hero-flipbook__counter-label {
        margin-left: 25px
    }

    .full-height-hero__copy-container.right {
        float: right;
        text-align: right
    }

    .full-height-hero__copy-container.right .hero-flipbook__counter-label {
        margin-left: calc(100% - 25px)
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 979px) {
    .full-height-hero__copy-container.right {
        margin-right: 30px
    }
}

@media screen and (min-width: 768px) {
    .full-height-hero__copy-container.right .button {
        margin: 0 0 0 20px
    }
}

.full-height-hero__copy-container.dark {
    color: #000
}

.full-height-hero__copy-container.dark .disclaimer__legend-reference,
.full-height-hero__copy-container.dark .disclaimer__marker {
    color: #176db7
}

.full-height-hero__copy-container.light {
    color: #fff
}

.full-height-hero__copy-container.light .disclaimer__legend-reference,
.full-height-hero__copy-container.light .disclaimer__marker {
    color: #fff
}

.full-height-hero__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 10px
}

@media screen and (min-width: 980px),
only print {
    .full-height-hero__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.full-height-hero__sub-heading {
    font-family: "Arial", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px
}

@media screen and (min-width: 768px) {
    .full-height-hero__sub-heading {
        margin-bottom: 30px
    }

    .right .full-height-hero__sub-heading {
        margin-right: 0;
        width: auto
    }
}

.color-picker-hero__msrp {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700
}

.color-picker-hero__vehicle {
    width: 700px;
    position: absolute;
    top: calc(50% - 75px);
    left: 50%;
    transform: translateX(-50%)
}

@media screen and (max-height: 700px) and (orientation: portrait) {
    .color-picker-hero__vehicle {
        top: calc(50% - 100px)
    }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .color-picker-hero__vehicle {
        top: calc(50% - 100px)
    }
}

@media screen and (min-width: 768px) {
    .color-picker-hero__vehicle {
        width: 890px;
        top: calc(50% - 150px)
    }
}

@media screen and (min-width: 980px) {
    .color-picker-hero__vehicle {
        width: 1250px;
        top: calc(50% - 230px)
    }
}

@media screen and (min-width: 1440px) {
    .color-picker-hero__vehicle {
        width: 1580px;
        top: calc(50% - 400px)
    }
}

.color-picker-hero__vehicle .loading-spinner,
.color-picker-hero__vehicle .loading-message__spinner,
.color-picker-hero__vehicle .lazy-loader--has-spinner:not(.lazy-loader--loaded) {
    position: absolute;
    left: 50%;
    top: 125px
}

@media screen and (min-width: 768px) {

    .color-picker-hero__vehicle .loading-spinner,
    .color-picker-hero__vehicle .loading-message__spinner,
    .color-picker-hero__vehicle .lazy-loader--has-spinner:not(.lazy-loader--loaded) {
        left: 57%;
        top: 250px
    }
}

@media screen and (min-width: 980px) {

    .color-picker-hero__vehicle .loading-spinner,
    .color-picker-hero__vehicle .loading-message__spinner,
    .color-picker-hero__vehicle .lazy-loader--has-spinner:not(.lazy-loader--loaded) {
        top: 340px
    }
}

@media screen and (min-width: 1440px) {

    .color-picker-hero__vehicle .loading-spinner,
    .color-picker-hero__vehicle .loading-message__spinner,
    .color-picker-hero__vehicle .lazy-loader--has-spinner:not(.lazy-loader--loaded) {
        left: 60%;
        top: 420px
    }
}

.color-picker-hero__picture {
    width: 700px;
    display: block;
    transform: translateX(-2%)
}

@media screen and (min-width: 768px) {
    .color-picker-hero__picture {
        width: 890px;
        transform: translateX(5%)
    }
}

@media screen and (min-width: 980px) {
    .color-picker-hero__picture {
        width: 1250px
    }
}

@media screen and (min-width: 1440px) {
    .color-picker-hero__picture {
        width: 1580px;
        transform: translateX(7%)
    }
}

.color-picker-hero__image {
    width: 100%;
    height: auto
}

.color-picker-hero__buttons-container {
    position: absolute;
    top: calc(var(--vhVar, vh) * 100 - 40px);
    left: 50%;
    text-align: center;
    transform: translate3d(-50%, -100%, 0);
    transition: top 0.2s ease-out
}

.color-picker-hero__buttons-container.dark {
    color: #000
}

.color-picker-hero__buttons-container.light {
    color: #fff
}

@media screen and (max-height: 700px) and (orientation: portrait) {
    .color-picker-hero__buttons-container {
        top: calc(var(--vhVar, vh) * 100 - 20px)
    }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .color-picker-hero__buttons-container {
        padding-bottom: 30px;
        position: relative;
        transform: none;
        left: 0;
        top: auto;
        bottom: auto
    }
}

@media screen and (min-width: 768px) {
    .color-picker-hero__buttons-container {
        text-align: left;
        position: relative;
        transform: none;
        left: 0;
        top: auto;
        bottom: auto
    }
}

@media screen and (min-width: 768px) {
    .color-picker-hero__buttons-interior-wrapper {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .color-picker-hero__buttons-interior-wrapper:last-child {
        margin-right: 0
    }
}

.color-picker-hero__colors {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 5px
}

@media screen and (min-width: 768px) {
    .color-picker-hero__colors {
        -ms-flex-pack: left;
        justify-content: left
    }
}

.color-picker-hero__colors-item {
    margin-right: 5px
}

.color-picker-hero__colors-item:last-child {
    margin-right: 0
}

.color-picker-hero__colors-item-btn {
    width: 60px;
    height: 30px;
    border: 2px solid #fff;
    cursor: pointer
}

.color-picker-hero__colors-item-btn--selected {
    border-color: #176db7
}

.color-picker-hero__colors-item-picture {
    width: 100%;
    height: 100%
}

.color-picker-hero__colors-item-img {
    width: 100%;
    height: 100%
}

.color-picker-hero__disclaimer {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    display: block
}

@media screen and (min-width: 768px) {
    .color-picker-hero__disclaimer {
        margin-bottom: 35px
    }
}

@media screen and (min-width: 768px) {
    .color-picker-hero__buttons {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: start;
        align-items: start;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media screen and (min-width: 1440px) {
    .color-picker-hero__buttons {
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.color-picker-hero__button--build {
    margin-right: 20px
}

@media screen and (min-width: 768px) {
    .color-picker-hero__button--build {
        margin-bottom: 10px
    }
}

.full-height-hero__copy-container--color-picker {
    width: 85%
}

.full-height-hero__image-container--color-picker {
    width: 100%;
    background: transparent no-repeat center calc(50% - 40px);
    background-size: 900px
}

@media screen and (max-height: 700px) and (orientation: portrait) {
    .full-height-hero__image-container--color-picker {
        background-position: center calc(50% - 60px)
    }
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .full-height-hero__image-container--color-picker {
        position: absolute
    }
}

@media screen and (min-width: 768px) {
    .full-height-hero__image-container--color-picker {
        background-position: center center;
        background-size: 1050px;
        position: absolute
    }
}

@media screen and (min-width: 980px) {
    .full-height-hero__image-container--color-picker {
        background-size: 1500px
    }
}

@media screen and (min-width: 1440px) {
    .full-height-hero__image-container--color-picker {
        background-size: 2500px
    }
}

.full-height-hero__sub-heading--color-picker {
    margin-bottom: 15px
}

.full-height-hero__interior--color-picker {
    top: 35px;
    z-index: 1
}

@media screen and (max-width: 767px) and (orientation: landscape) {
    .full-height-hero__interior--color-picker {
        padding-bottom: 0;
        margin-bottom: 130px;
        position: relative;
        top: 0
    }
}

@media screen and (min-width: 768px) {
    .full-height-hero__interior--color-picker {
        text-align: left;
        margin-top: 110px;
        margin-bottom: 40px;
        position: relative;
        top: 0;
        float: none
    }
}

@media screen and (min-width: 980px) {
    .full-height-hero__interior--color-picker {
        margin-top: 120px
    }
}

.full-height-hero__copy-container--color-picker {
    width: 85%
}

@media screen and (min-width: 768px) {
    .full-height-hero__copy-container--color-picker {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .full-height-hero__copy-container--color-picker:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 768px) {
    .full-height-hero__copy-container--color-picker .hero-flipbook__counter-label {
        margin-left: 25px
    }
}

.fixed-width-media__heading--above {
    text-align: center
}

body[data-theme="theme-page"] .fixed-width-media__heading,
[data-theme="theme-page"].grid-debugger .fixed-width-media__heading {
    text-align: center
}

.theme-page-component .fixed-width-media__heading {
    text-align: center
}

.fixed-width-media__copy-container {
    margin-top: 20px
}

.fixed-width-media__spacer {
    display: none
}

@media screen and (min-width: 768px) {
    .fixed-width-media__spacer {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 14.70196%;
        display: block
    }

    .fixed-width-media__spacer:last-child {
        margin-right: 0
    }

    body[data-theme="theme-page"] .fixed-width-media__spacer,
    [data-theme="theme-page"].grid-debugger .fixed-width-media__spacer {
        display: none
    }

    .theme-page-component .fixed-width-media__spacer {
        display: none
    }
}

.fixed-width-media__spacer:before {
    content: "";
    border-top: 1px solid #c6c6c6;
    display: block;
    margin-top: 8px;
    width: 30px
}

@media screen and (min-width: 768px) {
    .fixed-width-media__text {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 74.41059%
    }

    .fixed-width-media__text:last-child {
        margin-right: 0
    }

    body[data-theme="theme-page"] .fixed-width-media__text,
    [data-theme="theme-page"].grid-debugger .fixed-width-media__text {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%
    }

    body[data-theme="theme-page"] .fixed-width-media__text:last-child,
    [data-theme="theme-page"].grid-debugger .fixed-width-media__text:last-child {
        margin-right: 0
    }

    .theme-page-component .fixed-width-media__text {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 100%
    }

    .theme-page-component .fixed-width-media__text:last-child {
        margin-right: 0
    }
}

body[data-theme="theme-page"] .fixed-width-media__text,
[data-theme="theme-page"].grid-debugger .fixed-width-media__text {
    color: #fff;
    text-align: center
}

.theme-page-component .fixed-width-media__text {
    color: #fff;
    text-align: center
}

.fixed-width-media__title {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 20px
}

@media screen and (min-width: 980px),
only print {
    .fixed-width-media__title {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

.fixed-width-media__body {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400
}

@media only print {
    .fixed-width-media__body {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

body[data-variant=ondisplay] .fixed-width-media__body,
[data-variant=ondisplay].grid-debugger .fixed-width-media__body {
    font-family: "Arial", sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400
}

body[data-theme="theme-page"] .fixed-width-media__body,
[data-theme="theme-page"].grid-debugger .fixed-width-media__body {
    margin-bottom: 20px
}

.theme-page-component .fixed-width-media__body {
    margin-bottom: 20px
}

body.corporate-page .fixed-width-media__copy-container,
.corporate-page.grid-debugger .fixed-width-media__copy-container {
    margin-top: 10px
}

@media screen and (min-width: 768px) {

    body.corporate-page .fixed-width-media__copy-container,
    .corporate-page.grid-debugger .fixed-width-media__copy-container {
        margin-top: 40px
    }
}

body.corporate-page .fixed-width-media__title,
.corporate-page.grid-debugger .fixed-width-media__title {
    margin-bottom: 5px
}

body.corporate-page .fixed-width-media__body,
.corporate-page.grid-debugger .fixed-width-media__body {
    margin-bottom: 5px
}

@media screen and (min-width: 768px) {

    body.corporate-page .fixed-width-media__body,
    .corporate-page.grid-debugger .fixed-width-media__body {
        margin-bottom: 10px
    }
}

body.class-page .fixed-width-media__copy-container,
.class-page.grid-debugger .fixed-width-media__copy-container {
    margin-top: 10px
}

@media screen and (min-width: 768px) {

    body.class-page .fixed-width-media__copy-container,
    .class-page.grid-debugger .fixed-width-media__copy-container {
        margin-top: 40px
    }
}

body.class-page .fixed-width-media__title,
.class-page.grid-debugger .fixed-width-media__title {
    margin-bottom: 5px
}

body.class-page .fixed-width-media__body,
.class-page.grid-debugger .fixed-width-media__body {
    margin-bottom: 5px
}

@media screen and (min-width: 768px) {

    body.class-page .fixed-width-media__body,
    .class-page.grid-debugger .fixed-width-media__body {
        margin-bottom: 10px
    }
}

body.bodystyle-landing-page .fixed-width-media__copy-container,
.bodystyle-landing-page.grid-debugger .fixed-width-media__copy-container {
    margin-top: 10px
}

@media screen and (min-width: 768px) {

    body.bodystyle-landing-page .fixed-width-media__copy-container,
    .bodystyle-landing-page.grid-debugger .fixed-width-media__copy-container {
        margin-top: 40px
    }
}

body.bodystyle-landing-page .fixed-width-media__title,
.bodystyle-landing-page.grid-debugger .fixed-width-media__title {
    margin-bottom: 5px
}

body.bodystyle-landing-page .fixed-width-media__body,
.bodystyle-landing-page.grid-debugger .fixed-width-media__body {
    margin-bottom: 5px
}

@media screen and (min-width: 768px) {

    body.bodystyle-landing-page .fixed-width-media__body,
    .bodystyle-landing-page.grid-debugger .fixed-width-media__body {
        margin-bottom: 10px
    }
}

body.corporate-page .fixed-width-media__title,
.corporate-page.grid-debugger .fixed-width-media__title {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-size: 14px
}

@media only print {

    body.corporate-page .fixed-width-media__title,
    .corporate-page.grid-debugger .fixed-width-media__title {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

body.bodystyle-landing-page .fixed-width-media__title,
.bodystyle-landing-page.grid-debugger .fixed-width-media__title {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-size: 14px
}

@media only print {

    body.bodystyle-landing-page .fixed-width-media__title,
    .bodystyle-landing-page.grid-debugger .fixed-width-media__title {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

body[data-editorial="true"] .fixed-width-media__copy-container,
[data-editorial="true"].grid-debugger .fixed-width-media__copy-container {
    margin-top: 0
}

body[data-theme="theme-page"] .fixed-width-media,
[data-theme="theme-page"].grid-debugger .fixed-width-media {
    background-color: black
}

.theme-page-component .fixed-width-media {
    background-color: black
}

@media screen and (min-width: 980px) {

    body.specialty-chapter-detail-page .fixed-width-media-rich-text,
    .specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto
    }

    body.specialty-chapter-detail-page .fixed-width-media-rich-text::after,
    .specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text::after {
        clear: both;
        content: '';
        display: block
    }
}

@media screen and (min-width: 768px) {

    body.specialty-chapter-detail-page .fixed-width-media-rich-text__inner,
    .specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__inner {
        margin: 0 15px
    }
}

@media screen and (min-width: 980px) {

    body.specialty-chapter-detail-page .fixed-width-media-rich-text__inner,
    .specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__inner {
        margin: 0;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 17.05961%
    }

    body.specialty-chapter-detail-page .fixed-width-media-rich-text__inner:last-child,
    .specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__inner:last-child {
        margin-right: 0
    }
}

body.specialty-chapter-detail-page .fixed-width-media-rich-text__copy-container,
.specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__copy-container {
    margin-top: 25px
}

@media screen and (min-width: 768px) {

    body.specialty-chapter-detail-page .fixed-width-media-rich-text__copy-container,
    .specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__copy-container {
        margin-top: 30px
    }
}

body.specialty-chapter-detail-page .fixed-width-media-rich-text__spacer,
.specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__spacer {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 14.70196%
}

body.specialty-chapter-detail-page .fixed-width-media-rich-text__spacer:last-child,
.specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__spacer:last-child {
    margin-right: 0
}

body.specialty-chapter-detail-page .fixed-width-media-rich-text__spacer:before,
.specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__spacer:before {
    border-top-color: #999;
    margin-left: 20px;
    width: 20px
}

@media screen and (min-width: 768px) {

    body.specialty-chapter-detail-page .fixed-width-media-rich-text__spacer:before,
    .specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__spacer:before {
        margin-left: 0;
        width: 30px
    }
}

body.specialty-chapter-detail-page .fixed-width-media-rich-text__text,
.specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__text {
    color: #717171;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 74.41059%
}

body.specialty-chapter-detail-page .fixed-width-media-rich-text__text:last-child,
.specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__text:last-child {
    margin-right: 0
}

body.specialty-chapter-detail-page .fixed-width-media-rich-text__title,
.specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__title {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 10px
}

@media screen and (min-width: 768px) {

    body.specialty-chapter-detail-page .fixed-width-media-rich-text__title,
    .specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text__title {
        margin-bottom: 15px
    }
}

body.specialty-chapter-detail-page .fixed-width-media-rich-text .module-separator,
.specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text .module-separator {
    padding-bottom: 0
}

body.specialty-chapter-detail-page .fixed-width-media-rich-text a,
.specialty-chapter-detail-page.grid-debugger .fixed-width-media-rich-text a {
    color: #eb0000
}

.wrapper .image-text-promo,
.modal-carousel__details .image-text-promo,
body.specialty-chapter-detail-page .text-block__container .image-text-promo,
.specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo,
.youtube-transcript__wrapper .image-text-promo {
    width: 100vw;
    left: calc(50% - 50vw);
    position: relative
}

.wrapper .image-text-promo .wrapper,
.modal-carousel__details .image-text-promo .wrapper,
body.specialty-chapter-detail-page .text-block__container .image-text-promo .wrapper,
.specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .wrapper,
.youtube-transcript__wrapper .image-text-promo .wrapper,
.wrapper .image-text-promo .modal-carousel__details,
.modal-carousel__details .image-text-promo .modal-carousel__details,
body.specialty-chapter-detail-page .text-block__container .image-text-promo .modal-carousel__details,
.specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .modal-carousel__details,
.youtube-transcript__wrapper .image-text-promo .modal-carousel__details,
.wrapper .image-text-promo body.specialty-chapter-detail-page .text-block__container,
body.specialty-chapter-detail-page .wrapper .image-text-promo .text-block__container,
.modal-carousel__details .image-text-promo body.specialty-chapter-detail-page .text-block__container,
body.specialty-chapter-detail-page .modal-carousel__details .image-text-promo .text-block__container,
body.specialty-chapter-detail-page .text-block__container .image-text-promo .text-block__container,
.youtube-transcript__wrapper .image-text-promo body.specialty-chapter-detail-page .text-block__container,
body.specialty-chapter-detail-page .youtube-transcript__wrapper .image-text-promo .text-block__container,
.wrapper .image-text-promo .specialty-chapter-detail-page.grid-debugger .text-block__container,
.specialty-chapter-detail-page.grid-debugger .wrapper .image-text-promo .text-block__container,
.modal-carousel__details .image-text-promo .specialty-chapter-detail-page.grid-debugger .text-block__container,
.specialty-chapter-detail-page.grid-debugger .modal-carousel__details .image-text-promo .text-block__container,
.specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .text-block__container,
.youtube-transcript__wrapper .image-text-promo .specialty-chapter-detail-page.grid-debugger .text-block__container,
.specialty-chapter-detail-page.grid-debugger .youtube-transcript__wrapper .image-text-promo .text-block__container,
.wrapper .image-text-promo .youtube-transcript__wrapper,
.modal-carousel__details .image-text-promo .youtube-transcript__wrapper,
body.specialty-chapter-detail-page .text-block__container .image-text-promo .youtube-transcript__wrapper,
.specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .youtube-transcript__wrapper,
.youtube-transcript__wrapper .image-text-promo .youtube-transcript__wrapper {
    width: 93.4375%
}

@media screen and (min-width: 768px) {

    .wrapper .image-text-promo .wrapper,
    .modal-carousel__details .image-text-promo .wrapper,
    body.specialty-chapter-detail-page .text-block__container .image-text-promo .wrapper,
    .specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .wrapper,
    .youtube-transcript__wrapper .image-text-promo .wrapper,
    .wrapper .image-text-promo .modal-carousel__details,
    .modal-carousel__details .image-text-promo .modal-carousel__details,
    body.specialty-chapter-detail-page .text-block__container .image-text-promo .modal-carousel__details,
    .specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .modal-carousel__details,
    .youtube-transcript__wrapper .image-text-promo .modal-carousel__details,
    .wrapper .image-text-promo body.specialty-chapter-detail-page .text-block__container,
    body.specialty-chapter-detail-page .wrapper .image-text-promo .text-block__container,
    .modal-carousel__details .image-text-promo body.specialty-chapter-detail-page .text-block__container,
    body.specialty-chapter-detail-page .modal-carousel__details .image-text-promo .text-block__container,
    body.specialty-chapter-detail-page .text-block__container .image-text-promo .text-block__container,
    .youtube-transcript__wrapper .image-text-promo body.specialty-chapter-detail-page .text-block__container,
    body.specialty-chapter-detail-page .youtube-transcript__wrapper .image-text-promo .text-block__container,
    .wrapper .image-text-promo .specialty-chapter-detail-page.grid-debugger .text-block__container,
    .specialty-chapter-detail-page.grid-debugger .wrapper .image-text-promo .text-block__container,
    .modal-carousel__details .image-text-promo .specialty-chapter-detail-page.grid-debugger .text-block__container,
    .specialty-chapter-detail-page.grid-debugger .modal-carousel__details .image-text-promo .text-block__container,
    .specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .text-block__container,
    .youtube-transcript__wrapper .image-text-promo .specialty-chapter-detail-page.grid-debugger .text-block__container,
    .specialty-chapter-detail-page.grid-debugger .youtube-transcript__wrapper .image-text-promo .text-block__container,
    .wrapper .image-text-promo .youtube-transcript__wrapper,
    .modal-carousel__details .image-text-promo .youtube-transcript__wrapper,
    body.specialty-chapter-detail-page .text-block__container .image-text-promo .youtube-transcript__wrapper,
    .specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .youtube-transcript__wrapper,
    .youtube-transcript__wrapper .image-text-promo .youtube-transcript__wrapper {
        width: 91.14583%;
        margin: 0 auto
    }
}

@media screen and (min-width: 980px) {

    .wrapper .image-text-promo .wrapper,
    .modal-carousel__details .image-text-promo .wrapper,
    body.specialty-chapter-detail-page .text-block__container .image-text-promo .wrapper,
    .specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .wrapper,
    .youtube-transcript__wrapper .image-text-promo .wrapper,
    .wrapper .image-text-promo .modal-carousel__details,
    .modal-carousel__details .image-text-promo .modal-carousel__details,
    body.specialty-chapter-detail-page .text-block__container .image-text-promo .modal-carousel__details,
    .specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .modal-carousel__details,
    .youtube-transcript__wrapper .image-text-promo .modal-carousel__details,
    .wrapper .image-text-promo body.specialty-chapter-detail-page .text-block__container,
    body.specialty-chapter-detail-page .wrapper .image-text-promo .text-block__container,
    .modal-carousel__details .image-text-promo body.specialty-chapter-detail-page .text-block__container,
    body.specialty-chapter-detail-page .modal-carousel__details .image-text-promo .text-block__container,
    body.specialty-chapter-detail-page .text-block__container .image-text-promo .text-block__container,
    .youtube-transcript__wrapper .image-text-promo body.specialty-chapter-detail-page .text-block__container,
    body.specialty-chapter-detail-page .youtube-transcript__wrapper .image-text-promo .text-block__container,
    .wrapper .image-text-promo .specialty-chapter-detail-page.grid-debugger .text-block__container,
    .specialty-chapter-detail-page.grid-debugger .wrapper .image-text-promo .text-block__container,
    .modal-carousel__details .image-text-promo .specialty-chapter-detail-page.grid-debugger .text-block__container,
    .specialty-chapter-detail-page.grid-debugger .modal-carousel__details .image-text-promo .text-block__container,
    .specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .text-block__container,
    .youtube-transcript__wrapper .image-text-promo .specialty-chapter-detail-page.grid-debugger .text-block__container,
    .specialty-chapter-detail-page.grid-debugger .youtube-transcript__wrapper .image-text-promo .text-block__container,
    .wrapper .image-text-promo .youtube-transcript__wrapper,
    .modal-carousel__details .image-text-promo .youtube-transcript__wrapper,
    body.specialty-chapter-detail-page .text-block__container .image-text-promo .youtube-transcript__wrapper,
    .specialty-chapter-detail-page.grid-debugger .text-block__container .image-text-promo .youtube-transcript__wrapper,
    .youtube-transcript__wrapper .image-text-promo .youtube-transcript__wrapper {
        width: 95.91837%
    }
}

.image-text-promo__container {
    display: block
}

@media screen and (min-width: 768px) {
    .image-text-promo__container {
        display: -ms-flexbox;
        display: flex
    }
}

.image-text-promo .wrapper,
.image-text-promo .modal-carousel__details,
.image-text-promo body.specialty-chapter-detail-page .text-block__container,
body.specialty-chapter-detail-page .image-text-promo .text-block__container,
.image-text-promo .specialty-chapter-detail-page.grid-debugger .text-block__container,
.specialty-chapter-detail-page.grid-debugger .image-text-promo .text-block__container,
.image-text-promo .youtube-transcript__wrapper {
    padding-top: 40px;
    padding-bottom: 40px
}

@media screen and (min-width: 768px) {

    .image-text-promo .wrapper,
    .image-text-promo .modal-carousel__details,
    .image-text-promo body.specialty-chapter-detail-page .text-block__container,
    body.specialty-chapter-detail-page .image-text-promo .text-block__container,
    .image-text-promo .specialty-chapter-detail-page.grid-debugger .text-block__container,
    .specialty-chapter-detail-page.grid-debugger .image-text-promo .text-block__container,
    .image-text-promo .youtube-transcript__wrapper {
        padding-top: 60px;
        padding-bottom: 60px
    }
}

.image-text-promo--small-image {
    background-color: #f1f1f1
}

@media screen and (min-width: 768px) {
    .image-text-promo__copy-container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        margin-left: -100%
    }

    .image-text-promo__copy-container:last-child {
        margin-right: 0
    }

    .image-text-promo--small-image .image-text-promo__copy-container {
        margin-left: 0%;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%
    }

    .image-text-promo--small-image .image-text-promo__copy-container:last-child {
        margin-right: 0
    }

    .image-text-promo--small-image-right .image-text-promo__copy-container {
        margin-left: -100%
    }
}

.image-text-promo__image-container {
    margin-bottom: 15px
}

@media screen and (min-width: 768px) {
    .image-text-promo__image-container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 34.11922%;
        margin-right: 0;
        margin-bottom: 0
    }

    .image-text-promo__image-container:last-child {
        margin-right: 0
    }

    .image-text-promo--small-image .image-text-promo__image-container {
        margin-left: 0%;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .image-text-promo--small-image .image-text-promo__image-container:last-child {
        margin-right: 0
    }

    .image-text-promo--small-image-right .image-text-promo__image-container {
        margin-left: 68.23843%
    }
}

.image-text-promo__promo-image {
    max-width: 100%;
    display: block
}

.image-text-promo__eyebrow {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #176db7;
    margin-bottom: 15px
}

@media only print {
    .image-text-promo__eyebrow {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

body[data-theme="amg"] .image-text-promo__eyebrow,
[data-theme="amg"].grid-debugger .image-text-promo__eyebrow {
    color: #000
}

.amg-component .image-text-promo__eyebrow {
    color: #000
}

.image-text-promo__logo {
    margin-bottom: 15px
}

.image-text-promo__title {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    margin-bottom: 15px
}

@media screen and (min-width: 980px),
only print {
    .image-text-promo__title {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

body[data-theme="amg"] .image-text-promo__title,
[data-theme="amg"].grid-debugger .image-text-promo__title {
    color: #000
}

.amg-component .image-text-promo__title {
    color: #000
}

.image-text-promo__body {
    margin-bottom: 20px
}

body[data-theme="amg"] .image-text-promo__sub-title,
[data-theme="amg"].grid-debugger .image-text-promo__sub-title {
    color: #000
}

.amg-component .image-text-promo__sub-title {
    color: #000
}

.loading-message {
    margin: 20px 0;
    position: relative;
    text-align: center
}

.loading-message__spinner {
    margin-bottom: 10px
}

.loading-message__text {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #717171
}

@media only print {
    .loading-message__text {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.legal {
    background-color: #fff;
    margin-top: 15px;
    padding-bottom: 15px
}

@media screen and (min-width: 768px) {
    .legal {
        padding-bottom: 20px
    }
}

@media screen and (min-width: 1440px) {
    .legal__wrapper {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: baseline;
        align-items: baseline
    }
}

@media screen and (min-width: 768px) {
    .legal__links-container {
        padding-top: 20px
    }
}

@media screen and (min-width: 1440px) {
    .legal__links-container {
        margin-right: 30px;
        -ms-flex-positive: 1;
        flex-grow: 1;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: baseline;
        align-items: baseline;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

body[data-variant=dealer] .legal__links-container,
[data-variant=dealer].grid-debugger .legal__links-container {
    display: inline-block;
    padding-top: 10px
}

body[data-variant=largeformat] .legal__links-container,
[data-variant=largeformat].grid-debugger .legal__links-container {
    display: inline-block;
    padding-top: 10px
}

body[data-variant=ondisplay] .legal__links-container,
[data-variant=ondisplay].grid-debugger .legal__links-container {
    display: inline-block;
    padding-top: 10px
}

body[data-variant=popup] .legal__links-container,
[data-variant=popup].grid-debugger .legal__links-container {
    display: inline-block;
    padding-top: 10px
}

body[data-variant=wheelstand] .legal__links-container,
[data-variant=wheelstand].grid-debugger .legal__links-container {
    display: inline-block;
    padding-top: 10px
}

.legal__section {
    padding-top: 10px
}

@media screen and (min-width: 768px) {
    .legal__section {
        padding-top: 0
    }
}

@media screen and (min-width: 1440px) {
    .legal__section {
        display: inline-block
    }
}

body[data-variant=ondisplay] .legal__section,
[data-variant=ondisplay].grid-debugger .legal__section {
    pointer-events: none
}

.legal__copyright {
    color: #999
}

.legal__item {
    display: inline-block;
    margin-right: 10px
}

.legal__item:last-child {
    margin-right: 0
}

.legal__link,
.legal__link--static {
    color: #717171;
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400
}

@media screen and (min-width: 980px) {

    .legal__link:focus,
    .legal__link--static:focus {
        animation: none;
        outline: none
    }

    .legal__link:hover,
    .legal__link--static:hover,
    .legal__link:focus,
    .legal__link--static:focus {
        color: #2e7cbe
    }
}

@media screen and (min-width: 980px) {

    .legal__link--static:hover,
    .legal__link--static:focus {
        color: #999
    }
}

.legal__logo {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: 10px
}

@media screen and (min-width: 768px) {
    .legal__logo {
        margin-right: 15px
    }
}

.legal__logo:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 9px;
    color: #000;
    line-height: 9px;
    padding: 5px 15px 0 30px;
    border-right: 1px solid #000
}

@media screen and (min-width: 768px) {
    .legal__logo:after {
        font-size: 11px;
        line-height: 11px;
        padding: 5px 15px 0 40px
    }
}

.legal__logo-img {
    width: 30px;
    height: 30px
}

@media screen and (min-width: 768px) {
    .legal__logo-img {
        width: 40px;
        height: 40px
    }
}

.legal__disclaimer {
    display: inline-block;
    background: #f1f1f1;
    margin-top: 15px;
    padding: 0 5px;
    color: #393939
}

@media screen and (min-width: 768px) {
    .legal__disclaimer {
        margin-top: 10px
    }
}

@media screen and (min-width: 980px) {
    .legal__disclaimer {
        cursor: pointer
    }
}

body[data-variant=dealer] .legal__disclaimer,
[data-variant=dealer].grid-debugger .legal__disclaimer {
    float: right
}

body[data-variant=largeformat] .legal__disclaimer,
[data-variant=largeformat].grid-debugger .legal__disclaimer {
    float: right
}

body[data-variant=ondisplay] .legal__disclaimer,
[data-variant=ondisplay].grid-debugger .legal__disclaimer {
    float: right
}

body[data-variant=popup] .legal__disclaimer,
[data-variant=popup].grid-debugger .legal__disclaimer {
    float: right
}

body[data-variant=wheelstand] .legal__disclaimer,
[data-variant=wheelstand].grid-debugger .legal__disclaimer {
    float: right
}

.legal__disclaimer .icon-mb {
    padding-left: 3px
}

.legal__disclaimer .icon-mb:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%
}

.legal__disclaimer--open {
    color: #2e7cbe
}

.legal__disclaimer--open .icon-mb {
    padding-left: 5px
}

.legal__disclaimer--open .icon-mb:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%
}

.footer--slim .legal__disclaimer {
    margin-top: 0;
    background: #e3e3e3
}

.footer--slim .legal {
    margin-top: 0;
    background: #e3e3e3
}

body[data-theme="amg"] .link_primary,
[data-theme="amg"].grid-debugger .link_primary {
    font-style: italic;
    padding-left: 15px
}

.amg-component .link_primary {
    font-style: italic;
    padding-left: 15px
}

body[data-theme="amg"] .link_primary:before,
[data-theme="amg"].grid-debugger .link_primary:before {
    color: #eb0000
}

.amg-component .link_primary:before {
    color: #eb0000
}

body[data-theme="amg"] .link_primary:hover,
[data-theme="amg"].grid-debugger .link_primary:hover,
body[data-theme="amg"] .link_primary:focus,
[data-theme="amg"].grid-debugger .link_primary:focus {
    color: #f14b4b
}

.amg-component .link_primary:hover,
.amg-component .link_primary:focus {
    color: #f14b4b
}

body.corporate-page .link_primary,
.corporate-page.grid-debugger .link_primary {
    color: #176db7;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    padding: 0
}

body.corporate-page .link_primary:focus,
.corporate-page.grid-debugger .link_primary:focus {
    animation: none;
    outline: none
}

body.corporate-page .link_primary:hover,
.corporate-page.grid-debugger .link_primary:hover,
body.corporate-page .link_primary:focus,
.corporate-page.grid-debugger .link_primary:focus {
    color: #2e7cbe
}

a:hover body.corporate-page .link_primary,
a:hover .corporate-page.grid-debugger .link_primary,
a:focus body.corporate-page .link_primary,
a:focus .corporate-page.grid-debugger .link_primary {
    color: #2e7cbe
}

body.corporate-page .link_primary:before,
.corporate-page.grid-debugger .link_primary:before {
    content: none
}

body[data-theme="amg"] .link_secondary:before,
[data-theme="amg"].grid-debugger .link_secondary:before {
    color: #eb0000
}

.amg-component .link_secondary:before {
    color: #eb0000
}

body[data-theme="maybach"] .link_secondary:before,
[data-theme="maybach"].grid-debugger .link_secondary:before {
    border-color: #00635b
}

.maybach-component .link_secondary:before {
    border-color: #00635b
}

body[data-theme="amg"] .link_secondary:hover,
[data-theme="amg"].grid-debugger .link_secondary:hover,
body[data-theme="amg"] .link_secondary:focus,
[data-theme="amg"].grid-debugger .link_secondary:focus {
    color: #eb0000
}

.amg-component .link_secondary:hover,
.amg-component .link_secondary:focus {
    color: #eb0000
}

body[data-theme="maybach"] .link_secondary:hover,
[data-theme="maybach"].grid-debugger .link_secondary:hover,
body[data-theme="maybach"] .link_secondary:focus,
[data-theme="maybach"].grid-debugger .link_secondary:focus {
    border-color: #00635b
}

.maybach-component .link_secondary:hover,
.maybach-component .link_secondary:focus {
    border-color: #00635b
}

body[data-theme="amg"] .link_plain-link,
[data-theme="amg"].grid-debugger .link_plain-link {
    color: #eb0000
}

.amg-component .link_plain-link {
    color: #eb0000
}

body[data-theme="maybach"] .link_plain-link,
[data-theme="maybach"].grid-debugger .link_plain-link {
    color: #00635b
}

.maybach-component .link_plain-link {
    color: #00635b
}

body[data-theme="amg"] .link_plain-link:hover,
[data-theme="amg"].grid-debugger .link_plain-link:hover,
body[data-theme="amg"] .link_plain-link:focus,
[data-theme="amg"].grid-debugger .link_plain-link:focus,
body[data-theme="amg"] a:hover .link_plain-link,
[data-theme="amg"].grid-debugger a:hover .link_plain-link,
body[data-theme="amg"] a:focus .link_plain-link,
[data-theme="amg"].grid-debugger a:focus .link_plain-link {
    color: #eb0000
}

.amg-component .link_plain-link:hover,
.amg-component .link_plain-link:focus,
.amg-component a:hover .link_plain-link,
.amg-component a:focus .link_plain-link {
    color: #eb0000
}

body[data-theme="maybach"] .link_plain-link:hover,
[data-theme="maybach"].grid-debugger .link_plain-link:hover,
body[data-theme="maybach"] .link_plain-link:focus,
[data-theme="maybach"].grid-debugger .link_plain-link:focus,
body[data-theme="maybach"] a:hover .link_plain-link,
[data-theme="maybach"].grid-debugger a:hover .link_plain-link,
body[data-theme="maybach"] a:focus .link_plain-link,
[data-theme="maybach"].grid-debugger a:focus .link_plain-link {
    color: #005670
}

.maybach-component .link_plain-link:hover,
.maybach-component .link_plain-link:focus,
.maybach-component a:hover .link_plain-link,
.maybach-component a:focus .link_plain-link {
    color: #005670
}

body[data-theme="amg"] .link_in-text:hover,
[data-theme="amg"].grid-debugger .link_in-text:hover,
body[data-theme="amg"] .link_in-text:focus,
[data-theme="amg"].grid-debugger .link_in-text:focus {
    color: #eb0000
}

.amg-component .link_in-text:hover,
.amg-component .link_in-text:focus {
    color: #eb0000
}

body[data-theme="amg"] .link_bold:hover,
[data-theme="amg"].grid-debugger .link_bold:hover,
body[data-theme="amg"] .link_bold:focus,
[data-theme="amg"].grid-debugger .link_bold:focus {
    color: #eb0000
}

.amg-component .link_bold:hover,
.amg-component .link_bold:focus {
    color: #eb0000
}

body[data-theme="amg"] .link_bold_sub:hover,
[data-theme="amg"].grid-debugger .link_bold_sub:hover,
body[data-theme="amg"] .link_bold_sub:focus,
[data-theme="amg"].grid-debugger .link_bold_sub:focus {
    color: #eb0000
}

.amg-component .link_bold_sub:hover,
.amg-component .link_bold_sub:focus {
    color: #eb0000
}

body[data-theme="amg"] .link_icon_text,
[data-theme="amg"].grid-debugger .link_icon_text {
    color: #999
}

body[data-theme="amg"] .link_icon_text:focus,
[data-theme="amg"].grid-debugger .link_icon_text:focus {
    animation: none;
    outline: none
}

body[data-theme="amg"] .link_icon_text:hover,
[data-theme="amg"].grid-debugger .link_icon_text:hover,
body[data-theme="amg"] .link_icon_text:focus,
[data-theme="amg"].grid-debugger .link_icon_text:focus {
    color: #eb0000
}

body[data-theme="amg"] .link_icon_text:hover [class^="icon-mb"],
[data-theme="amg"].grid-debugger .link_icon_text:hover [class^="icon-mb"],
body[data-theme="amg"] .link_icon_text:hover [class*=" icon-mb"],
[data-theme="amg"].grid-debugger .link_icon_text:hover [class*=" icon-mb"],
body[data-theme="amg"] .link_icon_text:focus [class^="icon-mb"],
[data-theme="amg"].grid-debugger .link_icon_text:focus [class^="icon-mb"],
body[data-theme="amg"] .link_icon_text:focus [class*=" icon-mb"],
[data-theme="amg"].grid-debugger .link_icon_text:focus [class*=" icon-mb"] {
    color: #eb0000
}

.amg-component .link_icon_text {
    color: #999
}

.amg-component .link_icon_text:focus {
    animation: none;
    outline: none
}

.amg-component .link_icon_text:hover,
.amg-component .link_icon_text:focus {
    color: #eb0000
}

.amg-component .link_icon_text:hover [class^="icon-mb"],
.amg-component .link_icon_text:hover [class*=" icon-mb"],
.amg-component .link_icon_text:focus [class^="icon-mb"],
.amg-component .link_icon_text:focus [class*=" icon-mb"] {
    color: #eb0000
}

.app-badges__heading {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 10px
}

.app-badges__list::after {
    clear: both;
    content: '';
    display: block
}

.app-badges__list-item {
    margin-right: 10px;
    float: left
}

.app-badges__list-item:last-child {
    margin-right: 0
}

.app-badges__app-badge,
.app-badges__app-badge--itunes,
.app-badges__app-badge--playStore {
    display: block;
    width: 105px;
    height: 37px;
    background: transparent no-repeat left top;
    background-size: auto 100%
}

.app-badges__app-badge--itunes {
    background-image: url("/etc/designs/mb-nafta/images/badges/app-badge-apple-store.png")
}

.app-badges__app-badge--playStore {
    background-image: url("/etc/designs/mb-nafta/images/badges/app-badge-google-play.png")
}

.app-badges__app-badge-label {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

@media only print {
    .app-badges__app-badge-label {
        display: none
    }
}

@media screen and (min-width: 768px) {
    .media-text {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }
}

body[data-theme="theme-page"] .media-text,
[data-theme="theme-page"].grid-debugger .media-text {
    background: #000;
    color: #fff
}

.theme-page-component .media-text {
    background: #000;
    color: #fff
}

@media screen and (min-width: 768px) {
    .media-text__media-container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        text-align: center
    }

    .media-text__media-container:last-child {
        margin-right: 0
    }

    .media-text__media-container--left {
        margin-left: 51.17883%
    }
}

.media-text__title {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    margin-top: 15px
}

@media screen and (min-width: 980px),
only print {
    .media-text__title {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .media-text__title {
        margin-top: 0
    }
}

body[data-theme="amg"] .media-text__title,
[data-theme="amg"].grid-debugger .media-text__title {
    color: #fff
}

.amg-component .media-text__title {
    color: #fff
}

.media-text__heading {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin: 15px 0
}

@media screen and (min-width: 768px) {
    .media-text__heading {
        margin-top: 0
    }
}

body[data-theme="amg"] .media-text__heading,
[data-theme="amg"].grid-debugger .media-text__heading {
    color: #fff
}

.amg-component .media-text__heading {
    color: #fff
}

body[data-theme="theme-page"] .media-text__heading,
[data-theme="theme-page"].grid-debugger .media-text__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    color: #fff
}

.theme-page-component .media-text__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    color: #fff
}

.media-text__sub-title {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    margin-top: 15px;
    margin-bottom: 15px
}

@media only print {
    .media-text__sub-title {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .media-text__sub-title {
        margin-top: 20px;
        margin-bottom: 20px
    }
}

body[data-theme="amg"] .media-text__sub-title,
[data-theme="amg"].grid-debugger .media-text__sub-title {
    color: #999
}

.amg-component .media-text__sub-title {
    color: #999
}

body[data-variant=ondisplay] .media-text__sub-title,
[data-variant=ondisplay].grid-debugger .media-text__sub-title {
    font-family: "Arial", sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400
}

@media screen and (min-width: 768px) {
    .media-text__copy-container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 40.29137%;
        margin-left: 8.5298%
    }

    .media-text__copy-container:last-child {
        margin-right: 0
    }

    .media-text__copy-container--left {
        margin-left: -102.35765%
    }
}

.media-text__copy-container-inner {
    margin-bottom: 10px
}

.media-text__copy-container .button,
.media-text__copy-container .link {
    margin-bottom: 5px
}

.media-text__copy-container .link {
    display: inline-block
}

.media-text__image {
    max-width: 100%
}

.media-text__body {
    margin-bottom: 20px
}

body[data-theme="theme-page"] .media-text__body,
[data-theme="theme-page"].grid-debugger .media-text__body {
    color: #fff
}

.theme-page-component .media-text__body {
    color: #fff
}

body.corporate-page .media-text__title,
.corporate-page.grid-debugger .media-text__title {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 10px
}

@media only print {

    body.corporate-page .media-text__title,
    .corporate-page.grid-debugger .media-text__title {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

body.corporate-page .media-text__sub-title,
.corporate-page.grid-debugger .media-text__sub-title {
    margin-top: 5px;
    margin-bottom: 5px
}

.responsive-image {
    vertical-align: top;
    width: 100%
}

.rte {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400
}

@media only print {
    .rte {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.rte h3 {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 20px
}

@media only print {
    .rte h3 {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.rte p {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 1em
}

@media only print {
    .rte p {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.rte b,
.rte strong {
    font-weight: bold
}

.rte i,
.rte em {
    font-style: italic
}

.rte sup:not(.disclaimer__legend-reference) {
    vertical-align: super;
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    line-height: 0
}

.rte ul,
.rte ol {
    margin-left: 15px
}

.rte ul {
    list-style: disc;
    list-style-position: initial !important
}

.rte ol {
    list-style: decimal;
    list-style-position: initial !important
}

.rte li {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400
}

@media only print {
    .rte li {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.rte a {
    color: #176db7;
    text-decoration: none
}

.rte a:hover,
.rte a:focus {
    color: #2e7cbe;
    text-decoration: underline
}

.rte.rte--small {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400
}

.rte.rte--small p {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400
}

.rte.rte--small li {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400
}

.section-header {
    overflow: hidden
}

.section-header hr {
    border: none;
    border-top: 1px solid #c6c6c6;
    margin-left: 0;
    text-align: left;
    width: 30px
}

.section-header__hero {
    position: relative;
    margin-bottom: 20px;
    text-align: center
}

.section-header__image {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 768px
}

@media screen and (min-width: 768px) {
    .section-header__image {
        width: 1440px
    }
}

@media screen and (min-width: 1440px) {
    .section-header__image {
        left: auto;
        transform: none
    }
}

.section-header__img-caption {
    color: #999;
    margin-top: 15px;
    position: absolute;
    right: 12px
}

.section-header__img-caption--legend {
    position: relative;
    display: block;
    text-align: right
}

@media screen and (min-width: 768px) {
    .section-header__img-caption {
        margin-top: 20px;
        right: 30px
    }
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .section-header__container,
    [data-theme="amg"].grid-debugger .section-header__container {
        display: -ms-flexbox;
        display: flex;
        position: relative
    }

    body[data-theme="amg"] .section-header__container .section-header__divider,
    [data-theme="amg"].grid-debugger .section-header__container .section-header__divider {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 14.70196%;
        display: block !important;
        position: absolute;
        -ms-flex-order: 1;
        order: 1;
        left: 0
    }

    body[data-theme="amg"] .section-header__container .section-header__divider:last-child,
    [data-theme="amg"].grid-debugger .section-header__container .section-header__divider:last-child {
        margin-right: 0
    }

    body[data-theme="amg"] .section-header__container .section-header__text,
    [data-theme="amg"].grid-debugger .section-header__container .section-header__text {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 82.94039%;
        -ms-flex-order: 2;
        order: 2
    }

    body[data-theme="amg"] .section-header__container .section-header__text:last-child,
    [data-theme="amg"].grid-debugger .section-header__container .section-header__text:last-child {
        margin-right: 0
    }

    body[data-theme="amg"] .section-header__container .section-header__body,
    [data-theme="amg"].grid-debugger .section-header__container .section-header__body {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 74.41059%
    }

    body[data-theme="amg"] .section-header__container .section-header__body:last-child,
    [data-theme="amg"].grid-debugger .section-header__container .section-header__body:last-child {
        margin-right: 0
    }
}

body[data-theme="amg"] .section-header__container .section-header__divider,
[data-theme="amg"].grid-debugger .section-header__container .section-header__divider {
    display: none
}

@media screen and (min-width: 768px) {
    .amg-component .section-header__container {
        display: -ms-flexbox;
        display: flex;
        position: relative
    }

    .amg-component .section-header__container .section-header__divider {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 14.70196%;
        display: block !important;
        position: absolute;
        -ms-flex-order: 1;
        order: 1;
        left: 0
    }

    .amg-component .section-header__container .section-header__divider:last-child {
        margin-right: 0
    }

    .amg-component .section-header__container .section-header__text {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 82.94039%;
        -ms-flex-order: 2;
        order: 2
    }

    .amg-component .section-header__container .section-header__text:last-child {
        margin-right: 0
    }

    .amg-component .section-header__container .section-header__body {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 74.41059%
    }

    .amg-component .section-header__container .section-header__body:last-child {
        margin-right: 0
    }
}

.amg-component .section-header__container .section-header__divider {
    display: none
}

.section-header__text {
    margin-bottom: 40px
}

@media screen and (min-width: 768px) {
    .section-header__text {
        margin-bottom: 20px
    }
}

.section-header__heading {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #717171;
    margin-bottom: 35px
}

@media only print {
    .section-header__heading {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

body[data-theme="amg"] .section-header__heading,
[data-theme="amg"].grid-debugger .section-header__heading {
    color: #fff;
    float: none;
    margin-bottom: 18px;
    text-transform: none;
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    font-style: italic
}

@media screen and (min-width: 980px),
only print {

    body[data-theme="amg"] .section-header__heading,
    [data-theme="amg"].grid-debugger .section-header__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400;
        font-style: italic
    }
}

@media screen and (min-width: 768px) {

    body[data-theme="amg"] .section-header__heading,
    [data-theme="amg"].grid-debugger .section-header__heading {
        width: inherit
    }
}

.amg-component .section-header__heading {
    color: #fff;
    float: none;
    margin-bottom: 18px;
    text-transform: none;
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    font-style: italic
}

@media screen and (min-width: 980px),
only print {
    .amg-component .section-header__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400;
        font-style: italic
    }
}

@media screen and (min-width: 768px) {
    .amg-component .section-header__heading {
        width: inherit
    }
}

@media screen and (min-width: 768px) {
    .section-header__heading {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 14.70196%
    }

    .section-header__heading:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 768px) {
    .section-header__body {
        font-size: 13px
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
    .section-header__body {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%
    }

    .section-header__body:last-child {
        margin-right: 0
    }
}

@media only print {
    .section-header__body {
        font-family: "Arial", sans-serif;
        font-size: 13px;
        line-height: 20px;
        font-weight: 400
    }
}

@media only print {
    .section-header__body {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

body[data-theme="amg"] .section-header__body,
[data-theme="amg"].grid-debugger .section-header__body {
    color: #999
}

.amg-component .section-header__body {
    color: #999
}

body[data-variant=ondisplay] .section-header__body,
[data-variant=ondisplay].grid-debugger .section-header__body {
    font-family: "Arial", sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400
}

.stat-tile {
    display: block;
    width: 100%;
    margin-top: 20px
}

@media screen and (min-width: 768px) {
    .stat-tile {
        float: left;
        display: block;
        margin-right: 2.84259%;
        width: 38.29445%;
        margin-bottom: 35px
    }

    .stat-tile:last-child {
        margin-right: 0
    }

    .stat-tile:nth-child(even) {
        margin-left: 20.56852%;
        margin-right: 0
    }

    .stat-tile:nth-child(odd) {
        clear: both
    }

    .stat-tile:nth-child(odd):last-child {
        margin-left: 30.85278%
    }
}

.stat-tile:last-child {
    margin-bottom: 30px
}

.stat-tile__illustration,
.stat-tile__illustration--no-image {
    width: 100%;
    position: relative
}

.stat-tile__graphic {
    width: 100%
}

.stat-tile__detail {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transform: translateY(-50%)
}

.stat-tile__illustration--no-image .stat-tile__detail {
    display: block;
    top: auto;
    left: auto;
    transform: none;
    position: static
}

.stat-tile__statistic {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 40px;
    line-height: 1;
    margin-bottom: -3px
}

@media screen and (min-width: 768px) {
    .stat-tile__statistic {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 30px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) and (min-width: 980px) {
    .stat-tile__statistic {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.stat-tile__unit {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    font-style: italic
}

@media screen and (min-width: 768px) {
    .stat-tile__unit {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        font-style: italic
    }
}

.stat-tile__context {
    text-align: center;
    margin-top: 15px
}

@media screen and (max-width: 767px) {
    .stay-connected__stay-in-touch {
        -ms-flex-order: 6;
        order: 6;
        padding-top: 20px
    }

    .stay-connected__stay-in-touch .footer__accordion-item-heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400;
        padding: 0 10px;
        border-top: none
    }

    .stay-connected__stay-in-touch .footer__accordion-item-content {
        background: transparent;
        border-top: none;
        padding: 10px
    }
}

@media screen and (max-width: 767px) {
    .stay-connected__other-sites {
        border-bottom: 1px solid #c6c6c6
    }
}

.stay-connected__title {
    color: #000
}

.stay-connected__sub-title {
    margin-bottom: 5px;
    color: #000
}

.stay-connected__link-container::after {
    clear: both;
    content: '';
    display: block
}

@media screen and (min-width: 980px) {
    .stay-connected__link-container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto
    }

    .stay-connected__link-container::after {
        clear: both;
        content: '';
        display: block
    }
}

@media screen and (min-width: 980px) {
    .stay-connected__social-links-container {
        float: right;
        margin-top: 5px
    }
}

.stay-connected__social-links-list {
    display: inline-block;
    padding-left: 20px
}

.stay-connected__social-links-list:first-child {
    padding-left: 0
}

.stay-connected__social-link {
    font-size: 40px;
    color: #000;
    display: inline-block
}

.stay-connected__social-link:focus {
    animation: none;
    outline: none
}

.stay-connected__social-link:hover,
.stay-connected__social-link:focus {
    color: #2e7cbe
}

@media screen and (max-width: 767px) {
    .stay-connected__other-sites-container {
        padding-top: 10px
    }
}

@media screen and (min-width: 768px) {
    .stay-connected__other-sites-container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media screen and (max-width: 767px) {
    .stay-connected__other-links-list:first-child .stay-connected__other-link {
        padding-top: 5px
    }

    .stay-connected__other-links-list:last-child .stay-connected__other-link {
        padding-top: 0
    }
}

.stay-connected__other-links-list .icon-mb.icon-mbvans span {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 18px;
    line-height: 1
}

.stay-connected__other-links-list .icon-mb.icon-mbvans span {
    position: static;
    overflow: visible
}

.stay-connected__other-links-list .icon-mb.icon-mbfs:before {
    display: none
}

html[data-country='mx'] .stay-connected__other-links-list .icon-mb.icon-mbfs:before {
    display: block
}

.stay-connected__other-links-list .icon-mb.icon-mbfs span {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    font-style: italic
}

html[data-country='us'] .stay-connected__other-links-list .icon-mb.icon-mbfs span {
    position: static;
    overflow: visible
}

html[data-country='ca'] .stay-connected__other-links-list .icon-mb.icon-mbfs span {
    position: static;
    overflow: visible
}

.stay-connected__other-links-list .icon-smart,
.stay-connected__other-links-list .icon-AMG_logo {
    line-height: 10px
}

.stay-connected__other-link {
    color: #000
}

.stay-connected__other-link:focus {
    animation: none;
    outline: none
}

@media screen and (max-width: 767px) {
    .stay-connected__other-link {
        display: block;
        width: 100%;
        display: inline-block;
        height: 30px;
        overflow: hidden;
        padding-top: 10px
    }
}

.stay-connected__other-link:hover,
.stay-connected__other-link:focus {
    color: #2e7cbe
}

.stay-connected--icon-mbvans {
    font-size: 15px
}

.stay-connected--icon-smart {
    font-size: 80px
}

.stay-connected--icon-AMG_logo {
    font-size: 80px
}

.stay-connected--icon-mbfs {
    font-size: 15px
}

html[data-country='mx'] .stay-connected--icon-mbfs {
    font-size: 20px
}

.stay-connected__subscribe {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px
}

@media screen and (min-width: 980px) {
    .stay-connected__subscribe {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 57.35098%;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 5px
    }

    .stay-connected__subscribe:last-child {
        margin-right: 0
    }
}

.stay-connected__subscribe-email-wrapper {
    margin-right: 10px;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.stay-connected__subscribe-email-wrapper .form__input-label {
    color: #393939
}

.stay-connected__subscribe-container {
    width: 100%;
    display: -ms-flexbox;
    display: flex
}

@media screen and (min-width: 980px) {
    .stay-connected__subscribe-container {
        float: left;
        display: block;
        margin-right: 4.11092%;
        width: 70.25402%;
        display: -ms-flexbox;
        display: flex
    }

    .stay-connected__subscribe-container:last-child {
        margin-right: 0
    }
}

.stay-connected__subscribe-disclaimer {
    margin-bottom: 15px;
    color: #000
}



.stay-connected__subscribe-cta--link {
    margin: 5px 0 25px
}

.stay-connected__message {
    padding: 5px 0 0 25px
}

.stay-connected__subscribed-message,
.stay-connected__exists-message,
.stay-connected__error-message {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    position: relative;
    margin-bottom: 25px;
    color: #000
}

@media only print {

    .stay-connected__subscribed-message,
    .stay-connected__exists-message,
    .stay-connected__error-message {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.stay-connected__subscribed-message:before,
.stay-connected__exists-message:before,
.stay-connected__error-message:before {
    color: #41853d;
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    top: -5px;
    left: -25px;
    font-size: 15px;
    position: absolute
}

.stay-connected__error-message {
    margin-bottom: 10px
}

.stay-connected__error-message:before {
    color: #eb0000;
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 15px
}

.stay-connected__try-again-cta {
    margin-bottom: 10px
}

.stay-connected__modal {
    padding: 40px;
    padding-bottom: 0
}

.stay-connected__modal__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    text-align: center
}

.stay-connected__modal__subheading {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 0 auto;
    text-align: center
}

.stay-connected__modal__button-container {
    text-align: center;
    padding: 20px 0
}

.stay-connected__modal__disclaimer-container {
    margin: 20px 0
}

.stay-connected__modal__disclaimer-text {
    color: #717171;
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400
}

.title-hero {
    padding-top: 60px
}

.title-hero__title {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    overflow-wrap: break-word;
    text-align: center
}

@media screen and (min-width: 980px),
only print {
    .title-hero__title {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.title-hero__sub-heading {
    margin: 10px auto 0;
    overflow-wrap: break-word;
    text-align: center
}

@media screen and (min-width: 768px) {
    .title-hero__sub-heading {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 17.05961%
    }

    .title-hero__sub-heading:last-child {
        margin-right: 0
    }
}

.title-hero__eyebrow {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 5px;
    text-align: center;
    text-transform: uppercase
}

body[data-theme="theme-page"] .quick-links,
[data-theme="theme-page"].grid-debugger .quick-links {
    background: #000
}

.theme-page-component .quick-links {
    background: #000
}

.quick-links__container {
    padding: 20px 0
}

@media screen and (min-width: 768px) {
    .quick-links__container {
        padding: 30px 0 10px
    }
}

.quick-links__container:before {
    content: "";
    display: block;
    width: 33px;
    border-top: 1px solid #c6c6c6;
    margin: 0 auto 40px
}

.quick-links__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media screen and (min-width: 768px) {
    .quick-links__list {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.quick-links__element {
    margin-bottom: 40px;
    text-align: center;
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 46.28851%
}

.quick-links__element:last-child {
    margin-right: 0
}

@media screen and (max-width: 767px) {
    .quick-links__element:nth-child(even) {
        margin-right: 0
    }
}

@media screen and (min-width: 768px) {
    .quick-links__element {
        margin-bottom: 20px;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 23.23176%
    }

    .quick-links__element:last-child {
        margin-right: 0
    }

    .quick-links__element:nth-child(4n) {
        margin-right: 0
    }
}

.quick-links__icon {
    color: #999;
    display: block;
    margin-right: 0;
    padding-bottom: 10px
}

@media screen and (min-width: 768px) {
    .quick-links__icon {
        line-height: inherit;
        margin: -1px 10px 0 0;
        padding-bottom: 0;
        float: left
    }
}

body[data-theme="theme-page"] .quick-links__icon,
[data-theme="theme-page"].grid-debugger .quick-links__icon {
    color: #fff
}

.theme-page-component .quick-links__icon {
    color: #fff
}

.quick-links__item {
    color: #000;
    display: inline-block
}

.quick-links__item:focus {
    animation: none;
    outline: none
}

@media screen and (min-width: 768px) {
    .quick-links__item {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

body[data-theme="theme-page"] .quick-links__item,
[data-theme="theme-page"].grid-debugger .quick-links__item {
    color: #fff
}

body[data-theme="theme-page"] .quick-links__item:focus,
[data-theme="theme-page"].grid-debugger .quick-links__item:focus {
    animation: none;
    outline: none
}

body[data-theme="theme-page"] .quick-links__item:hover,
[data-theme="theme-page"].grid-debugger .quick-links__item:hover,
body[data-theme="theme-page"] .quick-links__item:focus,
[data-theme="theme-page"].grid-debugger .quick-links__item:focus {
    color: #2e7cbe
}

body[data-theme="theme-page"] .quick-links__item:hover .quick-links__icon,
[data-theme="theme-page"].grid-debugger .quick-links__item:hover .quick-links__icon,
body[data-theme="theme-page"] .quick-links__item:focus .quick-links__icon,
[data-theme="theme-page"].grid-debugger .quick-links__item:focus .quick-links__icon {
    color: #2e7cbe
}

.theme-page-component .quick-links__item {
    color: #fff
}

.theme-page-component .quick-links__item:focus {
    animation: none;
    outline: none
}

.theme-page-component .quick-links__item:hover,
.theme-page-component .quick-links__item:focus {
    color: #2e7cbe
}

.theme-page-component .quick-links__item:hover .quick-links__icon,
.theme-page-component .quick-links__item:focus .quick-links__icon {
    color: #2e7cbe
}

.quick-links__item:hover,
.quick-links__item:focus {
    color: #2e7cbe
}

.quick-links__item:hover .quick-links__icon,
.quick-links__item:focus .quick-links__icon {
    color: #2e7cbe
}

body[data-theme="amg"] .quick-links__item:hover .quick-links__icon,
[data-theme="amg"].grid-debugger .quick-links__item:hover .quick-links__icon,
body[data-theme="amg"] .quick-links__item:focus .quick-links__icon,
[data-theme="amg"].grid-debugger .quick-links__item:focus .quick-links__icon {
    color: #eb0000
}

.amg-component .quick-links__item:hover .quick-links__icon,
.amg-component .quick-links__item:focus .quick-links__icon {
    color: #eb0000
}

@media screen and (min-width: 768px) {
    .quick-links__item-copy {
        text-align: left
    }
}

.cta-banner__wrapper {
    background-color: #f1f1f1;
    padding: 30px 30px 25px
}

@media screen and (min-width: 768px) {
    .cta-banner__wrapper {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 35px 0 40px
    }

    .cta-banner__wrapper::after {
        clear: both;
        content: '';
        display: block
    }
}

@media screen and (min-width: 768px) {
    .cta-banner--inner {
        margin-left: 34.11922%;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        margin-right: 0
    }

    .cta-banner--inner:last-child {
        margin-right: 0
    }

    .cta-banner--inner::after {
        clear: both;
        content: '';
        display: block
    }
}

.cta-link__tile,
.cta-contact__tile {
    text-align: center
}

.cta-link__logo-label-wrapper {
    margin-bottom: 10px
}

.cta-link__logo,
.cta-link__label,
.cta-contact__label {
    display: inline;
    vertical-align: middle
}

.cta-link__logo {
    margin: -2px 5px 0 0;
    max-height: 20px;
    max-width: 20px
}

.cta-link__label,
.cta-contact__label {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700
}

@media only print {

    .cta-link__label,
    .cta-contact__label {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.cta-link__description,
.cta-contact__description {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 10px
}

@media only print {

    .cta-link__description,
    .cta-contact__description {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {

    .cta-link__description,
    .cta-contact__description {
        margin-bottom: 15px
    }
}

.cta-banner__wrapper--button .cta-link__link,
.cta-banner__wrapper--button .cta-contact__link {
    border-radius: 2px;
    color: currentColor;
    display: inline-block;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.83333;
    padding: 5px 10px;
    text-decoration: none;
    cursor: pointer;
    background-color: #176db7;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px
}

.cta-banner__wrapper--button .cta-link__link:focus,
.cta-banner__wrapper--button .cta-contact__link:focus {
    animation: none;
    outline: none
}

.cta-banner__wrapper--button .cta-link__link:hover,
.cta-banner__wrapper--button .cta-contact__link:hover,
.cta-banner__wrapper--button .cta-link__link:focus,
.cta-banner__wrapper--button .cta-contact__link:focus,
a:hover .cta-banner__wrapper--button .cta-link__link,
a:hover .cta-banner__wrapper--button .cta-contact__link,
a:focus .cta-banner__wrapper--button .cta-link__link,
a:focus .cta-banner__wrapper--button .cta-contact__link {
    background-color: #2e7cbe;
    color: #fff
}

.cta-banner__wrapper--button .cta-link__link:hover,
.cta-banner__wrapper--button .cta-contact__link:hover {
    color: #fff
}

.cta-contact__label-wrapper {
    margin-bottom: 5px
}

body[data-theme="theme-page"] .compact-tile-grid,
[data-theme="theme-page"].grid-debugger .compact-tile-grid,
body[data-theme="theme-page"] .accessories-promo-grid,
[data-theme="theme-page"].grid-debugger .accessories-promo-grid {
    margin-top: 30px
}

.theme-page-component .compact-tile-grid,
.theme-page-component .accessories-promo-grid {
    margin-top: 30px
}

.compact-tile-grid__heading,
.accessories-promo-grid__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px
}

@media only print {

    .compact-tile-grid__heading,
    .accessories-promo-grid__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {

    .compact-tile-grid__heading,
    .accessories-promo-grid__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {

    .compact-tile-grid__heading,
    .accessories-promo-grid__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 36px;
        line-height: 36px;
        font-weight: 400;
        margin-bottom: 30px
    }
}

.compact-tile-grid__heading--with-subheading,
.accessories-promo-grid__heading--with-subheading {
    margin-bottom: 10px
}

.compact-tile-grid__subheading,
.accessories-promo-grid__subheading {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px
}

@media only print {

    .compact-tile-grid__subheading,
    .accessories-promo-grid__subheading {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {

    .compact-tile-grid__subheading,
    .accessories-promo-grid__subheading {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 17.05961%
    }

    .compact-tile-grid__subheading:last-child,
    .accessories-promo-grid__subheading:last-child {
        margin-right: 0
    }
}

.compact-tile-grid__copy-container,
.accessories-promo-grid__copy-container {
    text-align: left
}

.compact-tile-grid__copy-container--center,
.accessories-promo-grid__copy-container--center {
    text-align: center
}

body[data-theme="theme-page"] .compact-tile-grid__copy-container,
[data-theme="theme-page"].grid-debugger .compact-tile-grid__copy-container,
body[data-theme="theme-page"] .accessories-promo-grid__copy-container,
[data-theme="theme-page"].grid-debugger .accessories-promo-grid__copy-container {
    color: #fff
}

.theme-page-component .compact-tile-grid__copy-container,
.theme-page-component .accessories-promo-grid__copy-container {
    color: #fff
}

.compact-tile-grid__link,
.accessories-promo-grid__link {
    color: currentColor;
    cursor: pointer;
    text-decoration: none;
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    padding-left: 10px;
    position: relative
}

@media only print {

    .compact-tile-grid__link,
    .accessories-promo-grid__link {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 24px;
        line-height: 28px;
        font-weight: 400
    }
}

.compact-tile-grid__link:focus,
.accessories-promo-grid__link:focus {
    animation: none;
    outline: none
}

.compact-tile-grid__link:hover,
.compact-tile-grid__link:focus,
.accessories-promo-grid__link:hover,
.accessories-promo-grid__link:focus {
    color: #2e7cbe
}

.compact-tile-grid__link:before,
.accessories-promo-grid__link:before {
    color: #2e7cbe;
    content: "";
    display: inline-block;
    font-family: nafta-icons;
    font-size: 6px;
    left: 0;
    margin-top: 0;
    position: absolute;
    right: auto;
    top: 50%;
    transform: translateY(-50%)
}

.compact-tile-grid--button .compact-tile-grid__link,
.compact-tile-grid--button .accessories-promo-grid__link {
    border-radius: 2px;
    color: currentColor;
    display: inline-block;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.83333;
    padding: 5px 10px;
    text-decoration: none;
    cursor: pointer;
    background-color: #176db7;
    color: #fff;
    color: #fff !important;
    padding: 5px 10px !important
}

.compact-tile-grid--button .compact-tile-grid__link:focus,
.compact-tile-grid--button .accessories-promo-grid__link:focus {
    animation: none;
    outline: none
}

.compact-tile-grid--button .compact-tile-grid__link:hover,
.compact-tile-grid--button .compact-tile-grid__link:focus,
a:hover .compact-tile-grid--button .compact-tile-grid__link,
a:focus .compact-tile-grid--button .compact-tile-grid__link,
.compact-tile-grid--button .accessories-promo-grid__link:hover,
.compact-tile-grid--button .accessories-promo-grid__link:focus,
a:hover .compact-tile-grid--button .accessories-promo-grid__link,
a:focus .compact-tile-grid--button .accessories-promo-grid__link {
    background-color: #2e7cbe;
    color: #fff
}

.compact-tile-grid__tiles,
.accessories-promo-grid__tiles {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
}

.compact-tile-grid__tiles::after,
.accessories-promo-grid__tiles::after {
    clear: both;
    content: '';
    display: block
}

.compact-tile-grid .layout-tile-item,
.accessories-promo-grid .layout-tile-item {
    margin-bottom: 20px
}

.compact-tile-grid .layout-tile-item:last-child,
.accessories-promo-grid .layout-tile-item:last-child {
    margin-bottom: 0
}

@media screen and (min-width: 768px) {

    .compact-tile-grid .layout-tile-item,
    .accessories-promo-grid .layout-tile-item {
        margin-bottom: 30px;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .compact-tile-grid .layout-tile-item:last-child,
    .accessories-promo-grid .layout-tile-item:last-child {
        margin-right: 0
    }

    .compact-tile-grid .layout-tile-item:nth-last-child(-n+3),
    .accessories-promo-grid .layout-tile-item:nth-last-child(-n+3) {
        margin-bottom: 0
    }

    .compact-tile-grid .layout-tile-item:nth-child(3n),
    .accessories-promo-grid .layout-tile-item:nth-child(3n) {
        margin-right: 0
    }

    .compact-tile-grid .layout-tile-item:nth-child(3n+1),
    .accessories-promo-grid .layout-tile-item:nth-child(3n+1) {
        clear: left
    }

    body[data-editorial="true"] .compact-tile-grid .layout-tile-item:nth-child(3n+1),
    [data-editorial="true"].grid-debugger .compact-tile-grid .layout-tile-item:nth-child(3n+1),
    body[data-editorial="true"] .accessories-promo-grid .layout-tile-item:nth-child(3n+1),
    [data-editorial="true"].grid-debugger .accessories-promo-grid .layout-tile-item:nth-child(3n+1) {
        clear: none
    }
}

.compact-tile-grid .link-group,
.accessories-promo-grid .link-group {
    margin-bottom: 30px
}

.compact-tile-grid .link-group+.link-group,
.accessories-promo-grid .link-group+.link-group {
    margin-top: 0
}

.compact-tile-grid .link-group:last-child,
.accessories-promo-grid .link-group:last-child {
    margin-bottom: 0
}

@media screen and (min-width: 768px) {

    .compact-tile-grid .link-group:nth-last-child(-n+3),
    .accessories-promo-grid .link-group:nth-last-child(-n+3) {
        margin-bottom: 0
    }
}

.compact-tile-grid .link-group-item,
.accessories-promo-grid .link-group-item {
    width: 100%
}

.compact-tile-grid .link-group-item:nth-child(3n),
.accessories-promo-grid .link-group-item:nth-child(3n) {
    margin-right: 0
}

@media screen and (min-width: 768px) {

    .compact-tile-grid .link-group-item,
    .accessories-promo-grid .link-group-item {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .compact-tile-grid .link-group-item:last-child,
    .accessories-promo-grid .link-group-item:last-child {
        margin-right: 0
    }
}

.compact-tile-grid .link-group-item:nth-child(3n+1),
.accessories-promo-grid .link-group-item:nth-child(3n+1) {
    clear: left
}

body[data-editorial="true"] .compact-tile-grid .link-group-item:nth-child(3n+1),
[data-editorial="true"].grid-debugger .compact-tile-grid .link-group-item:nth-child(3n+1),
body[data-editorial="true"] .accessories-promo-grid .link-group-item:nth-child(3n+1),
[data-editorial="true"].grid-debugger .accessories-promo-grid .link-group-item:nth-child(3n+1) {
    clear: none
}

.compact-tile-grid .link-group__list-container,
.accessories-promo-grid .link-group__list-container {
    display: block
}

.compact-tile-grid .link-group__list-block,
.accessories-promo-grid .link-group__list-block {
    display: block;
    width: 100%;
    margin-right: 0
}

.compact-tile-grid .link-group__model:nth-child(n+2),
.accessories-promo-grid .link-group__model:nth-child(n+2) {
    border-top: none
}

body[data-editorial="true"] .compact-tile-grid .newpar,
[data-editorial="true"].grid-debugger .compact-tile-grid .newpar,
body[data-editorial="true"] .accessories-promo-grid .newpar,
[data-editorial="true"].grid-debugger .accessories-promo-grid .newpar {
    float: left;
    width: 100%
}

body[data-theme="theme-page"] .compact-tile-grid .content-tile__text-container .content-tile__link,
[data-theme="theme-page"].grid-debugger .compact-tile-grid .content-tile__text-container .content-tile__link,
body[data-theme="theme-page"] .accessories-promo-grid .content-tile__text-container .content-tile__link,
[data-theme="theme-page"].grid-debugger .accessories-promo-grid .content-tile__text-container .content-tile__link {
    color: #2e7cbe;
    font-weight: bold
}

body[data-theme="theme-page"] .compact-tile-grid .content-tile__text-container .content-tile__link:hover,
[data-theme="theme-page"].grid-debugger .compact-tile-grid .content-tile__text-container .content-tile__link:hover,
body[data-theme="theme-page"] .compact-tile-grid .content-tile__text-container .content-tile__link:focus,
[data-theme="theme-page"].grid-debugger .compact-tile-grid .content-tile__text-container .content-tile__link:focus,
body[data-theme="theme-page"] .accessories-promo-grid .content-tile__text-container .content-tile__link:hover,
[data-theme="theme-page"].grid-debugger .accessories-promo-grid .content-tile__text-container .content-tile__link:hover,
body[data-theme="theme-page"] .accessories-promo-grid .content-tile__text-container .content-tile__link:focus,
[data-theme="theme-page"].grid-debugger .accessories-promo-grid .content-tile__text-container .content-tile__link:focus {
    color: #fff
}

.theme-page-component .compact-tile-grid .content-tile__text-container .content-tile__link,
.theme-page-component .accessories-promo-grid .content-tile__text-container .content-tile__link {
    color: #2e7cbe;
    font-weight: bold
}

.theme-page-component .compact-tile-grid .content-tile__text-container .content-tile__link:hover,
.theme-page-component .compact-tile-grid .content-tile__text-container .content-tile__link:focus,
.theme-page-component .accessories-promo-grid .content-tile__text-container .content-tile__link:hover,
.theme-page-component .accessories-promo-grid .content-tile__text-container .content-tile__link:focus {
    color: #fff
}

body[data-theme="theme-page"] .compact-tile-grid .content-tile__tile-heading,
[data-theme="theme-page"].grid-debugger .compact-tile-grid .content-tile__tile-heading,
body[data-theme="theme-page"] .accessories-promo-grid .content-tile__tile-heading,
[data-theme="theme-page"].grid-debugger .accessories-promo-grid .content-tile__tile-heading {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 0
}

@media only print {

    body[data-theme="theme-page"] .compact-tile-grid .content-tile__tile-heading,
    [data-theme="theme-page"].grid-debugger .compact-tile-grid .content-tile__tile-heading,
    body[data-theme="theme-page"] .accessories-promo-grid .content-tile__tile-heading,
    [data-theme="theme-page"].grid-debugger .accessories-promo-grid .content-tile__tile-heading {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.theme-page-component .compact-tile-grid .content-tile__tile-heading,
.theme-page-component .accessories-promo-grid .content-tile__tile-heading {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 0
}

@media only print {

    .theme-page-component .compact-tile-grid .content-tile__tile-heading,
    .theme-page-component .accessories-promo-grid .content-tile__tile-heading {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.link-group+.link-group {
    margin-top: 30px
}

.link-group--edit-mode {
    min-height: 124px
}

.link-group__title {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px
}

@media only print {
    .link-group__title {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.link-group__list-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.link-group__list-container::after {
    clear: both;
    content: '';
    display: block
}

.link-group__list-block {
    width: 100%
}

.link-group__list-block:nth-child(3n) {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .link-group__list-block {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .link-group__list-block:last-child {
        margin-right: 0
    }
}

.link-group__list-block--active .link-group__list {
    color: #2e7cbe
}

.link-group__list {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .link-group__list {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.link-group__model {
    border-bottom: 1px solid #e3e3e3;
    padding: 10px 0
}

.link-group__model:first-child {
    border-top: 1px solid #e3e3e3
}

@media screen and (min-width: 768px) {
    .link-group__model:nth-child(-n+3) {
        border-top: 1px solid #e3e3e3
    }
}

@media screen and (min-width: 768px) {

    body.bodystyle-landing-page .link-group__list-block,
    .bodystyle-landing-page.grid-debugger .link-group__list-block {
        float: left;
        display: block;
        margin-right: 3.16844%;
        width: 42.6842%
    }

    body.bodystyle-landing-page .link-group__list-block:last-child,
    .bodystyle-landing-page.grid-debugger .link-group__list-block:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 768px) {

    body.bodystyle-landing-page .link-group__model:nth-child(-n+3),
    .bodystyle-landing-page.grid-debugger .link-group__model:nth-child(-n+3) {
        border-top: none
    }

    body.bodystyle-landing-page .link-group__model:nth-child(-n+2),
    .bodystyle-landing-page.grid-debugger .link-group__model:nth-child(-n+2) {
        border-top: 1px solid #e3e3e3
    }
}

body[data-theme="theme-page"] .link-group,
[data-theme="theme-page"].grid-debugger .link-group {
    margin-top: 40px
}

@media screen and (min-width: 768px) {

    body[data-theme="theme-page"] .link-group,
    [data-theme="theme-page"].grid-debugger .link-group {
        margin-bottom: 45px
    }
}

body[data-theme="theme-page"] .link-group__title,
[data-theme="theme-page"].grid-debugger .link-group__title {
    display: none
}

body[data-theme="theme-page"] .link-group__list-container,
[data-theme="theme-page"].grid-debugger .link-group__list-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: start;
    align-items: flex-start
}

@media screen and (min-width: 768px) {

    body[data-theme="theme-page"] .link-group__list-container,
    [data-theme="theme-page"].grid-debugger .link-group__list-container {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: center;
        justify-content: center
    }
}

body[data-theme="theme-page"] .link-group__list-block,
[data-theme="theme-page"].grid-debugger .link-group__list-block {
    margin: 0
}

body[data-theme="theme-page"] .link-group__list,
[data-theme="theme-page"].grid-debugger .link-group__list {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400
}

@media only print {

    body[data-theme="theme-page"] .link-group__list,
    [data-theme="theme-page"].grid-debugger .link-group__list {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {

    body[data-theme="theme-page"] .link-group__list,
    [data-theme="theme-page"].grid-debugger .link-group__list {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

body[data-theme="theme-page"] .link-group__model,
[data-theme="theme-page"].grid-debugger .link-group__model {
    border-bottom: none;
    padding: 0;
    text-align: center;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-bottom: 35px
}

body[data-theme="theme-page"] .link-group__model:first-child,
[data-theme="theme-page"].grid-debugger .link-group__model:first-child {
    border-top: none
}

@media screen and (min-width: 768px) {

    body[data-theme="theme-page"] .link-group__model,
    [data-theme="theme-page"].grid-debugger .link-group__model {
        display: initial;
        border-right: 1px solid #000;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        margin-bottom: 0;
        padding: 0 10px
    }

    body[data-theme="theme-page"] .link-group__model:last-child,
    [data-theme="theme-page"].grid-debugger .link-group__model:last-child {
        border-right: none
    }

    body[data-theme="theme-page"] .link-group__model:nth-child(-n+3),
    [data-theme="theme-page"].grid-debugger .link-group__model:nth-child(-n+3) {
        border-top: none
    }
}

.theme-page-component .link-group {
    margin-top: 40px
}

@media screen and (min-width: 768px) {
    .theme-page-component .link-group {
        margin-bottom: 45px
    }
}

.theme-page-component .link-group__title {
    display: none
}

.theme-page-component .link-group__list-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: start;
    align-items: flex-start
}

@media screen and (min-width: 768px) {
    .theme-page-component .link-group__list-container {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.theme-page-component .link-group__list-block {
    margin: 0
}

.theme-page-component .link-group__list {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400
}

@media only print {
    .theme-page-component .link-group__list {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {
    .theme-page-component .link-group__list {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

.theme-page-component .link-group__model {
    border-bottom: none;
    padding: 0;
    text-align: center;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    margin-bottom: 35px
}

.theme-page-component .link-group__model:first-child {
    border-top: none
}

@media screen and (min-width: 768px) {
    .theme-page-component .link-group__model {
        display: initial;
        border-right: 1px solid #000;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        margin-bottom: 0;
        padding: 0 10px
    }

    .theme-page-component .link-group__model:last-child {
        border-right: none
    }

    .theme-page-component .link-group__model:nth-child(-n+3) {
        border-top: none
    }
}

.large-tile-grid {
    visibility: hidden
}

.large-tile-grid--ready {
    visibility: visible
}

.large-tile-grid__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center
}

@media only print {
    .large-tile-grid__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {
    .large-tile-grid__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .large-tile-grid__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 36px;
        line-height: 36px;
        font-weight: 400;
        margin-bottom: 35px
    }
}

body[data-theme="theme-page"] .large-tile-grid__heading,
[data-theme="theme-page"].grid-debugger .large-tile-grid__heading {
    color: #fff
}

.theme-page-component .large-tile-grid__heading {
    color: #fff
}

.large-tile-grid__copy-container {
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
}

.large-tile-grid__copy-container::after {
    clear: both;
    content: '';
    display: block
}

.large-tile-grid__copy-container--left {
    text-align: left
}

.large-tile-grid .layout-tile-item:nth-child(n+2) {
    padding-top: 20px
}

@media screen and (min-width: 768px) {
    .large-tile-grid .layout-tile-item {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%
    }

    .large-tile-grid .layout-tile-item:last-child {
        margin-right: 0
    }

    .large-tile-grid .layout-tile-item:nth-child(n+2) {
        padding-top: 0
    }

    .large-tile-grid .layout-tile-item:nth-child(n+3) {
        padding-top: 30px
    }

    .large-tile-grid .layout-tile-item:nth-child(even) {
        margin-right: 0
    }

    .large-tile-grid .layout-tile-item:nth-child(odd) {
        clear: left
    }

    body[data-editorial="true"] .large-tile-grid .layout-tile-item:nth-child(odd),
    [data-editorial="true"].grid-debugger .large-tile-grid .layout-tile-item:nth-child(odd) {
        clear: none
    }

    .large-tile-grid .layout-tile-item:nth-child(odd):last-child {
        margin-left: 25.58941%
    }

    body[data-editorial="true"] .large-tile-grid .layout-tile-item,
    [data-editorial="true"].grid-debugger .large-tile-grid .layout-tile-item {
        padding-top: 0;
        margin-bottom: 30px
    }
}

body[data-editorial="true"] .large-tile-grid .newpar,
[data-editorial="true"].grid-debugger .large-tile-grid .newpar {
    float: left;
    width: 100%
}

.large-tile-grid__slider .slider-tile-item {
    -ms-flex: none;
    flex: none;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 91.4702%
}

.large-tile-grid__slider .slider-tile-item:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .large-tile-grid__slider .slider-tile-item {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%
    }

    .large-tile-grid__slider .slider-tile-item:last-child {
        margin-right: 0
    }
}

.mb-slideshow .content-tile--vehicle-overlay {
    display: inline-block;
    vertical-align: top;
    width: 89.5vw;
    margin-right: 10px;
    white-space: normal
}

@media screen and (min-width: 768px) {
    .mb-slideshow .content-tile--vehicle-overlay {
        width: 44.600391vw;
        margin-right: 1.9389323vw
    }
}

@media screen and (min-width: 980px) {
    .mb-slideshow .content-tile--vehicle-overlay {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%
    }

    .mb-slideshow .content-tile--vehicle-overlay:last-child {
        margin-right: 0
    }
}

.mb-slideshow .content-tile--vehicle-overlay:last-of-type {
    margin-right: 0
}

body[data-editorial="true"] .mb-slideshow .content-tile--vehicle-overlay,
[data-editorial="true"].grid-debugger .mb-slideshow .content-tile--vehicle-overlay {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
    margin-bottom: 40px
}

body[data-editorial="true"] .mb-slideshow .content-tile--vehicle-overlay:last-child,
[data-editorial="true"].grid-debugger .mb-slideshow .content-tile--vehicle-overlay:last-child {
    margin-right: 0
}

body[data-editorial="true"] .mb-slideshow .content-tile--vehicle-overlay:nth-child(2n),
[data-editorial="true"].grid-debugger .mb-slideshow .content-tile--vehicle-overlay:nth-child(2n) {
    margin-right: 0
}

@media screen and (max-width: 767px) {
    .mb-slideshow .content-tile--vehicle-overlay.single-tile {
        width: 100%
    }
}

.mb-slideshow .content-tile--vehicle-overlay.single-tile .content-tile--vehicle-overlay__tile-heading,
.mb-slideshow .content-tile--vehicle-overlay.single-tile .content-tile--vehicle-overlay__tile-desc,
.mb-slideshow .content-tile--vehicle-overlay.single-tile .content-tile--vehicle-overlay__link {
    margin-left: 0;
    margin-right: 0
}

.mb-slideshow .content-tile--vehicle-overlay--offscreen .content-tile--vehicle-overlay__image-container {
    pointer-events: none
}

.mb-slideshow .content-tile--vehicle-overlay__tile--button {
    width: 100%
}

.mb-slideshow .content-tile--vehicle-overlay__tile-heading {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 30px 10px;
    transition: color 0.2s linear
}

body[data-theme="theme-page"] .mb-slideshow .content-tile--vehicle-overlay__tile-heading,
[data-theme="theme-page"].grid-debugger .mb-slideshow .content-tile--vehicle-overlay__tile-heading {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700
}

.theme-page-component .mb-slideshow .content-tile--vehicle-overlay__tile-heading {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700
}

.mb-slideshow .content-tile--vehicle-overlay__tile-desc {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #000;
    margin-left: 30px;
    margin-right: 30px;
    transition: color 0.2s linear
}

@media only print {
    .mb-slideshow .content-tile--vehicle-overlay__tile-desc {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.mb-slideshow .content-tile--vehicle-overlay__tile__image-container {
    margin-bottom: 20px;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s linear
}

.mb-slideshow .content-tile--vehicle-overlay__link {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    color: #176db7;
    margin-left: 30px;
    margin-right: 30px;
    transition: opacity 0.2s linear
}

@media only print {
    .mb-slideshow .content-tile--vehicle-overlay__link {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

@media screen and (min-width: 980px) {
    .mb-slideshow .content-tile--vehicle-overlay__link:hover {
        color: #2e7cbe
    }
}

.mb-slideshow .content-tile--vehicle-overlay:not(.active) .content-tile--vehicle-overlay__tile-heading,
.mb-slideshow .content-tile--vehicle-overlay:not(.active) .content-tile--vehicle-overlay__tile-desc,
.mb-slideshow .content-tile--vehicle-overlay:not(.active) .content-tile--vehicle-overlay__timeline-number {
    color: #999
}

.mb-slideshow .content-tile--vehicle-overlay:not(.active) .content-tile--vehicle-overlay__link {
    opacity: 0.5
}

@media screen and (min-width: 980px) {
    .mb-slideshow .content-tile--vehicle-overlay__image-container {
        display: none
    }

    body[data-editorial="true"] .mb-slideshow .content-tile--vehicle-overlay__image-container,
    [data-editorial="true"].grid-debugger .mb-slideshow .content-tile--vehicle-overlay__image-container {
        display: block
    }
}

.mb-slideshow .content-tile--vehicle-overlay__timeline {
    display: inline-block;
    width: calc(100% - 35px);
    height: 2px;
    background-color: #999;
    margin: 0px 5px 0 10px;
    position: relative
}

.mb-slideshow .content-tile--vehicle-overlay__timeline-container {
    position: relative;
    margin-bottom: 10px
}

.mb-slideshow .content-tile--vehicle-overlay__timeline-number {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #000;
    vertical-align: sub;
    display: inline-block;
    transition: color 0.2s linear
}

body[data-theme="theme-page"] .mb-slideshow .content-tile--vehicle-overlay__timeline-number,
[data-theme="theme-page"].grid-debugger .mb-slideshow .content-tile--vehicle-overlay__timeline-number {
    color: #fff
}

.theme-page-component .mb-slideshow .content-tile--vehicle-overlay__timeline-number {
    color: #fff
}

@media screen and (min-width: 980px) {
    .mb-slideshow [data-tile-count="3"] .content-tile--vehicle-overlay {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%
    }

    .mb-slideshow [data-tile-count="3"] .content-tile--vehicle-overlay:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 980px) {
    .mb-slideshow [data-tile-count="4"] .content-tile--vehicle-overlay {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 23.23176%
    }

    .mb-slideshow [data-tile-count="4"] .content-tile--vehicle-overlay:last-child {
        margin-right: 0
    }
}

.mb-slideshow .content-tile--vehicle-overlay__timeline-progress-bar-base {
    height: 100%;
    background-color: #2e7cbe;
    position: absolute;
    top: 0;
    left: 0
}

.mb-slideshow .content-tile--vehicle-overlay__timeline-progress-bar {
    width: 0%;
    z-index: 10
}

.mb-slideshow .active .content-tile--vehicle-overlay__timeline-progress-bar {
    width: 100%;
    transition: width 0.5s linear
}

.mb-slideshow .mb-slideshow__container[data-autoplay-disabled="true"] .active .content-tile--vehicle-overlay__timeline-progress-bar {
    width: 0%;
    transition: none
}

.mb-slideshow .content-tile--vehicle-overlay__timeline-progress-bar--paused {
    width: 0%;
    z-index: 5
}

.mb-slideshow .mb-slideshow__container[data-autoplay-disabled="true"] .active .content-tile--vehicle-overlay__timeline-progress-bar--paused {
    width: 100%
}

@media screen and (min-width: 768px) {

    body[data-editorial="true"] .content-tile,
    [data-editorial="true"].grid-debugger .content-tile {
        min-height: 400px
    }
}

body[data-theme="theme-page"] .content-tile,
[data-theme="theme-page"].grid-debugger .content-tile {
    color: #fff
}

.theme-page-component .content-tile {
    color: #fff
}

.content-tile__tile-heading {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 15px
}

@media screen and (min-width: 768px) {
    .content-tile__tile-heading {
        margin-bottom: 20px
    }
}

body[data-theme="theme-page"] .content-tile__tile-heading,
[data-theme="theme-page"].grid-debugger .content-tile__tile-heading {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff
}

.theme-page-component .content-tile__tile-heading {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff
}

body[data-theme="amg"] .content-tile__tile-heading,
[data-theme="amg"].grid-debugger .content-tile__tile-heading {
    color: #fff
}

.amg-component .content-tile__tile-heading {
    color: #fff
}

.mb-slideshow__gallery-inner-wrapper--center .content-tile__tile-heading {
    text-align: center
}

.content-tile__tile-desc {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 15px
}

@media only print {
    .content-tile__tile-desc {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .content-tile__tile-desc {
        margin-bottom: 20px
    }
}

body[data-theme="theme-page"] .content-tile__tile-desc,
[data-theme="theme-page"].grid-debugger .content-tile__tile-desc {
    margin-bottom: 10px;
    color: #fff
}

.theme-page-component .content-tile__tile-desc {
    margin-bottom: 10px;
    color: #fff
}

body[data-theme="amg"] .content-tile__tile-desc,
[data-theme="amg"].grid-debugger .content-tile__tile-desc {
    color: #fff
}

.amg-component .content-tile__tile-desc {
    color: #fff
}

.mb-slideshow__gallery-inner-wrapper--center .content-tile__tile-desc {
    text-align: center
}

body[data-theme="amg"] .content-tile__tile-desc.rte a,
[data-theme="amg"].grid-debugger .content-tile__tile-desc.rte a {
    color: #eb0000
}

.amg-component .content-tile__tile-desc.rte a {
    color: #eb0000
}

.content-tile__tile-desc:last-child {
    margin-bottom: 0px
}

.content-tile__tile--button {
    text-align: left;
    cursor: pointer
}

.content-tile__tile .content-tile__modal {
    display: none
}

.content-tile__vehicle-modal {
    padding: 0 40px
}

.content-tile__vehicle-modal h3 {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    margin: 40px 0
}

@media screen and (min-width: 980px),
only print {
    .content-tile__vehicle-modal h3 {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.content-tile__grid {
    width: 100%
}

.content-tile__grid-item {
    position: relative;
    margin-bottom: 40px
}

@media screen and (min-width: 768px) {
    .content-tile__grid-item {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 31.76157%;
        margin-bottom: 20px
    }

    .content-tile__grid-item:last-child {
        margin-right: 0
    }

    .content-tile__grid-item:nth-child(3n) {
        margin-right: 0
    }

    .content-tile__grid-item:nth-child(3n+1) {
        clear: left
    }
}

.content-tile__vehicle-link {
    display: block;
    text-decoration: none
}

body[data-theme="theme-page"] .content-tile__vehicle-link:link,
[data-theme="theme-page"].grid-debugger .content-tile__vehicle-link:link,
body[data-theme="theme-page"] .content-tile__vehicle-link:visited,
[data-theme="theme-page"].grid-debugger .content-tile__vehicle-link:visited,
body[data-theme="theme-page"] .content-tile__vehicle-link:hover,
[data-theme="theme-page"].grid-debugger .content-tile__vehicle-link:hover,
body[data-theme="theme-page"] .content-tile__vehicle-link:active,
[data-theme="theme-page"].grid-debugger .content-tile__vehicle-link:active,
body[data-theme="theme-page"] .content-tile__vehicle-link:focus,
[data-theme="theme-page"].grid-debugger .content-tile__vehicle-link:focus {
    color: #176db7
}

.theme-page-component .content-tile__vehicle-link:link,
.theme-page-component .content-tile__vehicle-link:visited,
.theme-page-component .content-tile__vehicle-link:hover,
.theme-page-component .content-tile__vehicle-link:active,
.theme-page-component .content-tile__vehicle-link:focus {
    color: #176db7
}

.content-tile__vehicle-image {
    width: 100%;
    margin-bottom: 20px;
    vertical-align: bottom
}

.content-tile__vehicle-info {
    text-align: center
}

.content-tile__vehicle-name {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 28px;
    line-height: 34px;
    font-weight: 400;
    color: #000
}

@media screen and (min-width: 980px),
only print {
    .content-tile__vehicle-name {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

body[data-theme="theme-page"] .content-tile__vehicle-name,
[data-theme="theme-page"].grid-debugger .content-tile__vehicle-name {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400
}

@media only print {

    body[data-theme="theme-page"] .content-tile__vehicle-name,
    [data-theme="theme-page"].grid-debugger .content-tile__vehicle-name {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {

    body[data-theme="theme-page"] .content-tile__vehicle-name,
    [data-theme="theme-page"].grid-debugger .content-tile__vehicle-name {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

.theme-page-component .content-tile__vehicle-name {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400
}

@media only print {
    .theme-page-component .content-tile__vehicle-name {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {
    .theme-page-component .content-tile__vehicle-name {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

.content-tile__vehicle-msrp {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #717171;
    margin-bottom: 10px
}

.content-tile__vehicle-learn-more {
    font-family: "corpos", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 20px
}

body[data-theme="theme-page"] .content-tile__vehicle-learn-more:hover,
[data-theme="theme-page"].grid-debugger .content-tile__vehicle-learn-more:hover,
body[data-theme="theme-page"] .content-tile__vehicle-learn-more:focus,
[data-theme="theme-page"].grid-debugger .content-tile__vehicle-learn-more:focus {
    color: #2e7cbe
}

.theme-page-component .content-tile__vehicle-learn-more:hover,
.theme-page-component .content-tile__vehicle-learn-more:focus {
    color: #2e7cbe
}

.content-tile .rte>*:last-child {
    margin-bottom: 0
}

@media screen and (min-width: 768px) {
    .content-tile__text-container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto
    }

    .content-tile__text-container::after {
        clear: both;
        content: '';
        display: block
    }
}

.content-tile__text-container>*:last-child {
    margin-bottom: 0
}

.content-tile__button {
    color: #000;
    display: block
}

.content-tile__image-container {
    margin-bottom: 10px;
    width: 100%
}

body[data-theme="theme-page"] .content-tile__image-container,
[data-theme="theme-page"].grid-debugger .content-tile__image-container {
    margin-bottom: 25px
}

.theme-page-component .content-tile__image-container {
    margin-bottom: 25px
}

@media screen and (min-width: 768px) {
    .content-tile__image-container {
        margin-bottom: 15px
    }
}

.content-tile__image-container img {
    width: 100%
}

.content-tile__overlay-link-container {
    margin-top: 10px
}

.mb-slideshow__gallery-inner-wrapper--center .content-tile__overlay-link-container {
    text-align: center
}

body[data-theme="theme-page"] .content-tile__overlay-link-container .content-tile__link,
[data-theme="theme-page"].grid-debugger .content-tile__overlay-link-container .content-tile__link {
    color: #2e7cbe;
    cursor: pointer
}

body[data-theme="theme-page"] .content-tile__overlay-link-container .content-tile__link:active,
[data-theme="theme-page"].grid-debugger .content-tile__overlay-link-container .content-tile__link:active {
    color: #176db7
}

body[data-theme="theme-page"] .content-tile__overlay-link-container .content-tile__link:visited,
[data-theme="theme-page"].grid-debugger .content-tile__overlay-link-container .content-tile__link:visited,
body[data-theme="theme-page"] .content-tile__overlay-link-container .content-tile__link:hover,
[data-theme="theme-page"].grid-debugger .content-tile__overlay-link-container .content-tile__link:hover,
body[data-theme="theme-page"] .content-tile__overlay-link-container .content-tile__link:focus,
[data-theme="theme-page"].grid-debugger .content-tile__overlay-link-container .content-tile__link:focus {
    color: #2e7cbe
}

.theme-page-component .content-tile__overlay-link-container .content-tile__link {
    color: #2e7cbe;
    cursor: pointer
}

.theme-page-component .content-tile__overlay-link-container .content-tile__link:active {
    color: #176db7
}

.theme-page-component .content-tile__overlay-link-container .content-tile__link:visited,
.theme-page-component .content-tile__overlay-link-container .content-tile__link:hover,
.theme-page-component .content-tile__overlay-link-container .content-tile__link:focus {
    color: #2e7cbe
}

.content-tile__video-preview-container {
    position: relative;
    background-color: #393939;
    overflow: hidden;
    transition: opacity .8s ease-in-out
}

.content-tile__icon-play {
    border-radius: 50%;
    border: 2px solid #fff;
    width: auto;
    height: 75px;
    max-height: 80%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2
}

.content-tile__circle {
    opacity: 0.5;
    fill: #000
}

.content-tile__triangle {
    fill: #fff
}

.content-tile__preview-image {
    width: 100%;
    position: relative
}

.content-tile__youtube-container {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    transition: opacity .8s ease-in-out;
    opacity: 0.0001;
    z-index: 3
}

body[data-theme="theme-page"] .multimedia-tile__media-container,
[data-theme="theme-page"].grid-debugger .multimedia-tile__media-container {
    margin-bottom: 25px
}

.theme-page-component .multimedia-tile__media-container {
    margin-bottom: 25px
}

.multimedia-tile__media-container img {
    width: 100%
}

.text-tile__button {
    text-align: unset;
    width: 100%;
    cursor: pointer
}

.compact-tile-grid__copy-container--button .content-tile__button .content-tile__link,
.large-tile-grid__copy-container--button .content-tile__button .content-tile__link,
.overlay-tile-grid__container--button .content-tile__button .content-tile__link {
    border-radius: 2px;
    color: currentColor;
    display: inline-block;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.83333;
    padding: 5px 10px;
    text-decoration: none;
    cursor: pointer;
    background-color: #176db7;
    color: #fff;
    padding: 5px 35px
}

.compact-tile-grid__copy-container--button .content-tile__button .content-tile__link:focus,
.large-tile-grid__copy-container--button .content-tile__button .content-tile__link:focus,
.overlay-tile-grid__container--button .content-tile__button .content-tile__link:focus {
    animation: none;
    outline: none
}

.compact-tile-grid__copy-container--button .content-tile__button .content-tile__link:hover,
.compact-tile-grid__copy-container--button .content-tile__button .content-tile__link:focus,
a:hover .compact-tile-grid__copy-container--button .content-tile__button .content-tile__link,
a:focus .compact-tile-grid__copy-container--button .content-tile__button .content-tile__link,
.large-tile-grid__copy-container--button .content-tile__button .content-tile__link:hover,
.large-tile-grid__copy-container--button .content-tile__button .content-tile__link:focus,
a:hover .large-tile-grid__copy-container--button .content-tile__button .content-tile__link,
a:focus .large-tile-grid__copy-container--button .content-tile__button .content-tile__link,
.overlay-tile-grid__container--button .content-tile__button .content-tile__link:hover,
.overlay-tile-grid__container--button .content-tile__button .content-tile__link:focus,
a:hover .overlay-tile-grid__container--button .content-tile__button .content-tile__link,
a:focus .overlay-tile-grid__container--button .content-tile__button .content-tile__link {
    background-color: #2e7cbe;
    color: #fff
}

.compact-tile-grid__copy-container--button .content-tile__button .content-tile__link:hover,
.compact-tile-grid__copy-container--button .content-tile__button .content-tile__link:focus,
.large-tile-grid__copy-container--button .content-tile__button .content-tile__link:hover,
.large-tile-grid__copy-container--button .content-tile__button .content-tile__link:focus,
.overlay-tile-grid__container--button .content-tile__button .content-tile__link:hover,
.overlay-tile-grid__container--button .content-tile__button .content-tile__link:focus {
    color: #fff
}

.compact-tile-grid__copy-container--button .content-tile__button .content-tile__link+.app-badges,
.large-tile-grid__copy-container--button .content-tile__button .content-tile__link+.app-badges,
.overlay-tile-grid__container--button .content-tile__button .content-tile__link+.app-badges {
    margin-top: 10px
}

@media screen and (min-width: 768px) {

    .compact-tile-grid__copy-container--button .content-tile__button .content-tile__link+.app-badges,
    .large-tile-grid__copy-container--button .content-tile__button .content-tile__link+.app-badges,
    .overlay-tile-grid__container--button .content-tile__button .content-tile__link+.app-badges {
        margin-top: 15px
    }
}

.compact-tile-grid__copy-container--button .content-tile__button:hover .content-tile__link,
.compact-tile-grid__copy-container--button .content-tile__button:focus .content-tile__link,
.large-tile-grid__copy-container--button .content-tile__button:hover .content-tile__link,
.large-tile-grid__copy-container--button .content-tile__button:focus .content-tile__link,
.overlay-tile-grid__container--button .content-tile__button:hover .content-tile__link,
.overlay-tile-grid__container--button .content-tile__button:focus .content-tile__link {
    color: #fff;
    background-color: #2e7cbe
}

.large-tile-grid__copy-container--left .content-tile__tile-heading {
    text-align: left
}

.large-tile-grid__copy-container--left .content-tile__link-container,
.large-tile-grid__copy-container--left .content-tile__tile-desc {
    text-align: left
}

@media screen and (min-width: 768px) {

    .large-tile-grid__copy-container--left .content-tile__link-container,
    .large-tile-grid__copy-container--left .content-tile__tile-desc {
        float: left;
        display: block;
        margin-right: 4.82916%;
        width: 82.52847%
    }

    .large-tile-grid__copy-container--left .content-tile__link-container:last-child,
    .large-tile-grid__copy-container--left .content-tile__tile-desc:last-child {
        margin-right: 0
    }

    .large-tile-grid__copy-container--left .content-tile__link-container--multimedia-tile,
    .large-tile-grid__copy-container--left .content-tile__tile-desc--multimedia-tile {
        float: none
    }

    body[data-theme="theme-page"] .large-tile-grid__copy-container--left .content-tile__link-container,
    [data-theme="theme-page"].grid-debugger .large-tile-grid__copy-container--left .content-tile__link-container,
    body[data-theme="theme-page"] .large-tile-grid__copy-container--left .content-tile__tile-desc,
    [data-theme="theme-page"].grid-debugger .large-tile-grid__copy-container--left .content-tile__tile-desc {
        float: left;
        display: block;
        margin-right: 4.82916%;
        width: 65.05695%
    }

    body[data-theme="theme-page"] .large-tile-grid__copy-container--left .content-tile__link-container:last-child,
    [data-theme="theme-page"].grid-debugger .large-tile-grid__copy-container--left .content-tile__link-container:last-child,
    body[data-theme="theme-page"] .large-tile-grid__copy-container--left .content-tile__tile-desc:last-child,
    [data-theme="theme-page"].grid-debugger .large-tile-grid__copy-container--left .content-tile__tile-desc:last-child {
        margin-right: 0
    }

    .theme-page-component .large-tile-grid__copy-container--left .content-tile__link-container,
    .theme-page-component .large-tile-grid__copy-container--left .content-tile__tile-desc {
        float: left;
        display: block;
        margin-right: 4.82916%;
        width: 65.05695%
    }

    .theme-page-component .large-tile-grid__copy-container--left .content-tile__link-container:last-child,
    .theme-page-component .large-tile-grid__copy-container--left .content-tile__tile-desc:last-child {
        margin-right: 0
    }
}

.large-tile-grid__copy-container--center .content-tile__tile-heading {
    text-align: center
}

.large-tile-grid__copy-container--center .content-tile__link-container,
.large-tile-grid__copy-container--center .content-tile__tile-desc {
    text-align: center
}

@media screen and (min-width: 768px) {

    .large-tile-grid__copy-container--center .content-tile__link-container,
    .large-tile-grid__copy-container--center .content-tile__tile-desc {
        float: left;
        display: block;
        margin-right: 4.82916%;
        width: 65.05695%;
        margin-left: 17.47153%
    }

    .large-tile-grid__copy-container--center .content-tile__link-container:last-child,
    .large-tile-grid__copy-container--center .content-tile__tile-desc:last-child {
        margin-right: 0
    }

    .large-tile-grid__copy-container--center .content-tile__link-container--multimedia-tile,
    .large-tile-grid__copy-container--center .content-tile__tile-desc--multimedia-tile {
        float: none
    }
}

body[data-theme="amg"] .compact-tile-grid__copy-container--button .content-tile__button .link_plain-link,
[data-theme="amg"].grid-debugger .compact-tile-grid__copy-container--button .content-tile__button .link_plain-link,
body[data-theme="amg"] .large-tile-grid__copy-container--button .content-tile__button .link_plain-link,
[data-theme="amg"].grid-debugger .large-tile-grid__copy-container--button .content-tile__button .link_plain-link {
    color: #fff;
    background: #eb0000
}

body[data-theme="amg"] .compact-tile-grid__copy-container--button .content-tile__button .link_plain-link:hover,
[data-theme="amg"].grid-debugger .compact-tile-grid__copy-container--button .content-tile__button .link_plain-link:hover,
body[data-theme="amg"] .large-tile-grid__copy-container--button .content-tile__button .link_plain-link:hover,
[data-theme="amg"].grid-debugger .large-tile-grid__copy-container--button .content-tile__button .link_plain-link:hover {
    background: #f14b4b
}

.amg-component .compact-tile-grid__copy-container--button .content-tile__button .link_plain-link,
.amg-component .large-tile-grid__copy-container--button .content-tile__button .link_plain-link {
    color: #fff;
    background: #eb0000
}

.amg-component .compact-tile-grid__copy-container--button .content-tile__button .link_plain-link:hover,
.amg-component .large-tile-grid__copy-container--button .content-tile__button .link_plain-link:hover {
    background: #f14b4b
}

body[data-theme="theme-page"] .compact-tile-grid__copy-container--button .content-tile__button .content-tile__text-container .content-tile__link,
[data-theme="theme-page"].grid-debugger .compact-tile-grid__copy-container--button .content-tile__button .content-tile__text-container .content-tile__link {
    color: #fff
}

.theme-page-component .compact-tile-grid__copy-container--button .content-tile__button .content-tile__text-container .content-tile__link {
    color: #fff
}

.overlay-tile-grid__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px
}

@media only print {
    .overlay-tile-grid__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {
    .overlay-tile-grid__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .overlay-tile-grid__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 36px;
        line-height: 36px;
        font-weight: 400;
        margin-bottom: 20px
    }
}

.overlay-tile-grid__container {
    text-align: left
}

.overlay-tile-grid__container--center {
    text-align: center
}

.overlay-tile-grid__tiles {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
}

.overlay-tile-grid__tiles::after {
    clear: both;
    content: '';
    display: block
}

.overlay-tile-grid__tiles .multimedia-tile__description,
.overlay-tile-grid__tiles .multimedia-tile__link,
.overlay-tile-grid__tiles .multimedia-asset__video {
    display: none
}

@media screen and (min-width: 768px) {
    .overlay-tile-grid .layout-tile-item {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 23.23176%
    }

    .overlay-tile-grid .layout-tile-item:last-child {
        margin-right: 0
    }

    .overlay-tile-grid .layout-tile-item:nth-child(4n) {
        margin-right: 0
    }

    .overlay-tile-grid .layout-tile-item:nth-child(4n+1) {
        clear: left
    }

    body[data-editorial="true"] .overlay-tile-grid .layout-tile-item:nth-child(4n+1),
    [data-editorial="true"].grid-debugger .overlay-tile-grid .layout-tile-item:nth-child(4n+1) {
        clear: none
    }
}

body[data-editorial="true"] .overlay-tile-grid .newpar,
[data-editorial="true"].grid-debugger .overlay-tile-grid .newpar {
    float: left;
    width: 100%
}

@media screen and (min-width: 980px) {
    .faq-module {
        padding-bottom: 25px
    }
}

.faq-module__title {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 15px
}

@media only print {
    .faq-module__title {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.faq-module__accordion {
    margin-bottom: 25px
}

.faq-module__cta-container {
    text-align: center
}

body[data-theme="theme-page"] .mb-slideshow__container,
[data-theme="theme-page"].grid-debugger .mb-slideshow__container {
    color: #fff
}

.theme-page-component .mb-slideshow__container {
    color: #fff
}

.mb-slideshow__header-container {
    margin-bottom: 25px
}

@media screen and (min-width: 768px) {
    .mb-slideshow__header-container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 74.41059%;
        margin-left: 25.58941%
    }

    .mb-slideshow__header-container:last-child {
        margin-right: 0
    }
}

.mb-slideshow__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px
}

@media screen and (min-width: 768px) {
    .mb-slideshow__heading {
        float: left;
        display: block;
        margin-right: 3.16844%;
        width: 65.61052%
    }

    .mb-slideshow__heading:last-child {
        margin-right: 0
    }
}

.mb-slideshow__subheading {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    text-align: center
}

@media only print {
    .mb-slideshow__subheading {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .mb-slideshow__subheading {
        float: left;
        display: block;
        margin-right: 3.16844%;
        width: 65.61052%
    }

    .mb-slideshow__subheading:last-child {
        margin-right: 0
    }
}

.mb-slideshow__auto-advance-container {
    text-align: right;
    margin-bottom: 5px
}

.mb-slideshow__auto-advance-container.hide {
    display: none
}

.mb-slideshow__auto-advance-button {
    transition: opacity 0.2s linear
}

@media screen and (min-width: 980px) {
    .mb-slideshow__auto-advance-button {
        cursor: pointer
    }
}

.mb-slideshow__auto-advance-button[aria-disabled="true"] {
    cursor: default;
    opacity: 0.4;
    pointer-events: none
}

.mb-slideshow__auto-advance-label {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #000;
    position: relative;
    top: -2px;
    left: 0
}

body[data-theme="theme-page"] .mb-slideshow__auto-advance-label,
[data-theme="theme-page"].grid-debugger .mb-slideshow__auto-advance-label {
    color: #fff
}

.theme-page-component .mb-slideshow__auto-advance-label {
    color: #fff
}

.mb-slideshow__auto-advance-icon {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 2px solid #2e7cbe;
    display: inline-block;
    transform: translate(0%, 3px);
    margin-left: 5px
}

.mb-slideshow__auto-advance-icon:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #2e7cbe;
    margin: 5px auto 0
}

.mb-slideshow__auto-advance-button--play .mb-slideshow__auto-advance-icon:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 8px;
    color: #2e7cbe;
    background-color: transparent;
    margin: 0;
    position: absolute;
    left: 5px;
    top: 3px
}

.mb-slideshow__gallery-container {
    overflow: hidden
}

.mb-slideshow__gallery-outer-wrapper {
    visibility: visible
}

.mb-slideshow__gallery-tiles-images {
    display: none
}

.mb-slideshow__gallery-inner-wrapper {
    font-size: 0;
    white-space: nowrap;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1)
}

@media screen and (min-width: 980px) {
    .mb-slideshow__gallery-inner-wrapper {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto
    }

    .mb-slideshow__gallery-inner-wrapper::after {
        clear: both;
        content: '';
        display: block
    }
}

body[data-editorial="true"] .mb-slideshow__gallery-inner-wrapper,
[data-editorial="true"].grid-debugger .mb-slideshow__gallery-inner-wrapper {
    display: block;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

body[data-editorial="true"] .mb-slideshow__gallery-inner-wrapper::after,
[data-editorial="true"].grid-debugger .mb-slideshow__gallery-inner-wrapper::after {
    clear: both;
    content: '';
    display: block
}

.mb-slideshow__gallery-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s linear
}

.mb-slideshow__gallery-hero-image--active {
    position: relative;
    opacity: 1;
    transition-delay: 0.1s;
    pointer-events: auto
}

.mb-slideshow__gallery-hero-image-wrapper {
    display: none
}

@media screen and (min-width: 980px) {
    .mb-slideshow__gallery-hero-image-wrapper {
        position: relative;
        display: block;
        width: 100%;
        margin-bottom: 25px
    }

    body[data-editorial="true"] .mb-slideshow__gallery-hero-image-wrapper,
    [data-editorial="true"].grid-debugger .mb-slideshow__gallery-hero-image-wrapper {
        display: none
    }
}

body[data-editorial="true"] .mb-slideshow .newpar,
[data-editorial="true"].grid-debugger .mb-slideshow .newpar {
    float: left;
    width: 100%
}

.accordion__expand-collapse-all-container {
    display: none
}

.accordion--disabled:after {
    color: #999
}

.accordion__button {
    font: inherit
}

body[data-theme="amg"] .accordion__button,
[data-theme="amg"].grid-debugger .accordion__button {
    color: #fff
}

.amg-component .accordion__button {
    color: #fff
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active>.accordion__title:after {
    color: #2e7cbe;
    transform: rotate(180deg) translateY(50%)
}

body[data-theme="amg"] .accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active>.accordion__title:after,
[data-theme="amg"].grid-debugger .accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active>.accordion__title:after {
    color: #eb0000
}

.amg-component .accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active>.accordion__title:after {
    color: #eb0000
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active>.accordion__pane {
    display: block
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    border-top: 1px solid #c6c6c6;
    position: relative
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title--disabled:after {
    color: #c6c6c6
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button {
    cursor: pointer;
    text-align: left;
    width: 100%;
    position: relative;
    padding: 15px 25px 15px 0;
    z-index: 1
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button--disabled:focus {
    animation: none;
    outline: none
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button--disabled:hover {
    cursor: default
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane {
    display: none;
    border-top: 1px solid #c6c6c6;
    padding: 10px
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__expand-collapse-all-container {
    display: block;
    margin-bottom: 10px;
    padding-right: 10px;
    text-align: right;
    width: 100%
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__expand-collapse-all {
    display: inline-block
}

.accordion:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__expand-collapse-all:first-child:after {
    content: '|';
    font-size: 14px;
    padding: 0 5px
}

@media screen and (min-width: 768px) {
    .accordion--disabled-small .accordion__item--active>.accordion__title:after {
        color: #2e7cbe;
        transform: rotate(180deg) translateY(50%)
    }

    body[data-theme="amg"] .accordion--disabled-small .accordion__item--active>.accordion__title:after,
    [data-theme="amg"].grid-debugger .accordion--disabled-small .accordion__item--active>.accordion__title:after {
        color: #eb0000
    }

    .amg-component .accordion--disabled-small .accordion__item--active>.accordion__title:after {
        color: #eb0000
    }

    .accordion--disabled-small .accordion__item--active>.accordion__pane {
        display: block
    }

    .accordion--disabled-small .accordion__title {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        border-top: 1px solid #c6c6c6;
        position: relative
    }

    .accordion--disabled-small .accordion__title:after {
        content: "";
        font-family: nafta-icons;
        font-weight: normal;
        font-size: 100%;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%)
    }

    .accordion--disabled-small .accordion__title--disabled:after {
        color: #c6c6c6
    }

    .accordion--disabled-small .accordion__button {
        cursor: pointer;
        text-align: left;
        width: 100%;
        position: relative;
        padding: 15px 25px 15px 0;
        z-index: 1
    }

    .accordion--disabled-small .accordion__button--disabled:focus {
        animation: none;
        outline: none
    }

    .accordion--disabled-small .accordion__button--disabled:hover {
        cursor: default
    }

    .accordion--disabled-small .accordion__pane {
        display: none;
        border-top: 1px solid #c6c6c6;
        padding: 10px
    }

    .accordion--disabled-small .accordion__expand-collapse-all-container {
        display: block;
        margin-bottom: 10px;
        padding-right: 10px;
        text-align: right;
        width: 100%
    }

    .accordion--disabled-small .accordion__expand-collapse-all {
        display: inline-block
    }

    .accordion--disabled-small .accordion__expand-collapse-all:first-child:after {
        content: '|';
        font-size: 14px;
        padding: 0 5px
    }
}

@media screen and (max-width: 767px) {
    .accordion--disabled-large .accordion__item--active>.accordion__title:after {
        color: #2e7cbe;
        transform: rotate(180deg) translateY(50%)
    }

    body[data-theme="amg"] .accordion--disabled-large .accordion__item--active>.accordion__title:after,
    [data-theme="amg"].grid-debugger .accordion--disabled-large .accordion__item--active>.accordion__title:after {
        color: #eb0000
    }

    .amg-component .accordion--disabled-large .accordion__item--active>.accordion__title:after {
        color: #eb0000
    }

    .accordion--disabled-large .accordion__item--active>.accordion__pane {
        display: block
    }

    .accordion--disabled-large .accordion__title {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700;
        border-top: 1px solid #c6c6c6;
        position: relative
    }

    .accordion--disabled-large .accordion__title:after {
        content: "";
        font-family: nafta-icons;
        font-weight: normal;
        font-size: 100%;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%)
    }

    .accordion--disabled-large .accordion__title--disabled:after {
        color: #c6c6c6
    }

    .accordion--disabled-large .accordion__button {
        cursor: pointer;
        text-align: left;
        width: 100%;
        position: relative;
        padding: 15px 25px 15px 0;
        z-index: 1
    }

    .accordion--disabled-large .accordion__button--disabled:focus {
        animation: none;
        outline: none
    }

    .accordion--disabled-large .accordion__button--disabled:hover {
        cursor: default
    }

    .accordion--disabled-large .accordion__pane {
        display: none;
        border-top: 1px solid #c6c6c6;
        padding: 10px
    }

    .accordion--disabled-large .accordion__expand-collapse-all-container {
        display: block;
        margin-bottom: 10px;
        padding-right: 10px;
        text-align: right;
        width: 100%
    }

    .accordion--disabled-large .accordion__expand-collapse-all {
        display: inline-block
    }

    .accordion--disabled-large .accordion__expand-collapse-all:first-child:after {
        content: '|';
        font-size: 14px;
        padding: 0 5px
    }
}

.accordion--footer .accordion__title {
    color: #000
}

.accordion--footer .accordion__button {
    color: #000
}

@media screen and (max-width: 767px) {
    .accordion--footer .accordion__button {
        padding: 10px
    }
}

body[data-theme="amg"] .accordion--footer .accordion__button,
[data-theme="amg"].grid-debugger .accordion--footer .accordion__button {
    color: #000
}

.amg-component .accordion--footer .accordion__button {
    color: #000
}

@media screen and (max-width: 767px) {
    .accordion--footer .accordion__pane {
        background-color: #fff
    }
}

@media screen and (max-width: 767px) {
    .accordion--footer .accordion__title:after {
        content: "";
        font-family: nafta-icons;
        font-weight: normal;
        font-size: 100%
    }
}

.accordion--full-width:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button {
    padding-left: 0;
    padding-right: 0
}

.accordion--full-width:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane {
    padding-left: 0;
    padding-right: 0
}

.accordion--highlight:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title:after {
    color: #176db7
}

.accordion--highlight:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title--disabled:after {
    color: #c6c6c6
}

.accordion--model-data:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button {
    height: 50px;
    padding: 10px 20px
}

.accordion--model-data:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title {
    border-top: none;
    padding: 0
}

.accordion--model-data:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title:after {
    right: 15px
}

.accordion--model-data:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane {
    padding: 10px 0;
    border-top: none
}

.accordion--no-pane-border:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane {
    border-top: none
}

.accordion--dealer-locator:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item:first-of-type .accordion__title {
    border-top: none
}

.accordion--dealer-locator:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active .accordion__button {
    color: #2e7cbe
}

.accordion--dealer-locator:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title {
    border-color: #e3e3e3
}

.accordion--dealer-locator:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 20px;
    color: #999
}

.accordion--dealer-locator:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane {
    border-top: none
}

.accordion--dealer-locator:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button {
    padding: 15px 10px
}

.accordion--no-padding:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane {
    padding: 0;
    border: none
}

.accordion--no-padding:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button {
    padding: 0
}

.accordion--inverse:not(.accordion--disabled-small):not(.accordion--disabled-large)>.accordion__item>.accordion__title {
    background: #000
}

.accordion--inverse:not(.accordion--disabled-small):not(.accordion--disabled-large)>.accordion__item>.accordion__title .accordion__button {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #fff;
    cursor: pointer
}

@media only print {
    .accordion--inverse:not(.accordion--disabled-small):not(.accordion--disabled-large)>.accordion__item>.accordion__title .accordion__button {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.accordion--inverse:not(.accordion--disabled-small):not(.accordion--disabled-large)>.accordion__item>.accordion__title:after {
    color: #fff
}

.accordion--inverse:not(.accordion--disabled-small):not(.accordion--disabled-large)>.accordion__item:first-child>.accordion__title {
    border-top: none
}

.accordion--inverse:not(.accordion--disabled-small):not(.accordion--disabled-large)>.accordion__item--active>.accordion__title:after {
    color: #176db7 !important
}

.accordion--bottom-arrow:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title {
    border: none
}

.accordion--bottom-arrow:not(.accordion--disabled-small):not(.accordion--disabled-large)>.accordion__item>.accordion__title:after {
    top: auto;
    bottom: 5px;
    transform: translateY(0)
}

.accordion--bottom-arrow:not(.accordion--disabled-small):not(.accordion--disabled-large)>.accordion__item--active>.accordion__title:after {
    transform: rotate(180deg) translateY(0)
}

.accordion--right-arrow:not(.accordion--disabled-small):not(.accordion--disabled-large)>.accordion__item>.accordion__title {
    display: -ms-flexbox;
    display: flex
}

.accordion--right-arrow:not(.accordion--disabled-small):not(.accordion--disabled-large)>.accordion__item>.accordion__title:after {
    right: 0
}

.accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title:after {
    color: #176db7;
    font-size: 15px;
    right: 0
}

body[data-theme="amg"] .accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title:after,
[data-theme="amg"].grid-debugger .accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title:after {
    color: #eb0000
}

.amg-component .accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title:after {
    color: #eb0000
}

.accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title--disabled:after {
    color: #c6c6c6
}

.accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400
}

@media only print {
    .accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane {
    padding: 10px 0
}

body[data-theme="amg"] .accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane .rte a,
[data-theme="amg"].grid-debugger .accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane .rte a {
    color: #eb0000
}

.amg-component .accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane .rte a {
    color: #eb0000
}

.accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item:last-child {
    border-bottom: 1px solid #c6c6c6
}

.accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active .accordion__button {
    color: #176db7
}

body[data-theme="amg"] .accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active .accordion__button,
[data-theme="amg"].grid-debugger .accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active .accordion__button {
    color: #eb0000
}

.amg-component .accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active .accordion__button {
    color: #eb0000
}

.accordion--specs:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active .accordion__pane {
    border-top: none
}

.accordion--box-pane:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane {
    padding: 20px
}

@media screen and (min-width: 768px) {
    .accordion--box-pane:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane {
        padding: 30px 45px
    }
}

.accordion--box-pane:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active .accordion__pane {
    border: 1px solid #c6c6c6;
    border-bottom: none
}

.accordion--drawer:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    padding: 15px 0;
    text-align: center
}

@media only print {
    .accordion--drawer:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

@media screen and (min-width: 768px) {
    .accordion--drawer:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__button {
        padding: 10px 30px;
        text-align: left
    }
}

.accordion--drawer:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__item--active .accordion__title:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    transform: none
}

.accordion--drawer:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title {
    border-bottom: 1px solid #c6c6c6
}

@media screen and (min-width: 768px) {
    .accordion--drawer:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title {
        border: 0
    }
}

.accordion--drawer:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__title:after {
    position: static;
    margin-left: 15px;
    vertical-align: middle;
    transform: none
}

.accordion--drawer:not(.accordion--disabled-small):not(.accordion--disabled-large) .accordion__pane {
    padding: 0;
    border-top: none
}

.mbs-auth-nav--hide {
    display: none
}

.mbs-auth-nav__cta {
    cursor: pointer
}

.mbs-auth-nav__cta:before {
    border: none !important
}

.mbs-auth-nav__cta:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    position: absolute;
    top: 9px;
    left: -11px;
    font-size: 25px
}

.mbs-auth-nav__cta--active {
    color: #176db7
}

.mbs-auth-nav--register .top-nav__link {
    position: relative
}

@media screen and (min-width: 768px) {
    .mbs-auth-nav--register .top-nav__link {
        padding: 15px 0 13px 15px
    }
}

.mbs-auth-nav--register .top-nav__link::before {
    border-right: 1px solid #fff;
    content: '';
    height: 18px;
    left: 0;
    position: absolute;
    top: 16px
}

.mbs-auth-nav--greeting {
    display: none
}

@media screen and (min-width: 768px) {
    .mbs-auth-nav--greeting {
        display: inline-block;
        position: relative
    }
}

.mbs-auth-nav--large-link {
    color: #000;
    padding-bottom: 15px
}

.mbs-auth-nav--large-link:last-child {
    padding-bottom: 0
}

.mbs-auth-nav--large-link .link_in-text {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .mbs-auth-nav--large-link .link_in-text {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.mbs-auth-nav--large-link .link_in-text:hover,
.mbs-auth-nav--large-link .link_in-text:focus {
    color: #2e7cbe !important
}

.mbs-auth-nav__links-container {
    display: block !important;
    line-height: 1;
    padding: 20px;
    background: #fff;
    margin-top: 10px;
    border-radius: 2px;
    border: 1px solid #c6c6c6
}

.mbs-auth-nav__links-container:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translate3d(0, -50%, 0);
    top: -6px;
    margin-left: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    top: 6px;
    left: 77%
}

.mbs-auth-nav__dropdown {
    width: 148px;
    position: absolute;
    top: 37px;
    right: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 0.04, 0.22, 0.97);
    max-height: 0;
    overflow: hidden;
    z-index: 100
}

.mbs-auth-nav__dropdown--active {
    height: auto;
    max-height: 600px;
    overflow: visible
}

.mbs-auth-nav .top-nav__link {
    text-align: left
}

body[data-theme="amg"] .carousel-nav__button,
[data-theme="amg"].grid-debugger .carousel-nav__button {
    color: #eb0000
}

body[data-theme="amg"] .carousel-nav__button--inactive,
[data-theme="amg"].grid-debugger .carousel-nav__button--inactive {
    color: #999;
    cursor: auto
}

.amg-component .carousel-nav__button {
    color: #eb0000
}

.amg-component .carousel-nav__button--inactive {
    color: #999;
    cursor: auto
}

body[data-theme="maybach"] .carousel-nav__button,
[data-theme="maybach"].grid-debugger .carousel-nav__button {
    color: #00635b
}

body[data-theme="maybach"] .carousel-nav__button--inactive,
[data-theme="maybach"].grid-debugger .carousel-nav__button--inactive {
    color: #999;
    cursor: auto
}

.maybach-component .carousel-nav__button {
    color: #00635b
}

.maybach-component .carousel-nav__button--inactive {
    color: #999;
    cursor: auto
}

body[data-theme="amg"] .carousel-nav__indicator-dot--selected,
[data-theme="amg"].grid-debugger .carousel-nav__indicator-dot--selected {
    background: #eb0000
}

.amg-component .carousel-nav__indicator-dot--selected {
    background: #eb0000
}

body[data-theme="maybach"] .carousel-nav__indicator-dot--selected,
[data-theme="maybach"].grid-debugger .carousel-nav__indicator-dot--selected {
    background: #00635b
}

.maybach-component .carousel-nav__indicator-dot--selected {
    background: #00635b
}

.carousel--modal-feature-detail .carousel-nav__buttons {
    top: calc(56.42202vw / 2 + 45px)
}

@media screen and (min-width: 768px) {
    .carousel--modal-feature-detail .carousel-nav__buttons {
        top: 50%
    }
}

.carousel--modal-feature-detail .modal-carousel__title {
    margin-bottom: 0
}

.content-loader {
    position: relative;
    min-height: 60px
}

.content-loader__spinner {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.content-loader__asset {
    display: block;
    width: 100%
}

.content-toggle {
    position: relative;
    -webkit-tap-highlight-color: transparent
}

.content-toggle__rollover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    transition: opacity .525s linear
}

.content-toggle__rollover.active {
    opacity: 1;
    cursor: pointer
}

@media screen and (max-width: 767px) {
    .dealer-locator {
        height: auto !important
    }
}

.dealer-locator__container {
    height: 100%
}

@media screen and (min-width: 768px) {
    .dealer-locator__container {
        display: -ms-flexbox;
        display: flex
    }
}

.dealer-locator__search {
    padding: 25px 15px;
    background-color: #f1f1f1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

@media screen and (min-width: 768px) {
    .dealer-locator__search {
        -ms-flex: 0 0 385px;
        flex: 0 0 385px
    }
}

.dealer-locator__search-bar {
    margin-bottom: 35px;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.dealer-locator__search-types {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.dealer-locator__search-types--disabled {
    display: none
}

.dealer-locator__results-container {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow-y: auto;
    background-color: #fff;
    border-top: none;
    border-radius: 0 0 2px 2px;
    padding: 0 10px;
    position: relative
}

.dealer-locator__map {
    display: none
}

@media screen and (min-width: 768px) {
    .dealer-locator__map {
        display: block;
        -ms-flex: auto;
        flex: auto
    }
}

.dealer-locator__expand-button {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    border-top: 1px solid #e3e3e3;
    color: #000;
    cursor: pointer;
    text-align: left;
    width: 100%;
    position: relative;
    padding: 10px;
    padding-right: 40px;
    z-index: 1
}

.dealer-locator__expand-button:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 20px;
    color: #999;
    position: absolute;
    right: 10px;
    top: 5px
}

.dealer-locator__expand-button:hover {
    color: #2e7cbe
}

.dealer-locator__expand-button:hover:after {
    color: #2e7cbe
}

.dealer-locator__expand-button--hide {
    display: none
}

.dealer-locator__radius-label {
    display: none;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #999;
    padding: 15px 10px;
    border-bottom: 1px solid #e3e3e3
}

.dealer-locator__radius-label--visible {
    display: block
}

.dealer-search-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    align-items: baseline
}

.dealer-search-bar__location-search {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-right: 10px
}

.dealer-search-bar__cta {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto
}

.dealer-search-type {
    display: -ms-flexbox;
    display: flex
}

.dealer-search-type__option {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 10px 15px;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
    background: #e3e3e3;
    cursor: pointer
}

@media only print {
    .dealer-search-type__option {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.dealer-search-type__option--active {
    background: #fff
}

@media screen and (min-width: 980px) {
    .dealer-search-type__option {
        padding-left: 30px;
        padding-right: 30px
    }
}

.dealer-locator-nav {
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px 30px 10px 10px
}

@media screen and (min-width: 768px) {
    .dealer-locator-nav {
        padding: 10px 0
    }
}

.dealer-locator-nav .form__input {
    background: #fff;
    padding-top: 0;
    padding-bottom: 0
}

.dealer-locator-nav .form__input-dropdown {
    display: none;
    line-height: 25px;
    background: #fff;
    color: #000;
    margin-left: 5px
}

.dealer-locator-nav .form__input-dropdown.error {
    display: none
}

.dealer-locator-nav .form__input-field {
    width: 100%;
    height: 27px;
    border-bottom: none;
    padding: 0 30px 0 5px
}

.dealer-locator-nav .form__input-field:focus {
    color: #000
}

.dealer-locator-nav .form__input-field.error {
    border: 1px solid #eb0000;
    color: #eb0000
}

.dealer-locator-nav .form__input-label {
    display: none !important
}

.dealer-locator-nav__label {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    display: inline-block;
    padding-bottom: 5px
}

@media screen and (min-width: 768px) {
    .dealer-locator-nav__label {
        color: #fff;
        margin-top: 3px;
        margin-right: 10px
    }

    .dealer-locator-nav__label-text {
        display: none
    }
}

.dealer-locator-nav__input {
    position: relative;
    width: 208px;
    height: auto;
    min-height: 30px;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .dealer-locator-nav__input {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.dealer-locator-nav__input:focus {
    outline: none
}

@media screen and (min-width: 768px) {
    .dealer-locator-nav__input {
        width: 228px
    }
}

.dealer-locator-nav__btn {
    position: absolute;
    float: none;
    top: 36px;
    left: 190px;
    height: 27px;
    width: 28px;
    border: 0 none;
    border-radius: 0;
    background-color: #2e7cbe;
    padding: unset;
    line-height: unset
}

.dealer-locator-nav__btn:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    display: inline;
    color: #fff
}

@media screen and (min-width: 768px) {
    .dealer-locator-nav__btn {
        top: 10px;
        left: auto;
        right: 0
    }
}

.dealer-results-list__loading-list {
    text-align: center
}

.dealer-location-search .dealer-results-list__empty-list-copy {
    padding: 10px
}

.dealer-selector__title {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center
}

@media only print {
    .dealer-selector__title {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 28px;
        line-height: 34px;
        font-weight: 400
    }
}

@media only print {
    .dealer-selector__title {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 30px;
        line-height: 38px;
        font-weight: 400
    }
}

.dealer-selector__desc {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #717171;
    margin-bottom: 20px;
    text-align: center
}

.dealer-selector-list__header {
    background: #f1f1f1;
    border-bottom: 1px solid #e3e3e3;
    padding: 10px;
    width: 100vw;
    left: calc((93.4375vw - 100vw) / 2);
    position: relative
}

@media screen and (min-width: 768px) {
    .dealer-selector-list__header {
        width: auto;
        left: auto
    }
}

.dealer-selector-list__header-label {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700
}

@media only print {
    .dealer-selector-list__header-label {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.dealer-selector-list__results-list {
    width: 100vw;
    left: calc((93.4375vw - 100vw) / 2);
    position: relative;
    border-bottom: 1px solid #e3e3e3
}

@media screen and (min-width: 768px) {
    .dealer-selector-list__results-list {
        width: auto;
        left: auto;
        border-bottom: 0;
        max-height: 338px;
        overflow-y: auto
    }
}

.dealer-selector-list .dealer-info__icon {
    color: #999
}

.dealer-selector-modal {
    height: calc(100% - 45px)
}

.dealer-selector-modal::after {
    clear: both;
    content: '';
    display: block
}

@media screen and (min-width: 768px) {
    .dealer-selector-modal {
        height: auto
    }
}

.dealer-selector-modal .dealer-selector-active-dealer {
    padding: 45px 10px
}

@media screen and (min-width: 768px) {
    .dealer-selector-modal .dealer-selector-active-dealer {
        padding: 40px 0;
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 82.94039%;
        margin-left: 8.5298%
    }

    .dealer-selector-modal .dealer-selector-active-dealer:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 768px) {
    .dealer-selector-modal .dealer-selector-location-search {
        float: left;
        display: block;
        margin-right: 2.84259%;
        width: 58.86297%;
        margin-left: 17.05961%
    }

    .dealer-selector-modal .dealer-selector-location-search:last-child {
        margin-right: 0
    }
}

.dealer-selector-modal .dealer-selector-dealer-search {
    min-height: 300px
}

.dealer-selector-modal .dealer-locator-module__heading {
    padding-bottom: 0
}

@media screen and (min-width: 768px) {
    .dealer-selector-modal .dealer-locator-module__heading {
        padding-top: 30px;
        padding-bottom: 15px
    }
}

@media screen and (max-width: 767px) {
    .dealer-selector-location-search .dealer-search-bar {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: stretch;
        align-items: stretch
    }
}

@media screen and (max-width: 767px) {
    .dealer-selector-location-search .dealer-search-bar__location-search {
        margin-bottom: 30px;
        margin-right: 0
    }
}

@media screen and (max-width: 767px) {
    .dealer-selector-location-search .dealer-search-bar__cta {
        text-align: center
    }
}

.dealer-selector-active-dealer {
    text-align: center
}

.dealer-selector-active-dealer__address {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 15px
}

.dealer-selector-active-dealer__phone-number {
    color: #176db7
}

.dealer-selector-active-dealer__button {
    margin-bottom: 15px
}

.dealer-selector-active-dealer__cta {
    clear: both
}

.dealer-selector-active-dealer__cta .link {
    cursor: pointer;
    font: inherit;
    line-height: initial
}

.dealer-selector-dealer-search {
    position: relative
}

.dealer-selector-dealer-search__content {
    display: -ms-flexbox;
    display: flex
}

@media screen and (min-width: 768px) {
    .dealer-selector-dealer-search__list-container {
        border: 1px solid #e3e3e3;
        height: 400px;
        overflow: hidden
    }
}

.dealer-selector-dealer-search__map {
    display: none
}

@media screen and (min-width: 768px) {
    .dealer-selector-dealer-search__map {
        display: block;
        -ms-flex: auto;
        flex: auto;
        height: 400px
    }
}

.dealer-selector-dealer-search .loading-spinner,
.dealer-selector-dealer-search .loading-message__spinner,
.dealer-selector-dealer-search .lazy-loader--has-spinner:not(.lazy-loader--loaded) {
    position: absolute;
    left: 50%
}

.dealer-selector-dealer-search .loading-spinner:before,
.dealer-selector-dealer-search .loading-message__spinner:before,
.dealer-selector-dealer-search .lazy-loader--has-spinner:not(.lazy-loader--loaded):before {
    top: auto
}

.dealer-info {
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 10px;
    position: relative;
    cursor: pointer
}

.dealer-info:last-of-type {
    border-bottom: none
}

.dealer-info[data-show="false"] {
    display: none
}

.dealer-info--slim {
    padding-left: 10px;
    padding-right: 10px
}

.dealer-info .link_secondary {
    margin-bottom: 10px
}

.dealer-info__inventory-link--collapsed {
    display: inline-block;
    padding-left: 30px;
    padding-top: 10px;
    color: #176db7;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {
    .dealer-info__inventory-link--collapsed {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

[data-selected-dealer="true"] .dealer-info__inventory-link--collapsed {
    display: none
}

@media screen and (min-width: 375px) {
    .dealer-info__inventory-link--collapsed {
        padding-left: 35px
    }
}

.dealer-info__inventory-link--expanded {
    display: none;
    width: 98%;
    margin-top: 15px;
    text-align: center
}

[data-selected-dealer="true"] .dealer-info__inventory-link--expanded {
    display: inline-block
}

.dealer-info .hideLink {
    display: none
}

.dealer-info__collision-center {
    padding-bottom: 10px
}

.dealer-info__collision-center--certified {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.83333
}

.dealer-info__collision-center--sponsor {
    font-family: "Arial", sans-serif;
    font-size: 11px;
    line-height: 24px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.83333;
    display: block;
    margin-top: 15px;
    color: #999
}

[data-selected-center="false"] .dealer-info__collision-center--sponsor {
    display: none
}

[data-selected-center="true"] .dealer-info__collision-center--sponsor {
    display: block
}

.dealer-info__address-container-dealer,
.dealer-info__address-container-cc {
    padding-top: 10px;
    padding-left: 30px
}

.dealer-info__address-container-dealer::before,
.dealer-info__address-container-cc::before {
    position: absolute;
    width: 5px;
    margin-top: -5px;
    right: 0;
    left: 0
}

@media screen and (min-width: 375px) {

    .dealer-info__address-container-dealer,
    .dealer-info__address-container-cc {
        padding-left: 35px
    }
}

[data-selected-center="true"] .dealer-info__address-container-cc {
    cursor: default
}

.dealer-info__address-container-cc::before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 25px
}

.dealer-info__address-container-dealer::before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 25px
}

[data-is-preferred="true"] .dealer-info__address-container-dealer::before {
    color: #176db7
}

.dealer-info--slim .dealer-info__address-container-dealer::before {
    left: 10px
}

.dealer-info__dealer-name {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    line-height: 1.83333;
    pointer-events: none
}

@media only print {
    .dealer-info__dealer-name {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

[data-selected-dealer="true"] .dealer-info__dealer-name {
    pointer-events: all
}

.dealer-info__dealer-distance {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    line-height: 1.83333;
    float: right;
    margin-right: 0
}

@media only print {
    .dealer-info__dealer-distance {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

@media screen and (min-width: 375px) {
    .dealer-info__dealer-distance {
        margin-right: 5px
    }
}

.dealer-info__address {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    line-height: 1.83333
}

@media only print {
    .dealer-info__address {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.dealer-info__address--street {
    display: none
}

[data-selected-dealer="true"] .dealer-info__address--street,
[data-selected-center="true"] .dealer-info__address--street {
    display: block
}

.dealer-info__phone-number {
    display: none;
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    line-height: 1.83333;
    color: #2e7cbe
}

@media only print {
    .dealer-info__phone-number {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

[data-selected-dealer="true"] .dealer-info__phone-number,
[data-selected-center="true"] .dealer-info__phone-number {
    display: block
}

.dealer-info__link-list {
    display: none;
    margin-top: 10px
}

[data-selected-dealer="true"] .dealer-info__link-list {
    display: block;
    padding-left: 15px
}

.dealer-info__link-list-item {
    margin-bottom: 5px
}

.dealer-info__icon {
    font-size: 6px
}

.dealer-info__preferred-dealer__small-heading {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #999;
    position: relative;
    display: none;
    top: 10px;
    left: 34px
}

@media only print {
    .dealer-info__preferred-dealer__small-heading {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.dealer-info__preferred-dealer__small-heading:hover {
    cursor: inherit
}

.dealer-info__preferred-dealer__small-heading--visible {
    display: block
}

.dealer-info__preferred-dealer-link--remove {
    display: none
}

[data-is-preferred="true"] .dealer-info__preferred-dealer-link--make {
    display: none
}

[data-is-preferred="true"] .dealer-info__preferred-dealer-link--remove {
    display: inline
}

.dealer-info__preferred-dealer-icon {
    color: #2e7cbe;
    font-size: 24px;
    vertical-align: middle;
    padding-left: 5px
}

body[data-variant=dealer] .variant-suphero,
[data-variant=dealer].grid-debugger .variant-suphero,
body[data-variant=wheelstand] .variant-suphero,
[data-variant=wheelstand].grid-debugger .variant-suphero,
body[data-variant=ondisplay] .variant-suphero,
[data-variant=ondisplay].grid-debugger .variant-suphero {
    position: relative;
    padding: 0
}

body[data-variant=dealer] .variant-suphero .language-selector,
[data-variant=dealer].grid-debugger .variant-suphero .language-selector,
body[data-variant=wheelstand] .variant-suphero .language-selector,
[data-variant=wheelstand].grid-debugger .variant-suphero .language-selector,
body[data-variant=largeformat] .variant-suphero .language-selector,
[data-variant=largeformat].grid-debugger .variant-suphero .language-selector,
body[data-variant=ondisplay] .variant-suphero .language-selector,
[data-variant=ondisplay].grid-debugger .variant-suphero .language-selector {
    margin: 45px 0 0;
    padding: 10px 20px;
    position: absolute;
    z-index: 2;
    right: 0;
    background-color: #fff
}

.language-selector {
    float: right
}

.variant-suphero .language-selector {
    padding-left: 30px;
    padding-right: 5px
}

.language-selector__item {
    position: relative;
    display: inline-block;
    height: 22px;
    margin-left: 10px
}

.language-selector__item--current {
    pointer-events: none;
    border-bottom: 2px solid #2e7cbe
}

body[data-theme="amg"] .language-selector__item--current,
[data-theme="amg"].grid-debugger .language-selector__item--current {
    border-color: #eb0000
}

.amg-component .language-selector__item--current {
    border-color: #eb0000
}

.language-selector__item__link {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000
}

.language-selector__item:first-of-type {
    margin: 0 15px 0 0
}

.language-selector__item:last-of-type::after {
    display: none
}

.language-selector__item::after {
    content: '';
    background-color: #c6c6c6;
    display: block;
    height: 22px;
    width: 2px;
    position: absolute;
    right: -16px;
    top: 1px
}

.lazy-loader {
    display: block;
    min-height: 1px;
    min-width: 1px
}

.lazy-loader__asset {
    opacity: 0;
    transition: opacity ease .3s
}

.lazy-loader__asset--minimized {
    height: 1px
}

.lazy-loader__asset--loaded {
    opacity: 1
}

.lazy-loader--has-spinner:not(.lazy-loader--loaded) {
    min-height: 40px;
    min-width: 40px;
    position: relative
}

.lazy-loader--has-spinner:not(.lazy-loader--loaded):before {
    left: calc(50% - 20px);
    top: calc(50% - 20px)
}

.css-lazy-loader {
    background-color: #fff
}

.css-lazy-loader--loaded {
    background-color: transparent
}

.links-header__items-list {
    margin-bottom: 20px
}

.links-header__item {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    width: 49%;
    text-align: center;
    margin-top: 30px
}

@media screen and (max-width: 767px) {
    .links-header__item:first-child {
        padding-right: 20px
    }
}

@media screen and (min-width: 768px) {
    .links-header__item:first-child:after {
        border-right: 1px solid #c6c6c6;
        content: '';
        height: 28px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%)
    }
}

.links-header__link {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 36px;
    line-height: 36px;
    font-weight: 400;
    color: #717171;
    display: inline-block;
    padding-bottom: 6px;
    transition: color .3s linear;
    cursor: pointer
}

.links-header__link:focus {
    animation: none;
    outline: none
}

.links-header__link:hover,
.links-header__link:focus {
    color: #2e7cbe;
    transition: color .3s linear
}

.links-header__current-item {
    color: #176db7;
    border-bottom: 2px solid #176db7;
    display: inline-block;
    padding-bottom: 6px
}

.links-header__current-item:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6.5px 0 6.5px;
    border-color: #176db7 transparent transparent transparent
}

.location-search {
    position: relative
}

.location-search__results {
    position: absolute;
    width: 100%;
    z-index: 501
}

.location-search--active .location-search__results {
    display: block
}

.location-search__locations {
    background: #fff;
    border: 1px solid #c6c6c6;
    border-top: none;
    z-index: 100
}

.location-search__locations::after {
    clear: both;
    content: '';
    display: block
}

.location-search__locations[aria-hidden="true"] {
    display: none
}

.location-search__location {
    color: #000;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700
}

.location-search__location:hover {
    color: #2e7cbe;
    cursor: pointer
}

.location-search__location:before {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 120%;
    color: #999;
    padding-right: 5px
}

.location-search__location:focus,
.location-search__location--active {
    color: #2e7cbe
}

.location-search__engine {
    margin: 0 5px 5px 0;
    background: url("/etc/designs/mb-nafta/images/powered_by_google_on_white.png");
    background-size: contain;
    display: inline-block;
    width: 112px;
    height: 14px
}

.location-search__engine::after {
    clear: both;
    content: '';
    display: block
}

.location-search .form__input-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media screen and (min-width: 768px) and (max-width: 979px) {
    .location-search .form__input-label {
        font-size: 13px
    }
}

.map-module {
    margin: 0 auto
}

.map-module__description {
    padding: 0 0 15px
}

@media screen and (min-width: 768px) {
    .map-module__description {
        padding: 0 160px 30px
    }
}

.map-module__map {
    width: 100%;
    height: 200px
}

@media screen and (min-width: 768px) {
    .map-module__map {
        height: 420px
    }
}

body[data-variant=largeformat] .modal--full-overlay,
[data-variant=largeformat].grid-debugger .modal--full-overlay {
    max-width: 90%
}

body[data-theme="amg"] .modal__close:hover,
[data-theme="amg"].grid-debugger .modal__close:hover {
    background-color: #eb0000
}

.amg-component .modal__close:hover {
    background-color: #eb0000
}

.modal .carousel {
    position: static
}

.modal-carousel--youtube {
    background-color: #fff
}

.modal-carousel__image {
    margin-bottom: 20px;
    font-size: 0
}

.modal-carousel__details {
    padding-bottom: 20px
}

@media screen and (min-width: 768px) {
    .modal-carousel__details {
        padding: 0 30px 20px;
        margin: 0
    }
}

.modal-carousel__standard {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #717171;
    padding-bottom: 5px
}

@media only print {
    .modal-carousel__standard {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.modal-carousel__title {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    margin-bottom: 20px
}

@media only print {
    .modal-carousel__title {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.modal-carousel__price {
    font-family: "Arial", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400
}

.modal-carousel__desc {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    padding-bottom: 20px
}

@media only print {
    .modal-carousel__desc {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.modal-carousel__link,
.modal-carousel__button {
    padding-bottom: 20px
}

.modal-carousel__package {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    padding-bottom: 20px;
    margin-top: -10px
}

@media only print {
    .modal-carousel__package {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.multi-media-carousel__pagination {
    display: none
}

.multi-media-carousel__pagination--visible {
    display: -ms-flexbox;
    display: flex
}

@media screen and (min-width: 768px) {
    .multi-media-carousel__pagination--large-right {
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

.multi-media-carousel__indicators {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 700;
    color: #717171;
    display: inline-block;
    margin: 3px 10px 0 0
}

.multi-media-carousel__pagination-buttons {
    display: inline-block;
    vertical-align: middle
}

.multi-media-carousel__cta {
    color: #176db7;
    cursor: pointer;
    font-size: 19px
}

body[data-theme="amg"] .multi-media-carousel__cta,
[data-theme="amg"].grid-debugger .multi-media-carousel__cta {
    color: #eb0000
}

body[data-theme="amg"] .multi-media-carousel__cta--inactive,
[data-theme="amg"].grid-debugger .multi-media-carousel__cta--inactive {
    color: #999;
    cursor: auto
}

.amg-component .multi-media-carousel__cta {
    color: #eb0000
}

.amg-component .multi-media-carousel__cta--inactive {
    color: #999;
    cursor: auto
}

.multi-media-carousel__cta--inactive {
    color: #c6c6c6;
    cursor: auto
}

.multi-media-carousel__items {
    position: relative;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 15px
}

@media screen and (min-width: 768px) {
    .multi-media-carousel__items {
        margin-bottom: 20px
    }
}

.multi-media-carousel .multimedia-asset {
    position: absolute;
    opacity: 0;
    top: 0px;
    left: 0px;
    overflow: hidden;
    width: 100%;
    transition: opacity .3s
}

.multi-media-carousel .multimedia-asset--active {
    opacity: 1;
    position: relative;
    transition-delay: .3s
}

.multimedia-asset__image {
    width: 100%
}

.multimedia-asset__image--override-image {
    display: block
}

@media screen and (min-width: 768px) {
    .multimedia-asset__image--override-image {
        display: none
    }
}

.multimedia-asset__youtube-preview-image {
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%
}

.multimedia-asset__video {
    width: 100%;
    position: relative
}

.multimedia-asset__video--override-video .multimedia-asset__video {
    display: none
}

@media screen and (min-width: 768px) {
    .multimedia-asset__video--override-video .multimedia-asset__video {
        display: block
    }
}

.multimedia-asset__video-preview-container {
    position: relative;
    overflow: hidden
}

.multimedia-asset__controls {
    font-family: "corpos", sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin-top: 20px;
    color: #fff;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.multimedia-asset__cta-play {
    font: inherit;
    color: inherit
}

.multimedia-asset__cta-play-label {
    vertical-align: top
}

.multimedia-asset__cta-play:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    color: #176db7;
    padding-left: 5px
}

.multimedia-asset .html5-video-control__button-wrapper {
    bottom: 25px;
    left: auto;
    right: 25px;
    text-align: initial;
    transform: none;
    width: auto
}

.sticky-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    transition: top 0.25s 0s ease-out
}

.sticky-nav.stuck,
.sticky-nav--expanded {
    z-index: 900
}

body.specialty-chapter-detail-page .sticky-nav,
.specialty-chapter-detail-page.grid-debugger .sticky-nav {
    background-color: #e3e3e3;
    z-index: 900
}

body[data-theme="maybach"] .sticky-nav,
[data-theme="maybach"].grid-debugger .sticky-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 900;
    margin-bottom: 10px
}

.maybach-component .sticky-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 900;
    margin-bottom: 10px
}

@media screen and (min-width: 980px) {
    .sticky-nav {
        margin-bottom: 30px
    }

    body.specialty-chapter-detail-page .sticky-nav,
    .specialty-chapter-detail-page.grid-debugger .sticky-nav {
        width: calc(100% - 40px)
    }

    body[data-theme="maybach"] .sticky-nav,
    [data-theme="maybach"].grid-debugger .sticky-nav {
        margin-bottom: 5px
    }

    .maybach-component .sticky-nav {
        margin-bottom: 5px
    }

    body[data-theme="theme-page"] .sticky-nav,
    [data-theme="theme-page"].grid-debugger .sticky-nav {
        margin-bottom: 0
    }

    .theme-page-component .sticky-nav {
        margin-bottom: 0
    }
}

@media screen and (min-width: 980px) {
    .sticky-nav {
        transition: top .3s 0s cubic-bezier(0, 0.59, 0.63, 1)
    }

    body[data-theme="maybach"] .sticky-nav,
    [data-theme="maybach"].grid-debugger .sticky-nav {
        margin-bottom: 15px
    }

    .maybach-component .sticky-nav {
        margin-bottom: 15px
    }
}

.sticky-nav.peeking {
    top: 60px !important
}

@media screen and (min-width: 980px) {
    .sticky-nav.peeking {
        top: 80px !important
    }
}

.sticky-nav__container {
    background-color: transparent;
    transition: background-color 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    width: 100%
}

@media screen and (max-width: 767px) {
    .sticky-nav__container {
        z-index: 911
    }

    .sticky-nav__container:before {
        content: "";
        background-color: transparent;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        transition: background-color 0.3s linear;
        pointer-events: none
    }
}

@media screen and (min-width: 768px) {
    .sticky-nav__container {
        background-color: #fff
    }

    body[data-theme="theme-page"] .sticky-nav__container,
    [data-theme="theme-page"].grid-debugger .sticky-nav__container {
        background-color: #000
    }

    .theme-page-component .sticky-nav__container {
        background-color: #000
    }
}

body[data-theme="amg"] .sticky-nav__container,
[data-theme="amg"].grid-debugger .sticky-nav__container {
    background-color: #000
}

.amg-component .sticky-nav__container {
    background-color: #000
}

body.themes-page-simple-nav[data-theme="theme-page"] .sticky-nav__container,
.themes-page-simple-nav[data-theme="theme-page"].grid-debugger .sticky-nav__container {
    transition: background-color 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 0.2s linear
}

.theme-page-simple-nav-component .sticky-nav__container {
    transition: background-color 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 0.2s linear
}

body.specialty-chapter-detail-page .sticky-nav__container,
.specialty-chapter-detail-page.grid-debugger .sticky-nav__container {
    background-color: #e3e3e3;
    width: calc(100% - 60px);
    margin: 0 auto;
    transition: width 0.2s linear 0.2s
}

.sticky-nav__container:after {
    width: 100%;
    content: '';
    height: 1px;
    background-color: #c6c6c6;
    display: block;
    margin: auto;
    transition: width 1s cubic-bezier(0.25, 0.04, 0.22, 0.97)
}

body[data-theme="amg"] .sticky-nav__container:after,
[data-theme="amg"].grid-debugger .sticky-nav__container:after {
    background-color: #717171
}

.amg-component .sticky-nav__container:after {
    background-color: #717171
}

body[data-theme="theme-page"] .sticky-nav__container:after,
[data-theme="theme-page"].grid-debugger .sticky-nav__container:after {
    height: 0
}

.theme-page-component .sticky-nav__container:after {
    height: 0
}

body.specialty-chapter-detail-page .sticky-nav__container:after,
.specialty-chapter-detail-page.grid-debugger .sticky-nav__container:after {
    width: 100%
}

@media screen and (min-width: 768px) {
    .sticky-nav__container:after {
        width: 91.14583%;
        margin: 0 auto
    }

    .stuck .sticky-nav__container:after {
        width: 100%
    }
}

@media screen and (min-width: 980px) {
    .sticky-nav__container:after {
        width: 80.61224%
    }
}

@media screen and (min-width: 1440px) {
    .sticky-nav__container:after {
        width: 81.25%;
        max-width: 1170px
    }
}

.sticky-nav__container.borderless {
    border-color: transparent
}

@media screen and (min-width: 768px) {
    .sticky-nav__container.borderless:after {
        background-color: transparent
    }
}

.sticky-nav__container[data-page-level-sticky-nav-state="collapsed"] {
    border-top: 1px solid #c6c6c6;
    z-index: 911
}

body.specialty-chapter-detail-page .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"],
.specialty-chapter-detail-page.grid-debugger .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"] {
    border-top-color: transparent
}

body.themes-page-simple-nav[data-theme="theme-page"] .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"],
.themes-page-simple-nav[data-theme="theme-page"].grid-debugger .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"] {
    border-top: none
}

.theme-page-simple-nav-component .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"] {
    border-top: none
}

body[data-theme="theme-page"] .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"],
[data-theme="theme-page"].grid-debugger .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"] {
    border-top-color: #000
}

.theme-page-component .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"] {
    border-top-color: #000
}

.stuck .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"] {
    border-top: none
}

.stuck .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"]:after {
    width: 100%
}

@media screen and (min-width: 768px) {
    .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"] {
        border-color: transparent
    }

    .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"]:after {
        width: 91.14583%;
        margin: 0 auto
    }
}

@media screen and (min-width: 980px) {
    .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"]:after {
        width: 80.61224%
    }
}

body[data-theme="theme-page"] .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"]:after,
[data-theme="theme-page"].grid-debugger .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"]:after {
    height: 1px
}

.theme-page-component .sticky-nav__container[data-page-level-sticky-nav-state="collapsed"]:after {
    height: 1px
}

.sticky-nav__container[data-page-level-sticky-nav-state="expanded"] {
    border-top: 1px solid #c6c6c6;
    background-color: #fff;
    max-height: 100vh;
    z-index: 911
}

body[data-theme="amg"] .sticky-nav__container[data-page-level-sticky-nav-state="expanded"],
[data-theme="amg"].grid-debugger .sticky-nav__container[data-page-level-sticky-nav-state="expanded"] {
    border-top-color: #717171
}

.amg-component .sticky-nav__container[data-page-level-sticky-nav-state="expanded"] {
    border-top-color: #717171
}

body.specialty-chapter-detail-page .sticky-nav__container[data-page-level-sticky-nav-state="expanded"],
.specialty-chapter-detail-page.grid-debugger .sticky-nav__container[data-page-level-sticky-nav-state="expanded"] {
    background-color: #e3e3e3;
    border-top-color: transparent;
    width: 100%;
    transition: width 0.2s linear
}

body[data-theme="theme-page"] .sticky-nav__container[data-page-level-sticky-nav-state="expanded"],
[data-theme="theme-page"].grid-debugger .sticky-nav__container[data-page-level-sticky-nav-state="expanded"] {
    border-top-color: #000
}

@media screen and (min-width: 768px) {

    body[data-theme="theme-page"] .sticky-nav__container[data-page-level-sticky-nav-state="expanded"],
    [data-theme="theme-page"].grid-debugger .sticky-nav__container[data-page-level-sticky-nav-state="expanded"] {
        background-color: #000
    }
}

body[data-theme="theme-page"] .sticky-nav__container[data-page-level-sticky-nav-state="expanded"]:after,
[data-theme="theme-page"].grid-debugger .sticky-nav__container[data-page-level-sticky-nav-state="expanded"]:after {
    height: 1px
}

.theme-page-component .sticky-nav__container[data-page-level-sticky-nav-state="expanded"] {
    border-top-color: #000
}

@media screen and (min-width: 768px) {
    .theme-page-component .sticky-nav__container[data-page-level-sticky-nav-state="expanded"] {
        background-color: #000
    }
}

.theme-page-component .sticky-nav__container[data-page-level-sticky-nav-state="expanded"]:after {
    height: 1px
}

.stuck .sticky-nav__container[data-page-level-sticky-nav-state="expanded"] {
    border-top: none
}

.sticky-nav__container[data-page-level-sticky-nav-state="expanded"]:after {
    width: 100%
}

.sticky-nav__container[data-page-level-sticky-nav-state="expanded"]:before {
    pointer-events: auto
}

@media screen and (min-width: 768px) {
    .sticky-nav__container[data-page-level-sticky-nav-state="expanded"] {
        border-top: 1px solid transparent
    }
}

@media screen and (min-width: 980px) {
    .sticky-nav__container[data-page-level-sticky-nav-state="expanded"]:after {
        transition: width 1s cubic-bezier(0.25, 0.04, 0.22, 0.97)
    }
}

.sticky-nav__wrapper {
    background-color: #fff;
    position: relative;
    width: 100%
}

body.specialty-chapter-detail-page .sticky-nav__wrapper,
.specialty-chapter-detail-page.grid-debugger .sticky-nav__wrapper {
    background-color: #e3e3e3
}

body[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__wrapper,
[data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__wrapper {
    background-color: #000
}

@media screen and (min-width: 980px) {

    body[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__wrapper,
    [data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__wrapper {
        max-width: none
    }
}

@media screen and (min-width: 1440px) {

    body[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__wrapper,
    [data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__wrapper {
        max-width: 1170px
    }
}

.theme-page-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__wrapper {
    background-color: #000
}

@media screen and (min-width: 980px) {
    .theme-page-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__wrapper {
        max-width: none
    }
}

@media screen and (min-width: 1440px) {
    .theme-page-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__wrapper {
        max-width: 1170px
    }
}

@media screen and (min-width: 980px) {
    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__wrapper {
        overflow: unset;
        width: 100%
    }
}

body[data-theme="theme-page"] [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__wrapper,
[data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__wrapper {
    background-color: #000;
    color: #fff
}

.theme-page-component [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__wrapper {
    background-color: #000;
    color: #fff
}

@media screen and (min-width: 980px) {
    [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__wrapper {
        overflow: unset;
        width: 100%
    }
}

@media screen and (min-width: 980px) {
    .sticky-nav__wrapper {
        overflow: hidden;
        width: 80.61224%
    }
}

.sticky-nav__items-list {
    font-family: "Arial", sans-serif;
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media only print {
    .sticky-nav__items-list {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .sticky-nav__items-list {
        font-family: "Arial", sans-serif;
        font-size: 12px;
        line-height: 18px;
        font-weight: 400;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-align: stretch;
        align-items: stretch
    }
}

[data-page-level-sticky-nav-state="collapsed"] .sticky-nav__items-list {
    display: block;
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    background-color: #fff
}

[data-page-level-sticky-nav-state="expanded"] .sticky-nav__items-list {
    display: block;
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    background-color: #fff
}

body[data-theme="theme-page"] .sticky-nav__items-list,
[data-theme="theme-page"].grid-debugger .sticky-nav__items-list {
    background-color: #000
}

.theme-page-component .sticky-nav__items-list {
    background-color: #000
}

body.specialty-chapter-detail-page .sticky-nav__items-list,
.specialty-chapter-detail-page.grid-debugger .sticky-nav__items-list {
    background-color: #e3e3e3
}

.sticky-nav__item {
    width: 93.4375%;
    margin: 0 auto;
    text-align: center;
    transition: color .3s cubic-bezier(0.445, 0.05, 0.55, 0.95), max-height 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95), border .3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    overflow: hidden
}

@media screen and (min-width: 768px) {
    .sticky-nav__item {
        -ms-flex-align: center;
        align-items: center;
        color: #000;
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 1;
        flex: 1;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        transition: color 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95), height .3s cubic-bezier(0.445, 0.05, 0.55, 0.95), border .3s cubic-bezier(0.445, 0.05, 0.55, 0.95), width 1s cubic-bezier(0.25, 0.04, 0.22, 0.97);
        position: relative
    }

    body[data-theme="amg"] .sticky-nav__item,
    [data-theme="amg"].grid-debugger .sticky-nav__item {
        color: #fff
    }

    .amg-component .sticky-nav__item {
        color: #fff
    }

    body[data-theme="theme-page"] .sticky-nav__item,
    [data-theme="theme-page"].grid-debugger .sticky-nav__item {
        color: #fff
    }

    .theme-page-component .sticky-nav__item {
        color: #fff
    }
}

[data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item {
    max-height: 0;
    border-bottom: 0 solid transparent
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item {
        height: 0;
        max-height: none
    }
}

@media screen and (max-width: 767px) {
    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item {
        max-height: 60px;
        border-bottom: 1px solid #f1f1f1
    }

    body[data-theme="amg"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item,
    [data-theme="amg"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item {
        border-bottom-color: #717171
    }

    .amg-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item {
        border-bottom-color: #717171
    }

    body.themes-page-simple-nav[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item,
    .themes-page-simple-nav[data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item {
        color: #000;
        text-align: center;
        border-bottom: 1px solid #f1f1f1
    }

    .theme-page-simple-nav-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item {
        color: #000;
        text-align: center;
        border-bottom: 1px solid #f1f1f1
    }

    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-child:after {
        border-bottom: 1px solid #c6c6c6;
        content: '';
        display: block;
        left: 0;
        position: absolute;
        width: 100%
    }

    body[data-theme="amg"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-child:after,
    [data-theme="amg"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-child:after {
        border-bottom-color: #717171
    }

    .amg-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-child:after {
        border-bottom-color: #717171
    }

    body.specialty-chapter-detail-page [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-child:after,
    .specialty-chapter-detail-page.grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-child:after {
        border-bottom-color: #c6c6c6
    }

    body[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-child:after,
    [data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-child:after {
        border-bottom-color: transparent
    }

    .theme-page-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-child:after {
        border-bottom-color: transparent
    }
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item {
        width: 91.14583%;
        margin: 0 auto;
        border-bottom: 1px solid #f1f1f1;
        height: 45px
    }
}

@media screen and (min-width: 980px) {
    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item {
        width: 80.61224%
    }
}

body.specialty-chapter-detail-page [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item,
.specialty-chapter-detail-page.grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item {
    border-bottom-color: #c6c6c6
}

body[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item,
[data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item {
    border-bottom-color: #393939
}

.theme-page-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item {
    border-bottom-color: #393939
}

[data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-of-type {
    border-bottom-color: #c6c6c6;
    width: 100%
}

body[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-of-type,
[data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-of-type {
    border-bottom-color: #c6c6c6
}

.theme-page-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-of-type {
    border-bottom-color: #c6c6c6
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:last-of-type:before {
        border-bottom-color: transparent
    }
}

@media screen and (min-width: 768px) {
    .sticky-nav__item:before {
        content: '';
        border-bottom: 3px solid transparent;
        bottom: -1px;
        left: 0;
        right: auto;
        top: auto;
        transform: none;
        transition: border-color 0.15s cubic-bezier(0.25, 0.04, 0.22, 0.97);
        position: absolute;
        width: 100%
    }
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:before {
        border-bottom-color: transparent
    }
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item:before {
        border-bottom-color: transparent
    }
}

body[data-theme="theme-page"] .sticky-nav__item:before,
[data-theme="theme-page"].grid-debugger .sticky-nav__item:before {
    border-bottom-color: transparent
}

.theme-page-component .sticky-nav__item:before {
    border-bottom-color: transparent
}

@media screen and (min-width: 768px) {
    .sticky-nav__item:after {
        border-right: 1px solid #c6c6c6;
        content: '';
        height: 28px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%)
    }

    body[data-theme="amg"] .sticky-nav__item:after,
    [data-theme="amg"].grid-debugger .sticky-nav__item:after {
        border-right-color: #717171
    }

    .amg-component .sticky-nav__item:after {
        border-right-color: #717171
    }

    body.specialty-chapter-detail-page .sticky-nav__item:after,
    .specialty-chapter-detail-page.grid-debugger .sticky-nav__item:after {
        border-right-color: #c6c6c6
    }

    body[data-theme="theme-page"] .sticky-nav__item:after,
    [data-theme="theme-page"].grid-debugger .sticky-nav__item:after {
        border-right: none
    }

    .theme-page-component .sticky-nav__item:after {
        border-right: none
    }
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item:after {
        border-right: none
    }
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:after {
        border-right: none
    }
}

.sticky-nav__item:first-child {
    width: 100%
}

[data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:first-child {
    width: 93.4375%
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:first-child {
        width: 91.14583%;
        margin: 0 auto;
        display: -ms-flexbox;
        display: flex
    }
}

@media screen and (min-width: 980px) {
    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item:first-child {
        width: 80.61224%
    }
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item:first-child {
        display: -ms-flexbox;
        display: flex
    }
}

@media screen and (min-width: 768px) {
    .sticky-nav__item:last-of-type:after {
        content: none
    }
}

@media screen and (min-width: 768px) {
    .sticky-nav__item--last-visible:after {
        content: none
    }
}

.sticky-nav__item--active {
    color: #000;
    display: block;
    max-height: none
}

body[data-theme="amg"] .sticky-nav__item--active,
[data-theme="amg"].grid-debugger .sticky-nav__item--active {
    color: #fff
}

.amg-component .sticky-nav__item--active {
    color: #fff
}

body[data-theme="theme-page"] .sticky-nav__item--active,
[data-theme="theme-page"].grid-debugger .sticky-nav__item--active {
    color: #fff
}

.theme-page-component .sticky-nav__item--active {
    color: #fff
}

@media screen and (min-width: 768px) {
    .sticky-nav__item--active {
        display: -ms-flexbox;
        display: flex;
        height: auto;
        max-height: none
    }
}

[data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active {
    display: block
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active {
        display: -ms-flexbox;
        display: flex
    }
}

[data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active {
    color: #2e7cbe
}

body[data-theme="amg"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active,
[data-theme="amg"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active {
    color: #eb0000
}

.amg-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active {
    color: #eb0000
}

body.specialty-chapter-detail-page [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active,
.specialty-chapter-detail-page.grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active {
    color: #eb0000
}

body[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active,
[data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active {
    color: #2e7cbe
}

.theme-page-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active {
    color: #2e7cbe
}

@media screen and (min-width: 768px) {
    .sticky-nav__item--active {
        color: #2e7cbe
    }

    body[data-theme="amg"] .sticky-nav__item--active,
    [data-theme="amg"].grid-debugger .sticky-nav__item--active {
        color: #eb0000
    }

    .amg-component .sticky-nav__item--active {
        color: #eb0000
    }

    body.specialty-chapter-detail-page .sticky-nav__item--active,
    .specialty-chapter-detail-page.grid-debugger .sticky-nav__item--active {
        color: #eb0000
    }
}

@media screen and (min-width: 768px) {
    .sticky-nav__item--active:before {
        border-bottom-color: #2e7cbe
    }

    body[data-theme="amg"] .sticky-nav__item--active:before,
    [data-theme="amg"].grid-debugger .sticky-nav__item--active:before {
        border-bottom-color: #eb0000
    }

    .amg-component .sticky-nav__item--active:before {
        border-bottom-color: #eb0000
    }

    body.specialty-chapter-detail-page .sticky-nav__item--active:before,
    .specialty-chapter-detail-page.grid-debugger .sticky-nav__item--active:before {
        border-bottom-color: #eb0000
    }

    body.specialty-chapter-detail-page [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active:before,
    .specialty-chapter-detail-page.grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active:before {
        border-bottom-color: transparent
    }

    body.specialty-chapter-detail-page [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active:before,
    .specialty-chapter-detail-page.grid-debugger [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active:before {
        border-bottom-color: transparent
    }
}

.stuck [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active {
    color: #000
}

body[data-theme="amg"] .stuck [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active,
[data-theme="amg"].grid-debugger .stuck [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active {
    color: #fff
}

.amg-component .stuck [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active {
    color: #fff
}

body[data-theme="theme-page"] .stuck [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active,
[data-theme="theme-page"].grid-debugger .stuck [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active {
    color: #fff
}

.theme-page-component .stuck [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active {
    color: #fff
}

@media screen and (min-width: 768px) {
    .stuck [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active:before {
        border-bottom-color: transparent
    }

    body.specialty-chapter-detail-page .stuck [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active:before,
    .specialty-chapter-detail-page.grid-debugger .stuck [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active:before {
        border-bottom-color: transparent
    }
}

@media screen and (min-width: 768px) {
    .stuck [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active:before {
        border-bottom-color: transparent
    }

    body.specialty-chapter-detail-page .stuck [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active:before,
    .specialty-chapter-detail-page.grid-debugger .stuck [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active:before {
        border-bottom-color: transparent
    }
}

@media screen and (min-width: 980px) {

    body.specialty-chapter-detail-page .stuck [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active:before,
    .specialty-chapter-detail-page.grid-debugger .stuck [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active:before {
        border-bottom-color: #c6c6c6
    }
}

@media screen and (min-width: 768px) {

    body[data-theme="theme-page"] .sticky-nav__item--active .sticky-nav__item-link-label:before,
    [data-theme="theme-page"].grid-debugger .sticky-nav__item--active .sticky-nav__item-link-label:before {
        content: '';
        border-bottom: 3px solid #176db7;
        bottom: -7px;
        left: 0;
        right: auto;
        top: auto;
        transform: none;
        position: absolute;
        width: 100%
    }
}

@media screen and (min-width: 768px) {
    .theme-page-component .sticky-nav__item--active .sticky-nav__item-link-label:before {
        content: '';
        border-bottom: 3px solid #176db7;
        bottom: -7px;
        left: 0;
        right: auto;
        top: auto;
        transform: none;
        position: absolute;
        width: 100%
    }
}

@media screen and (min-width: 768px) {

    body[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active .sticky-nav__item-link-label:before,
    [data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active .sticky-nav__item-link-label:before {
        content: none
    }
}

@media screen and (min-width: 768px) {
    .theme-page-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item--active .sticky-nav__item-link-label:before {
        content: none
    }
}

@media screen and (min-width: 768px) {

    body[data-theme="theme-page"] [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active .sticky-nav__item-link-label:before,
    [data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active .sticky-nav__item-link-label:before {
        content: none
    }
}

@media screen and (min-width: 768px) {
    .theme-page-component [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item--active .sticky-nav__item-link-label:before {
        content: none
    }
}

.sticky-nav__item-link {
    color: currentColor;
    display: inline-block;
    line-height: 15px;
    padding: 12px 0;
    position: relative;
    width: 100%
}

.sticky-nav__item-link:focus {
    animation: none;
    outline: none
}

@media screen and (min-width: 768px) {
    .sticky-nav__item-link {
        display: block;
        padding: 20px 30px;
        transition: color 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95)
    }
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__item-link {
        padding: 15px 30px
    }
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__item-link {
        padding: 15px 30px
    }
}

.sticky-nav__item-link:hover,
.sticky-nav__item-link:focus {
    color: #2e7cbe
}

body[data-theme="amg"] .sticky-nav__item-link:hover,
[data-theme="amg"].grid-debugger .sticky-nav__item-link:hover,
body[data-theme="amg"] .sticky-nav__item-link:focus,
[data-theme="amg"].grid-debugger .sticky-nav__item-link:focus {
    color: #eb0000
}

.amg-component .sticky-nav__item-link:hover,
.amg-component .sticky-nav__item-link:focus {
    color: #eb0000
}

body.specialty-chapter-detail-page .sticky-nav__item-link:hover,
.specialty-chapter-detail-page.grid-debugger .sticky-nav__item-link:hover,
body.specialty-chapter-detail-page .sticky-nav__item-link:focus,
.specialty-chapter-detail-page.grid-debugger .sticky-nav__item-link:focus {
    color: #eb0000
}

body[data-theme="theme-page"] .sticky-nav__item-link:hover,
[data-theme="theme-page"].grid-debugger .sticky-nav__item-link:hover,
body[data-theme="theme-page"] .sticky-nav__item-link:focus,
[data-theme="theme-page"].grid-debugger .sticky-nav__item-link:focus {
    color: #2e7cbe
}

body[data-theme="theme-page"] .sticky-nav__item-link:hover .sticky-nav__item-link-label,
[data-theme="theme-page"].grid-debugger .sticky-nav__item-link:hover .sticky-nav__item-link-label,
body[data-theme="theme-page"] .sticky-nav__item-link:focus .sticky-nav__item-link-label,
[data-theme="theme-page"].grid-debugger .sticky-nav__item-link:focus .sticky-nav__item-link-label {
    color: #2e7cbe
}

.theme-page-component .sticky-nav__item-link:hover,
.theme-page-component .sticky-nav__item-link:focus {
    color: #2e7cbe
}

.theme-page-component .sticky-nav__item-link:hover .sticky-nav__item-link-label,
.theme-page-component .sticky-nav__item-link:focus .sticky-nav__item-link-label {
    color: #2e7cbe
}

.sticky-nav__item-link-label {
    display: inline-block;
    padding: 0 20px;
    position: relative
}

@media screen and (min-width: 768px) {
    .sticky-nav__item-link-label {
        padding: 0;
        display: block
    }

    body[data-theme="theme-page"] .sticky-nav__item-link-label,
    [data-theme="theme-page"].grid-debugger .sticky-nav__item-link-label {
        display: inline-block
    }

    .theme-page-component .sticky-nav__item-link-label {
        display: inline-block
    }
}

.sticky-nav__nav-toggle {
    display: block;
    font-size: 13px;
    line-height: 15px;
    padding: 12px 20px;
    width: 100%
}

body.specialty-chapter-detail-page .sticky-nav__nav-toggle,
.specialty-chapter-detail-page.grid-debugger .sticky-nav__nav-toggle {
    padding: 12px 25px
}

body[data-theme="theme-page"] .sticky-nav__nav-toggle,
[data-theme="theme-page"].grid-debugger .sticky-nav__nav-toggle {
    text-align: center;
    color: #fff;
    padding: 13px 20px
}

.theme-page-component .sticky-nav__nav-toggle {
    text-align: center;
    color: #fff;
    padding: 13px 20px
}

body.themes-page-simple-nav[data-theme="theme-page"] .sticky-nav__nav-toggle,
.themes-page-simple-nav[data-theme="theme-page"].grid-debugger .sticky-nav__nav-toggle {
    text-align: center
}

body.themes-page-simple-nav[data-theme="theme-page"] .sticky-nav__nav-toggle::before,
.themes-page-simple-nav[data-theme="theme-page"].grid-debugger .sticky-nav__nav-toggle::before {
    content: none
}

.theme-page-simple-nav-component .sticky-nav__nav-toggle {
    text-align: center
}

.theme-page-simple-nav-component .sticky-nav__nav-toggle::before {
    content: none
}

.sticky-nav__nav-toggle:hover {
    color: #2e7cbe
}

body[data-theme="amg"] .sticky-nav__nav-toggle:hover,
[data-theme="amg"].grid-debugger .sticky-nav__nav-toggle:hover {
    color: #eb0000
}

.amg-component .sticky-nav__nav-toggle:hover {
    color: #eb0000
}

body.specialty-chapter-detail-page .sticky-nav__nav-toggle:hover,
.specialty-chapter-detail-page.grid-debugger .sticky-nav__nav-toggle:hover {
    color: #eb0000
}

body[data-theme="theme-page"] .sticky-nav__nav-toggle:hover,
[data-theme="theme-page"].grid-debugger .sticky-nav__nav-toggle:hover {
    color: #2e7cbe
}

.theme-page-component .sticky-nav__nav-toggle:hover {
    color: #2e7cbe
}

body[data-theme="theme-page"] .sticky-nav__nav-toggle:hover:after,
[data-theme="theme-page"].grid-debugger .sticky-nav__nav-toggle:hover:after {
    color: #2e7cbe
}

.theme-page-component .sticky-nav__nav-toggle:hover:after {
    color: #2e7cbe
}

body[data-theme="theme-page"] .sticky-nav__nav-toggle:focus,
[data-theme="theme-page"].grid-debugger .sticky-nav__nav-toggle:focus {
    color: #2e7cbe
}

.theme-page-component .sticky-nav__nav-toggle:focus {
    color: #2e7cbe
}

body[data-theme="theme-page"] .sticky-nav__nav-toggle:focus:after,
[data-theme="theme-page"].grid-debugger .sticky-nav__nav-toggle:focus:after {
    color: #2e7cbe
}

.theme-page-component .sticky-nav__nav-toggle:focus:after {
    color: #2e7cbe
}

.sticky-nav__nav-toggle:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    color: #2e7cbe;
    display: inline-block;
    margin-left: 10px
}

body[data-theme="amg"] .sticky-nav__nav-toggle:after,
[data-theme="amg"].grid-debugger .sticky-nav__nav-toggle:after {
    color: #eb0000
}

.amg-component .sticky-nav__nav-toggle:after {
    color: #eb0000
}

body.specialty-chapter-detail-page .sticky-nav__nav-toggle:after,
.specialty-chapter-detail-page.grid-debugger .sticky-nav__nav-toggle:after {
    color: #eb0000
}

body.themes-page-simple-nav[data-theme="theme-page"] .sticky-nav__nav-toggle:after,
.themes-page-simple-nav[data-theme="theme-page"].grid-debugger .sticky-nav__nav-toggle:after {
    position: relative;
    vertical-align: bottom
}

.theme-page-simple-nav-component .sticky-nav__nav-toggle:after {
    position: relative;
    vertical-align: bottom
}

body[data-theme="theme-page"] .sticky-nav__nav-toggle:after,
[data-theme="theme-page"].grid-debugger .sticky-nav__nav-toggle:after {
    position: relative;
    vertical-align: bottom;
    color: #fff
}

.theme-page-component .sticky-nav__nav-toggle:after {
    position: relative;
    vertical-align: bottom;
    color: #fff
}

@media screen and (min-width: 768px) {
    .sticky-nav__nav-toggle {
        display: none
    }
}

@media screen and (min-width: 980px) {
    .sticky-nav__nav-toggle {
        cursor: pointer
    }
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="collapsed"] .sticky-nav__nav-toggle {
        display: block
    }
}

[data-page-level-sticky-nav-state="collapsed"] .sticky-nav__nav-toggle:after {
    transform: rotate(180deg)
}

[data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle {
    color: #2e7cbe
}

body[data-theme="amg"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle,
[data-theme="amg"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle {
    border-bottom-color: #717171;
    color: #eb0000
}

.amg-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle {
    border-bottom-color: #717171;
    color: #eb0000
}

body.specialty-chapter-detail-page [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle,
.specialty-chapter-detail-page.grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle {
    border-bottom-color: #c6c6c6;
    color: #eb0000
}

body[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle,
[data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle {
    border-bottom-color: transparent
}

body[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle::after,
[data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle::after {
    color: #2e7cbe
}

.theme-page-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle {
    border-bottom-color: transparent
}

.theme-page-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle::after {
    color: #2e7cbe
}

body.themes-page-simple-nav[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle,
.themes-page-simple-nav[data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle {
    color: #2e7cbe;
    border-bottom: 1px #c6c6c6 solid
}

body.themes-page-simple-nav[data-theme="theme-page"] [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle::after,
.themes-page-simple-nav[data-theme="theme-page"].grid-debugger [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle::after {
    color: #2e7cbe
}

.theme-page-simple-nav-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle {
    color: #2e7cbe;
    border-bottom: 1px #c6c6c6 solid
}

.theme-page-simple-nav-component [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle::after {
    color: #2e7cbe
}

@media screen and (min-width: 768px) {
    [data-page-level-sticky-nav-state="expanded"] .sticky-nav__nav-toggle {
        display: block
    }
}

.sticky-nav *:focus {
    animation: none;
    outline: none
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__header,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__header {
    display: none;
    padding-top: 30px
}

@media screen and (min-width: 768px) {

    .tabbed-module[data-functional-theme="tabs"] .tabbed-module__header,
    .tabbed-module [data-functional-theme="tabs"] .tabbed-module__header {
        display: block;
        position: relative
    }
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-slider,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-slider {
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid #c6c6c6;
    white-space: nowrap
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-slider::-webkit-scrollbar,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-slider::-webkit-scrollbar {
    width: 0px;
    background: transparent
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-list,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-list {
    position: relative
}

@media screen and (min-width: 768px) {

    .tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-list,
    .tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-list {
        font-size: 0
    }
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-item,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-item {
    font-size: 12px;
    font-family: "Arial", sans-serif;
    padding: 15px 15px 15px;
    margin: 0 auto;
    width: 100%;
    white-space: normal;
    word-wrap: break-word;
    cursor: pointer;
    vertical-align: bottom;
    border-bottom: 3px solid #fff;
    transition: margin-left 0.4s cubic-bezier(0.25, 0.04, 0.22, 0.97)
}

@media screen and (min-width: 768px) {

    .tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-item,
    .tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-item {
        display: inline-block
    }
}

@media screen and (min-width: 768px) and (min-width: 768px) {

    .tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-item,
    .tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-item {
        width: calc(100% / 4)
    }
}

@media screen and (min-width: 768px) and (min-width: 980px) {

    .tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-item,
    .tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-item {
        width: calc(100% / 5)
    }
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-item:hover,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-item:hover {
    color: #2e7cbe
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-item.active,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-item.active {
    color: #176db7;
    border-color: #176db7
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-item:active .tabbed-module__header-item-inner,
.tabbed-module[data-functional-theme="tabs"] .tabbed-module__header-item:focus .tabbed-module__header-item-inner,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-item:active .tabbed-module__header-item-inner,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__header-item:focus .tabbed-module__header-item-inner {
    position: relative;
    top: 0;
    left: 0
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__nav-controls,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__nav-controls {
    display: none;
    position: absolute;
    bottom: 1px;
    color: #176db7;
    width: 50px;
    height: calc(100% - 1px);
    cursor: pointer
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__nav-controls:hover,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__nav-controls:hover {
    color: #2e7cbe
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__nav-controls.active,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__nav-controls.active {
    display: block;
    z-index: 2
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__nav-controls--left-arrow,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__nav-controls--left-arrow {
    left: 0;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #fff 40%, #fff 100%, rgba(255, 255, 255, 0))
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__nav-controls--left-arrow:before,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__nav-controls--left-arrow:before {
    position: absolute;
    left: 0;
    bottom: 20px;
    font-size: 15px
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__nav-controls--right-arrow,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__nav-controls--right-arrow {
    right: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 40%, #fff 100%, rgba(255, 255, 255, 0))
}

.tabbed-module[data-functional-theme="tabs"] .tabbed-module__nav-controls--right-arrow:before,
.tabbed-module [data-functional-theme="tabs"] .tabbed-module__nav-controls--right-arrow:before {
    position: absolute;
    right: 0;
    bottom: 20px;
    font-size: 15px
}

.tabbed-module[data-functional-theme="tabs"] .module-separator,
.tabbed-module [data-functional-theme="tabs"] .module-separator {
    padding-bottom: 0
}

.tabbed-module[data-functional-theme="tabs"] .accordion,
.tabbed-module [data-functional-theme="tabs"] .accordion {
    width: 100%;
    padding-bottom: 0
}

.tabbed-module[data-functional-theme="tabs"] .accordion__item:last-child .accordion__title,
.tabbed-module [data-functional-theme="tabs"] .accordion__item:last-child .accordion__title {
    border-bottom: 1px solid #c6c6c6
}

.tabbed-module[data-functional-theme="tabs"] .accordion__item--active .accordion__button,
.tabbed-module [data-functional-theme="tabs"] .accordion__item--active .accordion__button {
    color: #2e7cbe
}

.tabbed-module[data-functional-theme="tabs"] .accordion__item--active:last-child .accordion__title,
.tabbed-module [data-functional-theme="tabs"] .accordion__item--active:last-child .accordion__title {
    border-bottom: none
}

.tabbed-module[data-functional-theme="tabs"] .accordion__title,
.tabbed-module [data-functional-theme="tabs"] .accordion__title {
    font-weight: normal;
    font-size: 12px
}

@media screen and (min-width: 768px) {

    .tabbed-module[data-functional-theme="tabs"] .accordion__title,
    .tabbed-module [data-functional-theme="tabs"] .accordion__title {
        display: none
    }
}

.tabbed-module[data-functional-theme="tabs"] .accordion__title:after,
.tabbed-module [data-functional-theme="tabs"] .accordion__title:after {
    right: 0;
    color: #176db7;
    font-size: 15px
}

.tabbed-module[data-functional-theme="tabs"] .accordion__button,
.tabbed-module [data-functional-theme="tabs"] .accordion__button {
    padding-left: 0;
    min-height: 45px
}

.tabbed-module[data-functional-theme="tabs"] .accordion__pane,
.tabbed-module [data-functional-theme="tabs"] .accordion__pane {
    padding: 5px 0 0;
    border-top: none;
    margin-bottom: 25px
}

@media screen and (min-width: 768px) {

    .tabbed-module[data-functional-theme="tabs"] .accordion__pane,
    .tabbed-module [data-functional-theme="tabs"] .accordion__pane {
        display: none;
        padding-top: 30px;
        margin-bottom: 0
    }

    .tabbed-module[data-functional-theme="tabs"] .accordion__pane[data-active="true"],
    .tabbed-module [data-functional-theme="tabs"] .accordion__pane[data-active="true"] {
        display: block
    }
}

.tabbed-module[data-functional-theme="accordion"] .accordion .accordion__item .accordion__button,
.tabbed-module [data-functional-theme="accordion"] .accordion .accordion__item .accordion__button {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400
}

@media only print {

    .tabbed-module[data-functional-theme="accordion"] .accordion .accordion__item .accordion__button,
    .tabbed-module [data-functional-theme="accordion"] .accordion .accordion__item .accordion__button {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.tabbed-module[data-functional-theme="accordion"] .accordion .accordion__item:last-child,
.tabbed-module [data-functional-theme="accordion"] .accordion .accordion__item:last-child {
    border-bottom: 1px solid #c6c6c6
}

.tabbed-module[data-functional-theme="accordion"] .accordion .accordion__item--active .accordion__button,
.tabbed-module [data-functional-theme="accordion"] .accordion .accordion__item--active .accordion__button {
    color: #176db7
}

.tabbed-module[data-functional-theme="accordion"] .accordion .accordion__item .accordion__title:after,
.tabbed-module [data-functional-theme="accordion"] .accordion .accordion__item .accordion__title:after {
    color: #176db7;
    font-size: 15px;
    right: 0
}

.tabbed-module[data-functional-theme="accordion"] .accordion .accordion__item .accordion__pane,
.tabbed-module [data-functional-theme="accordion"] .accordion .accordion__item .accordion__pane {
    border-top: none;
    padding: 0
}

.tabbed-module[data-functional-theme="accordion"] .accordion .module-separator,
.tabbed-module [data-functional-theme="accordion"] .accordion .module-separator {
    padding-top: 0
}

.tabbed-module[data-functional-theme="accordion"] .accordion .module-separator.simple-table,
.tabbed-module [data-functional-theme="accordion"] .accordion .module-separator.simple-table {
    padding-bottom: 0
}

body.model-page .text-block__container,
.model-page.grid-debugger .text-block__container {
    text-align: center
}

@media screen and (min-width: 768px) {

    body.model-page .text-block__container,
    .model-page.grid-debugger .text-block__container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-left: 25.58941%;
        float: none
    }

    body.model-page .text-block__container:last-child,
    .model-page.grid-debugger .text-block__container:last-child {
        margin-right: 0
    }
}

body.specialty-chapter-detail-page .text-block__container,
.specialty-chapter-detail-page.grid-debugger .text-block__container {
    text-align: center;
    padding-left: 45px;
    padding-right: 45px
}

body[data-theme="theme-page"] .text-block__container,
[data-theme="theme-page"].grid-debugger .text-block__container {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
    margin-right: 0;
    text-align: center;
    color: #fff
}

body[data-theme="theme-page"] .text-block__container:last-child,
[data-theme="theme-page"].grid-debugger .text-block__container:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {

    body[data-theme="theme-page"] .text-block__container,
    [data-theme="theme-page"].grid-debugger .text-block__container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-right: 0
    }

    body[data-theme="theme-page"] .text-block__container:last-child,
    [data-theme="theme-page"].grid-debugger .text-block__container:last-child {
        margin-right: 0
    }
}

.theme-page-component .text-block__container {
    float: left;
    display: block;
    margin-right: 7.42297%;
    width: 100%;
    margin-right: 0;
    text-align: center;
    color: #fff
}

.theme-page-component .text-block__container:last-child {
    margin-right: 0
}

@media screen and (min-width: 768px) {
    .theme-page-component .text-block__container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-right: 0
    }

    .theme-page-component .text-block__container:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 768px) {

    body.specialty-chapter-detail-page .text-block__container,
    .specialty-chapter-detail-page.grid-debugger .text-block__container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        padding-left: 0;
        padding-right: 0;
        float: none;
        margin: 0 auto
    }

    body.specialty-chapter-detail-page .text-block__container:last-child,
    .specialty-chapter-detail-page.grid-debugger .text-block__container:last-child {
        margin-right: 0
    }
}

.text-block__container--with-section-divider {
    padding-bottom: 15px;
    border-bottom: 1px solid #c6c6c6
}

.text-block__heading {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    margin-bottom: 20px
}

@media only print {
    .text-block__heading {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

body[data-theme="theme-page"] .text-block__heading,
[data-theme="theme-page"].grid-debugger .text-block__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400
}

@media screen and (min-width: 980px),
only print {

    body[data-theme="theme-page"] .text-block__heading,
    [data-theme="theme-page"].grid-debugger .text-block__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

.theme-page-component .text-block__heading {
    font-family: "corporateacondpro", Georgia, serif;
    font-size: 30px;
    line-height: 30px;
    font-weight: 400
}

@media screen and (min-width: 980px),
only print {
    .theme-page-component .text-block__heading {
        font-family: "corporateacondpro", Georgia, serif;
        font-size: 40px;
        line-height: 40px;
        font-weight: 400
    }
}

@media screen and (min-width: 980px) {
    .individual-tab__accordion-item .text-block {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto
    }

    .individual-tab__accordion-item .text-block::after {
        clear: both;
        content: '';
        display: block
    }
}

@media screen and (min-width: 980px) {
    .individual-tab__accordion-item .text-block__container {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%;
        margin-left: 17.05961%
    }

    .individual-tab__accordion-item .text-block__container:last-child {
        margin-right: 0
    }
}

[data-functional-theme="accordion"] .text-block__container {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 91.4702%;
    margin-left: 0%;
    float: none
}

[data-functional-theme="accordion"] .text-block__container:last-child {
    margin-right: 0
}

[data-functional-theme="accordion"] .text-block__heading {
    margin: 0 0 10px
}

.toggle-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding-bottom 0.5s, visibility 0s;
    transition-delay: 0s, 0s, 0.5s;
    visibility: hidden
}

.toggle-drawer[aria-hidden="false"] {
    max-height: 100%;
    overflow: unset;
    transition-delay: 0s;
    visibility: visible
}

@media print {
    .toggle-drawer {
        max-height: 100%
    }
}

.toggle-drawer--pre-init {
    max-height: 0;
    overflow: hidden;
    visibility: hidden
}

.toggle-drawer-cta {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #176db7;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center
}

@media only print {
    .toggle-drawer-cta {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.toggle-drawer-cta:focus {
    animation: none;
    outline: none
}

.toggle-drawer-cta--button {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    -ms-flex-pack: center;
    justify-content: center
}

@media only print {
    .toggle-drawer-cta--button {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 700
    }
}

.toggle-drawer-cta .icon-mb {
    font-size: 16px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-line-pack: center;
    align-content: center;
    padding-left: 8px
}

.toggle-drawer-cta .icon-mb:before {
    font-size: 15px;
    transition: transform 0.4s cubic-bezier(0.25, 0.04, 0.22, 0.97);
    transform-origin: center
}

@media print {
    .toggle-drawer-cta .icon-mb:before {
        transform: rotate(180deg)
    }
}

.toggle-drawer-cta .icon-mb--large:before {
    font-size: 22px
}

.toggle-drawer-cta[aria-expanded="true"] .icon-mb:before {
    transform: rotate(180deg)
}

.toggle-drawer-cta:hover,
.toggle-drawer-cta:focus {
    color: #2e7cbe
}

.tool-tip {
    position: relative;
    display: inline-block;
    line-height: 1;
    vertical-align: middle
}

.tool-tip__icon {
    display: inline-block;
    color: #176db7;
    font-size: 16px
}

.tool-tip__icon:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%
}

.tool-tip--active .tool-tip__icon,
.tool-tip__icon:hover,
.tool-tip__icon:focus {
    color: #2e7cbe;
    cursor: pointer
}

.tool-tip__icon:after {
    position: relative
}

body[data-theme="amg"] .tool-tip__icon,
[data-theme="amg"].grid-debugger .tool-tip__icon {
    color: #eb0000
}

.amg-component .tool-tip__icon {
    color: #eb0000
}

body[data-theme="maybach"] .tool-tip__icon,
[data-theme="maybach"].grid-debugger .tool-tip__icon {
    color: #00635b
}

.maybach-component .tool-tip__icon {
    color: #00635b
}

.tool-tip__caret {
    display: none
}

.tool-tip--active .tool-tip__caret {
    display: block;
    position: absolute;
    bottom: -5px;
    z-index: 600;
    left: 50%;
    transform: translateX(-50%)
}

.tool-tip--active .tool-tip__caret:before,
.tool-tip--active .tool-tip__caret:after {
    display: block;
    content: '';
    position: absolute
}

.tool-tip--active .tool-tip__caret:before {
    position: absolute;
    left: 50%;
    transform: translate3d(0, -50%, 0);
    top: -4px;
    margin-left: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #c6c6c6;
    top: 0
}

.tool-tip--active .tool-tip__caret:after {
    position: absolute;
    left: 50%;
    transform: translate3d(0, -50%, 0);
    top: -4px;
    margin-left: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    top: 2px
}

body[data-theme="amg"] .tool-tip--active .tool-tip__caret:after,
[data-theme="amg"].grid-debugger .tool-tip--active .tool-tip__caret:after {
    border-bottom: transparent
}

.amg-component .tool-tip--active .tool-tip__caret:after {
    border-bottom: transparent
}

.tool-tip__flyout {
    display: none
}

.tool-tip--active .tool-tip__flyout {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    display: block;
    position: absolute;
    width: 95vw;
    border: 1px solid #c6c6c6;
    border-radius: 2px;
    top: calc(100% + 8px);
    padding: 15px;
    background: #fff;
    z-index: 500
}

@media only print {
    .tool-tip--active .tool-tip__flyout {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

@media screen and (min-width: 768px) {
    .tool-tip--active .tool-tip__flyout {
        width: 300px
    }
}

body[data-theme="amg"] .tool-tip--active .tool-tip__flyout,
[data-theme="amg"].grid-debugger .tool-tip--active .tool-tip__flyout {
    background: #000
}

.amg-component .tool-tip--active .tool-tip__flyout {
    background: #000
}

.tool-tip--custom-size .tool-tip__flyout {
    width: auto
}

@media screen and (min-width: 768px) {
    .tool-tip__flyout[data-tool-tip-position^="left"] {
        left: -15px
    }
}

@media screen and (min-width: 768px) {
    .tool-tip__flyout[data-tool-tip-position^="center"] {
        left: 50%;
        transform: translateX(-50%)
    }
}

@media screen and (min-width: 768px) {
    .tool-tip__flyout[data-tool-tip-position^="right"] {
        right: -15px
    }
}

.tool-tip--disabled {
    display: none
}

.tool-tip--open-up.tool-tip--active .tool-tip__caret {
    top: 0;
    bottom: auto;
    transform: rotate(180deg)
}

.tool-tip--open-up.tool-tip--active .tool-tip__flyout {
    top: calc(-100% - 25px)
}

@media screen and (min-width: 980px) {
    .tool-tip--open-up.tool-tip--active .tool-tip__flyout {
        top: calc(-100% - 23px)
    }
}

.tool-tip--hide-flyout {
    overflow: hidden
}

.tool-tip--active .tool-tip__flyout--favorites {
    padding: 5px
}

@media screen and (min-width: 768px) {
    .tool-tip--active .tool-tip__flyout--favorites {
        width: auto;
        padding: 5px 10px
    }

    .tool-tip--active .tool-tip__flyout--favorites.tool-tip__flyout--favorites-remove[data-tool-tip-position^="center"] {
        margin-left: 20px
    }
}

.tool-tip--favorites {
    top: -10px;
    left: calc(100% - 8px)
}

.html5-video-control {
    height: 100%;
    line-height: 0;
    position: relative
}

.html5-video-control__button {
    color: #fff;
    font-size: 0px;
    cursor: pointer;
    pointer-events: auto
}

body[data-theme="maybach"] .html5-video-control__button,
[data-theme="maybach"].grid-debugger .html5-video-control__button {
    color: #00635b
}

body[data-theme="maybach"] .html5-video-control__button:hover,
[data-theme="maybach"].grid-debugger .html5-video-control__button:hover,
body[data-theme="maybach"] .html5-video-control__button:focus,
[data-theme="maybach"].grid-debugger .html5-video-control__button:focus {
    color: #005670
}

.maybach-component .html5-video-control__button {
    color: #00635b
}

.maybach-component .html5-video-control__button:hover,
.maybach-component .html5-video-control__button:focus {
    color: #005670
}

body[data-theme="maybach"] .light .html5-video-control__button,
[data-theme="maybach"].grid-debugger .light .html5-video-control__button {
    color: #fff
}

body[data-theme="maybach"] .light .html5-video-control__button:hover,
[data-theme="maybach"].grid-debugger .light .html5-video-control__button:hover,
body[data-theme="maybach"] .light .html5-video-control__button:focus,
[data-theme="maybach"].grid-debugger .light .html5-video-control__button:focus {
    color: #fff
}

.maybach-component .light .html5-video-control__button {
    color: #fff
}

.maybach-component .light .html5-video-control__button:hover,
.maybach-component .light .html5-video-control__button:focus {
    color: #fff
}

.html5-video-control__button:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 39px
}

.html5-video-control__button--play:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    font-size: 39px
}

.html5-video-control__button-wrapper {
    text-align: right;
    width: 100vw;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate3D(-50%, 0, 0);
    z-index: 1;
    pointer-events: none
}

@media screen and (min-width: 980px) {
    .html5-video-control__button-wrapper {
        bottom: 25px;
        right: 25px
    }
}

.youtube__wrapper {
    position: relative
}

.youtube-trigger {
    width: 100%;
    cursor: pointer;
    position: relative
}

.youtube-trigger__image {
    width: 100%
}

.youtube-trigger__icon-play {
    border-radius: 50%;
    border: 2px solid #fff;
    width: auto;
    height: 75px;
    max-height: 80%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%)
}

.youtube-trigger__circle {
    opacity: 0.5;
    fill: #000
}

.youtube-trigger__triangle {
    fill: #fff
}

.youtube-trigger__modal {
    background: transparent no-repeat center center;
    background-size: cover;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.youtube-modal__outer-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    max-width: none
}

.youtube-modal__outer-container::after {
    clear: both;
    content: '';
    display: block
}

.youtube-modal__container {
    padding-top: 50%;
    background-color: #000;
    position: relative
}

@media screen and (min-width: 768px) {
    .youtube-modal__container {
        padding-top: 50%
    }
}

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

.youtube-transcript__wrapper {
    color: #000
}

body[data-theme="amg"] .youtube-transcript__wrapper,
[data-theme="amg"].grid-debugger .youtube-transcript__wrapper {
    color: #fff
}

.amg-component .youtube-transcript__wrapper {
    color: #fff
}

@media screen and (min-width: 768px) {
    .youtube-transcript__wrapper {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 74.41059%;
        padding-left: 30px
    }

    .youtube-transcript__wrapper:last-child {
        margin-right: 0
    }
}

@media screen and (min-width: 1440px) {
    .youtube-transcript__wrapper {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 65.88078%
    }

    .youtube-transcript__wrapper:last-child {
        margin-right: 0
    }
}

.youtube-transcript__wrapper--disabled {
    opacity: 0.4;
    pointer-events: none
}

.youtube-transcript__wrapper .youtube-transcript__content[aria-hidden="false"] {
    overflow: hidden
}

.youtube-transcript__toggle-button {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
    padding: 10px 10px 5px 0;
    cursor: pointer
}

@media only print {
    .youtube-transcript__toggle-button {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

body[data-theme="amg"] .youtube-transcript__toggle-button,
[data-theme="amg"].grid-debugger .youtube-transcript__toggle-button {
    color: #fff
}

.amg-component .youtube-transcript__toggle-button {
    color: #fff
}

.youtube-transcript__toggle-button[aria-expanded="true"] {
    color: #176db7
}

body[data-theme="amg"] .youtube-transcript__toggle-button[aria-expanded="true"],
[data-theme="amg"].grid-debugger .youtube-transcript__toggle-button[aria-expanded="true"] {
    color: #eb0000
}

.amg-component .youtube-transcript__toggle-button[aria-expanded="true"] {
    color: #eb0000
}

.youtube-transcript__toggle-button[aria-expanded="true"]:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    color: #176db7
}

body[data-theme="amg"] .youtube-transcript__toggle-button[aria-expanded="true"]:after,
[data-theme="amg"].grid-debugger .youtube-transcript__toggle-button[aria-expanded="true"]:after {
    color: #eb0000
}

.amg-component .youtube-transcript__toggle-button[aria-expanded="true"]:after {
    color: #eb0000
}

.youtube-transcript__toggle-button:after {
    content: "";
    font-family: nafta-icons;
    font-weight: normal;
    font-size: 100%;
    color: #000;
    margin-left: 10px
}

body[data-theme="amg"] .youtube-transcript__toggle-button:after,
[data-theme="amg"].grid-debugger .youtube-transcript__toggle-button:after {
    color: #fff
}

.amg-component .youtube-transcript__toggle-button:after {
    color: #fff
}

.youtube-transcript__content {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400
}

@media only print {
    .youtube-transcript__content {
        font-family: "Arial", sans-serif;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400
    }
}

.youtube-transcript__content p {
    padding-top: 15px
}