.a-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.a-button .btn {
    color: var(--button-color);
    font-size: var(--button-font-size);
    line-height: var(--button-line-height);
    padding: var(--button-padding);
    border-radius: var(--button-border-radius);
    border: var(--button-border);
    font-weight: bold;
    text-transform: uppercase;
    position: relative
}

@media(max-width:767.98px) {
    .a-button .btn {
        width: 100%
    }
}

.a-button .btn:hover {
    -webkit-box-shadow: var(--button-box-shadow);
    box-shadow: var(--button-box-shadow);
    color: var(--button-color-hover)
}

.a-button .btn:hover .abt-icon:before {
    color: var(--button-color-hover)
}

.a-button .btn:disabled,
.a-button .btn.disabled {
    background-color: var(--button-disabled-bg-color);
    color: var(--button-disabled-color);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    cursor: default
}

.a-button .btn:disabled:active,
.a-button .btn.disabled:active {
    background-color: var(--button-disabled-bg-color);
    color: var(--button-disabled-color)
}

.a-button .btn__img {
    padding: 0;
    background-color: transparent
}

.a-button .btn__img:hover {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.a-button .btn__img:active {
    background-color: transparent
}

.a-button--lg .btn {
    padding: var(--button-padding)
}

.a-button--lg .abt-icon {
    font-size: var(--button-icon-size-lg) !important
}

.a-button--md .btn {
    padding: var(--button-padding-md)
}

.a-button--md .abt-icon {
    font-size: var(--button-icon-size) !important
}

.a-button--sm .btn {
    padding: var(--button-padding-sm);
    font-size: var(--button-font-size-sm);
    line-height: var(--button-line-height-sm)
}

.a-button--sm .abt-icon {
    font-size: var(--button-icon-size-sm) !important;
    top: 8px
}

.a-button .abt-icon {
    position: absolute;
    font-size: var(--button-icon-size);
    display: none
}

.a-button .abt-icon-only {
    display: contents
}

.a-button--icon-left .abt-icon:not(.abt-icon-only) {
    display: inherit;
    left: 20px
}

.a-button--icon-left span {
    padding-left: 20px
}

.a-button--icon-right .abt-icon:not(.abt-icon-only) {
    display: inherit;
    right: 20px
}

.a-button--icon-right span {
    padding-right: 22px
}

.a-button--full-width {
    width: 100%;
    display: block
}

.a-button--full-width .btn {
    width: 100%
}

@media(max-width:767.98px) {
    .a-button--full-width-mobile {
        display: block;
        width: 100%
    }

    .a-button--full-width-mobile .btn {
        width: 100%
    }
}

.a-button--img .btn {
    padding: 0
}

.a-button--img .btn:hover {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.a-button--primary .btn {
    background-color: var(--button-primary-bg);
    color: var(--button-primary-color)
}

.a-button--primary .btn:active {
    background-color: var(--button-primary-bg-pressed)
}

.a-button--primary-v1 .btn {
    background-color: var(--button-primary-v1-bg);
    color: var(--button-primary-v1-color)
}

.a-button--primary-v1 .btn:hover {
    color: var(--button-primary-v1-color)
}

.a-button--primary-v1 .btn:active {
    background-color: var(--button-primary-v1-bg-pressed);
    color: var(--button-primary-v1-color-pressed)
}

.a-button--primary-v2 .btn {
    background-color: var(--button-primary-v2-bg);
    color: var(--button-primary-v2-color)
}

.a-button--primary-v2 .btn:hover {
    color: var(--button-primary-v2-color)
}

.a-button--primary-v2 .btn:active {
    background-color: var(--button-primary-v2-bg-pressed);
    color: var(--button-primary-v2-color)
}

.a-button--secondary .btn {
    border: var(--button-secondary-border);
    background-color: var(--button-secondary-bg);
    color: var(--button-secondary-color)
}

.a-button--secondary .btn:hover {
    background-color: var(--button-secondary-bg-hover);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: var(--button-secondary-color-hover)
}

.a-button--secondary .btn:active {
    background-color: var(--button-secondary-bg-pressed);
    -webkit-box-shadow: var(--button-box-shadow);
    box-shadow: var(--button-box-shadow)
}

.a-button--secondary-v1 .btn {
    border: var(--button-secondary-v1-border);
    background-color: var(--button-secondary-v1-bg);
    color: var(--button-secondary-v1-color)
}

.a-button--secondary-v1 .btn:hover {
    background-color: var(--button-secondary-v1-bg-hover);
    color: var(--button-secondary-v1-color);
    -webkit-box-shadow: none;
    box-shadow: none
}

.a-button--secondary-v1 .btn:active {
    background-color: var(--button-secondary-v1-bg-pressed);
    color: var(--button-secondary-v1-color);
    -webkit-box-shadow: var(--button-box-shadow);
    box-shadow: var(--button-box-shadow)
}

.a-button--tertiary .btn {
    background-color: var(--button-tertiary-bg);
    color: var(--button-tertiary-color)
}

.a-button--tertiary .btn:hover {
    background-color: var(--button-tertiary-bg-hover);
    color: var(--button-tertiary-color-hover);
    -webkit-box-shadow: none;
    box-shadow: none
}

.a-button--tertiary .btn:active {
    background-color: var(--button-tertiary-bg-pressed);
    color: var(--button-tertiary-color)
}

.a-button--danger .btn {
    background-color: var(--button-danger-bg);
    color: var(--button-danger-color)
}

.a-button--danger .btn:hover {
    color: var(--button-danger-color)
}

.a-button--danger .btn:active {
    background-color: var(--button-danger-bg-pressed);
    color: var(--button-danger-color)
}

.a-button--outline.a-button--primary .btn {
    color: var(--button-outline-color);
    border: 1px solid var(--button-outline-border-color);
    background-color: var(--button-outline-bg)
}

.a-button--outline.a-button--primary-v1 .btn {
    border: 1px solid var(--button-primary-v1-bg);
    color: var(--button-outline-color);
    background-color: var(--button-outline-bg)
}

.a-button--outline.a-button--primary-v1 .btn:hover {
    background-color: var(--button-primary-v1-bg)
}

.a-button--outline.a-button--primary-v1 .btn:active {
    background-color: var(--button-primary-v2-bg-pressed);
    color: var(--button-primary-v2-color)
}

.a-button--outline.a-button--primary-v2 .btn {
    border: 1px solid var(--button-outline-border-color);
    color: var(--button-outline-color);
    background-color: var(--button-outline-bg)
}

.a-button--outline.a-button--primary-v2 .btn:active {
    background-color: var(--button-primary-v2-bg-pressed);
    color: var(--button-primary-v2-color)
}

.a-button--outline.a-button--secondary-v1 .btn {
    border: 1px solid var(--button-secondary-v1-color);
    background-color: var(--button-outline-bg)
}

.a-button--outline.a-button--tertiary .btn {
    border: 1px solid var(--button-tertiary-bg-pressed);
    background-color: var(--button-outline-bg)
}

.a-button--outline.a-button--danger .btn {
    border: 1px solid var(--button-danger-bg);
    color: var(--button-danger-bg);
    background-color: var(--button-outline-bg)
}

.a-button--spinner {
    position: relative
}

.a-button--spinner .abt-icon {
    position: static;
    background: 0;
    height: 1rem;
    width: 1rem;
    margin: 0 .5rem 0 0;
    display: inline-block;
    vertical-align: text-bottom;
    border: .125em solid var(--button-spinner-fg-color);
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
    top: -1px
}

.a-button--spinner .abt-icon:before {
    display: none
}

.a-button--spinner-sm button {
    height: 3rem;
    width: 3.5rem
}

.a-button--spinner-sm::before {
    position: absolute;
    top: 20px;
    right: auto;
    left: 24px
}

@media(max-width:767.98px) {
    .a-button--mobile-icon .btn {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    .a-button--mobile-icon .btn .abt-icon {
        position: static;
        left: inherit;
        right: inherit
    }

    .a-button--mobile-icon .btn span {
        display: none
    }
}

.a-button .m-popup .a-link .abt-icon {
    position: absolute;
    top: inherit;
    color: inherit
}

.a-product-price {
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
    background-color: var(--product-price-bg-color)
}

.a-product-price__normal-price {
    color: var(--product-price-normal-color);
    font-size: var(--product-price-normal-font-size);
    line-height: 1.2
}

.a-product-price__discount-price {
    color: var(--product-price-discount-color);
    font-size: var(--product-price-discount-font-size);
    line-height: var(--product-price-discount-line-height);
    text-decoration: line-through
}

.a-product-price__labels {
    display: none
}

.a-product-price__subscription-label {
    margin: 0;
    color: var(--product-price-subscription-label-color);
    font-size: var(--product-price-subscription-label-font-size)
}

.a-input-field {
    margin: var(--input-field-margin)
}

.a-input-field--text-error,
.a-input-field--text-regex,
.a-input-field--text-require {
    display: none
}

.a-input-field--required {
    display: none
}

.a-input-field--required.show {
    display: inline-block
}

.a-input-field--text-help {
    display: block;
    margin-top: var(--input-field-help-text-margin-top)
}

.a-input-field .form-group .a-input-label,
.a-input-field.form-group .a-input-label {
    font-size: var(--input-field-label-font-size);
    line-height: var(--input-field-label-line-height);
    color: var(--input-field-label-color);
    text-transform: none;
    font-weight: normal;
    margin-bottom: var(--input-field-spacing-bottom)
}

.a-input-field .form-group .a-input-grp,
.a-input-field.form-group .a-input-grp {
    position: relative
}

.a-input-field .form-group .a-input-grp input,
.a-input-field .form-group .a-input-grp textarea,
.a-input-field.form-group .a-input-grp input,
.a-input-field.form-group .a-input-grp textarea {
    outline: 0;
    color: var(--input-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: inherit
}

.a-input-field .form-group .a-input-grp textarea,
.a-input-field.form-group .a-input-grp textarea {
    height: auto
}

.a-input-field .form-group .a-input-grp input::-webkit-input-placeholder,
.a-input-field .form-group .a-input-grp textarea::-webkit-input-placeholder,
.a-input-field.form-group .a-input-grp input::-webkit-input-placeholder,
.a-input-field.form-group .a-input-grp textarea::-webkit-input-placeholder {
    color: var(--input-field-placeholder-color)
}

.a-input-field .form-group .a-input-grp input::-moz-placeholder,
.a-input-field .form-group .a-input-grp textarea::-moz-placeholder,
.a-input-field.form-group .a-input-grp input::-moz-placeholder,
.a-input-field.form-group .a-input-grp textarea::-moz-placeholder {
    color: var(--input-field-placeholder-color)
}

.a-input-field .form-group .a-input-grp input:-ms-input-placeholder,
.a-input-field .form-group .a-input-grp textarea:-ms-input-placeholder,
.a-input-field.form-group .a-input-grp input:-ms-input-placeholder,
.a-input-field.form-group .a-input-grp textarea:-ms-input-placeholder {
    color: var(--input-field-placeholder-color)
}

.a-input-field .form-group .a-input-grp input::-ms-input-placeholder,
.a-input-field .form-group .a-input-grp textarea::-ms-input-placeholder,
.a-input-field.form-group .a-input-grp input::-ms-input-placeholder,
.a-input-field.form-group .a-input-grp textarea::-ms-input-placeholder {
    color: var(--input-field-placeholder-color)
}

.a-input-field .form-group .a-input-grp input::placeholder,
.a-input-field .form-group .a-input-grp textarea::placeholder,
.a-input-field.form-group .a-input-grp input::placeholder,
.a-input-field.form-group .a-input-grp textarea::placeholder {
    color: var(--input-field-placeholder-color)
}

.a-input-field .form-group .a-input-grp .a-input-control,
.a-input-field.form-group .a-input-grp .a-input-control {
    border-radius: var(--input-field-border-radius);
    font-size: var(--input-field-label-font-size);
    line-height: var(--input-field-label-line-height);
    color: var(--input-color);
    text-transform: none;
    font-weight: normal;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--input-bg);
    border: var(--input-field-border)
}

.a-input-field .form-group .a-input-grp .a-input-control:focus,
.a-input-field.form-group .a-input-grp .a-input-control:focus {
    border-color: var(--input-field-focus-color);
    -webkit-box-shadow: var(--input-field-box-shadow-focus);
    box-shadow: var(--input-field-box-shadow-focus)
}

.a-input-field .form-group .a-input-grp .a-input-control:disabled,
.a-input-field .form-group .a-input-grp .a-input-control[readonly],
.a-input-field.form-group .a-input-grp .a-input-control:disabled,
.a-input-field.form-group .a-input-grp .a-input-control[readonly] {
    background-color: var(--input-field-readonly-color);
    border-color: var(--input-field-readonly-color)
}

.a-input-field .form-group .a-input-grp input.a-input-control,
.a-input-field.form-group .a-input-grp input.a-input-control {
    height: var(--input-field-height);
    max-height: var(--input-field-max-height);
    padding: var(--input-field-padding)
}

.a-input-field .form-group .a-input-grp .icon,
.a-input-field.form-group .a-input-grp .icon {
    font-size: var(--input-icon-size)
}

.a-input-field .form-group .a-input-grp .icon.icon-left,
.a-input-field.form-group .a-input-grp .icon.icon-left {
    position: absolute;
    z-index: 4;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: var(--input-field-icon-spacing-left)
}

.a-input-field .form-group .a-input-grp .icon.icon-right,
.a-input-field.form-group .a-input-grp .icon.icon-right {
    position: absolute;
    z-index: 4;
    top: 50%;
    right: 0;
    left: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: var(--input-field-icon-spacing-right)
}

.a-input-field .form-group .a-input-grp.double-icon input.a-input-control,
.a-input-field.form-group .a-input-grp.double-icon input.a-input-control {
    padding: var(--input-field-double-icon-padding)
}

.a-input-field .form-group .a-input-grp.left-icon input.a-input-control,
.a-input-field.form-group .a-input-grp.left-icon input.a-input-control {
    padding: var(--input-field-left-icon-padding)
}

.a-input-field .form-group .a-input-grp.right-icon input.a-input-control,
.a-input-field.form-group .a-input-grp.right-icon input.a-input-control {
    padding: var(--input-field-right-icon-padding)
}

.a-input-field .form-group .a-input-grp.a-input-date-group.right-icon .icon,
.a-input-field.form-group .a-input-grp.a-input-date-group.right-icon .icon {
    pointer-events: none;
    background-color: var(--input-bg)
}

.a-input-field .form-group .a-input-grp.a-input-date-group.right-icon input.a-input-control,
.a-input-field.form-group .a-input-grp.a-input-date-group.right-icon input.a-input-control {
    padding-right: .5rem
}

.a-input-field .form-group .form-text,
.a-input-field.form-group .form-text {
    font-size: var(--input-field-form-text-font-size);
    line-height: var(--input-field-form-text-line-height);
    color: var(--input-field-form-text-color);
    text-transform: none;
    font-weight: normal;
    margin-top: var(--input-field-help-text-margin-top)
}

.a-input-field .form-group.validation-error .form-label,
.a-input-field .form-group.validation-regex .form-label,
.a-input-field .form-group.validation-require .form-label,
.a-input-field.form-group.validation-error .form-label,
.a-input-field.form-group.validation-regex .form-label,
.a-input-field.form-group.validation-require .form-label {
    color: var(--input-field-error-color)
}

.a-input-field .form-group.validation-error .a-input-field--text-help,
.a-input-field .form-group.validation-regex .a-input-field--text-help,
.a-input-field .form-group.validation-require .a-input-field--text-help,
.a-input-field.form-group.validation-error .a-input-field--text-help,
.a-input-field.form-group.validation-regex .a-input-field--text-help,
.a-input-field.form-group.validation-require .a-input-field--text-help {
    display: none
}

.a-input-field .form-group.validation-error .input-group .a-input-control,
.a-input-field .form-group.validation-regex .input-group .a-input-control,
.a-input-field .form-group.validation-require .input-group .a-input-control,
.a-input-field.form-group.validation-error .input-group .a-input-control,
.a-input-field.form-group.validation-regex .input-group .a-input-control,
.a-input-field.form-group.validation-require .input-group .a-input-control {
    border-color: var(--input-field-error-color)
}

.a-input-field .form-group.validation-error .a-input-field--text-error,
.a-input-field.form-group.validation-error .a-input-field--text-error {
    display: block;
    color: var(--input-field-error-color)
}

.a-input-field .form-group.validation-error .a-input-field--text-error .abt-icon,
.a-input-field.form-group.validation-error .a-input-field--text-error .abt-icon {
    font-size: var(--input-field-message-icon);
    padding-right: var(--input-field-icon-padding-right);
    position: relative;
    top: 1px
}

.a-input-field .form-group.validation-require .a-input-field--text-require,
.a-input-field.form-group.validation-require .a-input-field--text-require {
    display: block;
    color: var(--input-field-error-color)
}

.a-input-field .form-group.validation-require .a-input-field--text-require .abt-icon,
.a-input-field.form-group.validation-require .a-input-field--text-require .abt-icon {
    font-size: var(--input-field-message-icon);
    padding-right: var(--input-field-icon-padding-right);
    position: relative;
    top: 1px
}

.a-input-field .form-group.validation-regex .a-input-field--text-regex,
.a-input-field.form-group.validation-regex .a-input-field--text-regex {
    display: block;
    color: var(--input-field-error-color)
}

.a-input-field .form-group.validation-regex .a-input-field--text-regex .abt-icon,
.a-input-field.form-group.validation-regex .a-input-field--text-regex .abt-icon {
    font-size: var(--input-field-message-icon);
    padding-right: var(--input-field-icon-padding-right);
    position: relative;
    top: 1px
}

.a-input-field .form-group .a-input-password-strength .password-progressbar,
.a-input-field.form-group .a-input-password-strength .password-progressbar {
    margin: var(--input-field-password-progress-margin-y)
}

.a-input-field .form-group .a-input-password-strength .progress,
.a-input-field.form-group .a-input-password-strength .progress {
    padding: 0;
    margin: var(--input-field-password-progress-margin-x);
    height: var(--input-field-password-progress-height);
    border-radius: var(--input-field-password-progress-border-radius);
    background-color: var(--input-field-password-progress-color)
}

.a-input-field .form-group .a-input-password-strength .progress:first-child,
.a-input-field.form-group .a-input-password-strength .progress:first-child {
    margin-left: 0
}

.a-input-field .form-group .a-input-password-strength .progress:last-child,
.a-input-field.form-group .a-input-password-strength .progress:last-child {
    margin-right: 0
}

.a-input-field .form-group .a-input-password-strength.password-weak .progress:first-child .progress-bar,
.a-input-field.form-group .a-input-password-strength.password-weak .progress:first-child .progress-bar {
    background-color: var(--input-filed-password-progress-weak-color);
    width: 100%
}

.a-input-field .form-group .a-input-password-strength.password-ok .progress:nth-child(-n + 2) .progress-bar,
.a-input-field.form-group .a-input-password-strength.password-ok .progress:nth-child(-n + 2) .progress-bar {
    background-color: var(--input-filed-password-progress-medium-color);
    width: 100%
}

.a-input-field .form-group .a-input-password-strength.password-medium .progress:nth-child(-n + 3) .progress-bar,
.a-input-field.form-group .a-input-password-strength.password-medium .progress:nth-child(-n + 3) .progress-bar {
    background-color: var(--input-filed-password-progress-strong-color);
    width: 100%
}

.a-input-field .form-group .a-input-password-strength.password-strong .progress:nth-child(-n + 4) .progress-bar,
.a-input-field.form-group .a-input-password-strength.password-strong .progress:nth-child(-n + 4) .progress-bar {
    background-color: var(--input-filed-password-progress-strong-color);
    width: 100%
}

.a-input-field .form-group .a-input-password-strength[data-password-type="complex"].password-medium .progress:nth-child(-n + 3) .progress-bar,
.a-input-field.form-group .a-input-password-strength[data-password-type="complex"].password-medium .progress:nth-child(-n + 3) .progress-bar {
    background-color: var(--input-filed-password-progress-medium-color);
    width: 100%
}

.a-input-field .form-group .tooltip-pwd,
.a-input-field.form-group .tooltip-pwd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: var(--input-field-help-text-margin-top)
}

.a-input-field .form-group .tooltip-pwd .a-tooltip,
.a-input-field.form-group .tooltip-pwd .a-tooltip {
    position: relative
}

.a-input-field .form-group .tooltip-pwd .a-tooltip .tooltip,
.a-input-field.form-group .tooltip-pwd .a-tooltip .tooltip {
    width: var(--input-field-password-tooltip-width)
}

.a-input-field .form-group .tooltip-pwd .tooltip-wrapper,
.a-input-field.form-group .tooltip-pwd .tooltip-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.a-input-field .form-group .tooltip-pwd .tooltip-pwd-label,
.a-input-field.form-group .tooltip-pwd .tooltip-pwd-label {
    font-family: var(--input-field-password-tooltip-font-family);
    font-size: var(--input-field-password-tooltip-font-size);
    line-height: var(--input-field-password-tooltip-line-height);
    color: var(--input-field-password-tooltip-font-color);
    text-transform: none;
    font-weight: normal;
    letter-spacing: 0;
    margin-bottom: 0;
    margin-right: var(--input-field-password-indicator-margin-right)
}

.a-input-field .form-group .tooltip-pwd .tooltip-pwd-title,
.a-input-field.form-group .tooltip-pwd .tooltip-pwd-title {
    font-family: var(--input-field-password-tooltip-font-family);
    font-size: var(--input-field-password-tooltip-font-size);
    line-height: var(--input-field-password-tooltip-line-height)
}

.a-input-field .form-group .tooltip-pwd .abt-icon,
.a-input-field.form-group .tooltip-pwd .abt-icon {
    color: var(--input-field-password-tooltip-font-color)
}

.a-input-field .form-group .tooltip-pwd .tooltip-pwd-table,
.a-input-field.form-group .tooltip-pwd .tooltip-pwd-table {
    font-size: var(--input-field-password-tooltip-font-size);
    line-height: var(--input-field-password-tooltip-line-height)
}

.a-input-field .form-group .tooltip-pwd .tooltip-pwd-table .col-3,
.a-input-field.form-group .tooltip-pwd .tooltip-pwd-table .col-3 {
    padding-right: 0
}

.a-input-field .form-group .tooltip-pwd .tooltip-pwd-table .abt-icon-cross,
.a-input-field.form-group .tooltip-pwd .tooltip-pwd-table .abt-icon-cross {
    color: var(--input-field-password-danger-color);
    font-size: var(--input-field-password-tooltip-icon-size);
    padding-right: var(--input-field-password-icon-padding-right)
}

.a-input-field .form-group .tooltip-pwd .tooltip-pwd-table .abt-icon-tick,
.a-input-field.form-group .tooltip-pwd .tooltip-pwd-table .abt-icon-tick {
    color: var(--input-field-password-success-color);
    font-size: var(--input-field-password-tooltip-icon-size);
    padding-right: var(--input-field-password-icon-padding-right)
}

.a-input-field .form-group .tooltip-pwd .tooltip-pwd-table .tooltip-desc,
.a-input-field.form-group .tooltip-pwd .tooltip-pwd-table .tooltip-desc {
    font-size: var(--input-field-password-tooltip-font-size);
    line-height: var(--input-field-password-tooltip-line-height);
    margin-bottom: var(--input-field-password-tooltip-desc-margin-bottom)
}

.a-input-field__asterik-pos--start .a-input-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.a-input-field__asterik-pos--start .a-input-field--required {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.a-input-field__asterik-pos--start .a-input-field__label {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.a-input-field-label--color-alternate .form-group .a-input-label {
    color: var(--input-field-label-color-black)
}

.a-input-field[data-required="true"] .a-input-field--required {
    display: inline-block
}

.checkbox {
    --checkbox-error-color: var(--danger-color);
    --checkbox-message-icon: .75rem;
    --checkbox-icon-padding-right: .5rem;
    --checkbox-form-text-font-size: .75rem;
    --checkbox-form-text-line-height: 1rem;
    --checkbox-form-text-color: var(--gray-darker-color);
    --checkbox-help-text-margin-bottom: .75rem;
    --checkbox-help-text-margin-top: -0.625rem
}

.a-checkbox {
    display: block;
    position: relative;
    padding-left: var(--checkbox-padding-left);
    padding-right: var(--checkbox-padding-right);
    margin-bottom: var(--checkbox-margin-bottom);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.a-checkbox-label {
    display: block;
    color: #63666a
}

.a-checkbox--vertical {
    display: block
}

.a-checkbox--horizontal {
    display: inline-block
}

.a-checkbox__text {
    cursor: pointer;
    font-size: var(--checkbox-font-size);
    line-height: var(--checkbox-line-height);
    color: var(--checkbox-color)
}

.a-checkbox__title-text:empty,
.a-checkbox__title-text:empty+.a-dropdown__title--required {
    display: none
}

.a-checkbox--label-none {
    margin-bottom: var(--checkbox-label-none-margin-bottom)
}

.a-checkbox--label-none .a-checkbox__text {
    display: none
}

.a-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.a-checkbox__custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    border-radius: .25rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: var(--checkbox-custom-border);
    background-color: var(--checkbox-custom-bg)
}

input:checked~.a-checkbox__custom {
    background-color: var(--checkbox-checked-bg);
    -webkit-box-shadow: var(--checkbox-field-box-shadow-focus);
    box-shadow: var(--checkbox-field-box-shadow-focus)
}

input:checked~.a-checkbox__custom:after {
    display: block
}

.a-checkbox__custom:after {
    content: "";
    position: absolute;
    display: none;
    left: .375rem;
    top: .125rem;
    width: .375rem;
    height: .625rem;
    border: solid var(--checkbox-tick-color);
    border-width: 0 .125rem .125rem 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.a-checkbox--error label.a-checkbox__label .a-checkbox__text {
    color: var(--checkbox-error-color)
}

.a-checkbox--error label.a-checkbox__label .a-checkbox__custom {
    border: 1px solid var(--checkbox-error-color)
}

.a-checkbox--error label.a-checkbox__label input:checked~.a-checkbox__custom {
    background-color: var(--checkbox-custom-bg)
}

.a-checkbox--checked-disabled label.a-checkbox__label .a-checkbox__text {
    color: var(--checkbox-disabled-color)
}

.a-checkbox--checked-disabled label.a-checkbox__label .a-checkbox__custom {
    border: 1px solid var(--checkbox-disabled-color);
    background-color: var(--checkbox-disabled-color)
}

.a-checkbox--checked-disabled label.a-checkbox__label .a-checkbox__custom:after {
    display: block
}

.a-checkbox--disabled label.a-checkbox__label .a-checkbox__text {
    color: var(--checkbox-disabled-color)
}

.a-checkbox--disabled label.a-checkbox__label .a-checkbox__custom {
    border: 1px solid var(--checkbox-disabled-color);
    background-color: var(--checkbox-disabled-bg-color)
}

.a-checkbox--indeterminate .a-checkbox__custom:after {
    content: "\2212";
    left: .3125rem;
    top: 0;
    color: var(--checkbox-indeterminate-tick-color);
    background-color: var(--checkbox-indeterminate-checked-bg);
    text-align: center;
    height: 0;
    width: 0;
    border: 0;
    border-width: 0;
    -webkit-transform: rotate(0);
    transform: rotate(0)
}

.a-checkbox--indeterminate .a-checkbox__custom {
    border: 1px solid var(--checkbox-indeterminate-tick-color);
    background-color: var(--checkbox-indeterminate-checked-bg)
}

.a-checkbox--indeterminate .a-checkbox__custom::after {
    display: block
}

.a-checkbox--indeterminate input:checked~.a-checkbox__custom:after {
    content: " ";
    background-color: transparent;
    left: .375rem;
    top: .125rem;
    width: .375rem;
    height: .625rem;
    border: solid var(--checkbox-tick-color);
    border-width: 0 .125rem .125rem 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    color: var(--checkbox-tick-color)
}

.checkbox--text-require {
    display: none;
    font-size: var(--checkbox-form-text-font-size);
    line-height: var(--checkbox-form-text-line-height);
    color: var(--checkbox-form-text-color);
    text-transform: none;
    font-weight: normal;
    margin-bottom: var(--checkbox-help-text-margin-bottom);
    margin-top: var(--checkbox-help-text-margin-top)
}

.checkbox.validation-require .checkbox--text-require {
    display: block;
    font-size: var(--checkbox-form-text-font-size);
    color: var(--checkbox-error-color)
}

.checkbox.validation-require .checkbox--text-require .abt-icon {
    font-size: var(--checkbox-message-icon);
    padding-right: var(--checkbox-icon-padding-right);
    position: relative;
    top: 1px
}

.checkbox.validation-require .a-checkbox-label {
    color: var(--checkbox-error-color)
}

.checkbox.validation-require .a-checkbox__custom {
    outline: 1px solid var(--checkbox-error-color)
}

.options__asterik-pos--start .a-checkbox-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.options__asterik-pos--start .a-checkbox__title-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.a-options-label--color-alternate .a-checkbox-label {
    color: var(--checkbox-label-color)
}

.a-bg-img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

@media(max-width:767.98px) {
    .a-bg-img {
        display: none
    }
}

.a-bg-img__image,
.a-bg-img img {
    max-width: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center
}

.m-payon-form {
    font-family: var(--payon-group-font-family)
}

.m-payon-form__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.m-payon-form__container>.a-button {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: var(--payon-group-pay-btn-margin-top)
}

.m-payon-form .wpwl-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: none;
    margin: 0
}

.m-payon-form .wpwl-form .wpwl-group {
    margin-bottom: 0
}

.m-payon-form .wpwl-form .wpwl-group:not(.wpwl-group-brand):not(.wpwl-group-submit) {
    min-height: var(--payon-group-group-min-height)
}

.m-payon-form .wpwl-form .wpwl-label {
    color: var(--payon-group-label-color);
    font-size: var(--payon-group-label-font-size);
    line-height: var(--payon-group-label-line-heigh);
    width: 100%
}

.m-payon-form .wpwl-form .wpwl-control {
    color: var(--payon-group-input-color);
    font-size: var(--payon-group-input-font-size);
    line-height: var(--payon-group-input-line-height);
    border: var(--payon-group-input-border);
    border-radius: var(--payon-group-input-radius);
    padding: var(--payon-group-input-padding);
    height: var(--payon-group-input-height)
}

.m-payon-form .wpwl-form .wpwl-control::-webkit-input-placeholder {
    color: var(--payon-group-input-placeholder-color)
}

.m-payon-form .wpwl-form .wpwl-control::-moz-placeholder {
    color: var(--payon-group-input-placeholder-color)
}

.m-payon-form .wpwl-form .wpwl-control:-ms-input-placeholder {
    color: var(--payon-group-input-placeholder-color)
}

.m-payon-form .wpwl-form .wpwl-control::-ms-input-placeholder {
    color: var(--payon-group-input-placeholder-color)
}

.m-payon-form .wpwl-form .wpwl-control::placeholder {
    color: var(--payon-group-input-placeholder-color)
}

.m-payon-form .wpwl-form .wpwl-control.wpwl-has-error+.wpwl-hint {
    color: var(--payon-group-input-error-color)
}

.m-payon-form .wpwl-form .wpwl-hint {
    font-size: var(--payon-group-hint-font-size);
    line-height: var(--payon-group-hint-line-height)
}

.m-payon-form .wpwl-form .wpwl-group-cardNumber,
.m-payon-form .wpwl-form .wpwl-group-cardHolder {
    width: var(--payon-group-input-larger-width)
}

@media(min-width:768px) {

    .m-payon-form .wpwl-form .wpwl-group-cardNumber,
    .m-payon-form .wpwl-form .wpwl-group-cardHolder {
        width: var(--payon-group-input-larger-width-lg)
    }
}

.m-payon-form .wpwl-form .wpwl-group-expiry,
.m-payon-form .wpwl-form .wpwl-group-cvv {
    margin-left: auto;
    width: var(--payon-group-input-shorter-width)
}

@media(min-width:768px) {

    .m-payon-form .wpwl-form .wpwl-group-expiry,
    .m-payon-form .wpwl-form .wpwl-group-cvv {
        width: var(--payon-group-input-shorter-width-lg)
    }
}

.m-payon-form .wpwl-form .wpwl-group-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: var(--payon-group-group-brand-margin-bottom)
}

@media(min-width:768px) {
    .m-payon-form .wpwl-form .wpwl-group-brand .wpwl-title {
        display: inline-block;
        margin-right: var(--payon-group-title-margin-right);
        margin-bottom: 0
    }
}

.m-payon-form .wpwl-form .wpwl-group-brand .wpwl-brand-custom {
    display: inline-block;
    float: none
}

@media(max-width:991.98px) {
    .m-payon-form .wpwl-form .wpwl-group-cardHolder {
        width: 100%
    }
}

.m-payon-form .wpwl-form .wpwl-wrapper-cvv {
    min-height: var(--payon-group-ccv-min-height)
}

.m-payon-form .wpwl-form .wpwl-wrapper-cvv .wpwl-popover {
    display: block;
    font-size: var(--payon-group-ccv-popover-font-size);
    line-height: var(--payon-group-ccv-popover-line-height);
    background: transparent;
    position: static;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0
}

.m-payon-form .wpwl-form .wpwl-wrapper-cvv .wpwl-popover .wpwl-img,
.m-payon-form .wpwl-form .wpwl-wrapper-cvv .wpwl-popover .wpwl-arrow {
    display: none
}

.m-payon-form .wpwl-form .wpwl-wrapper-cvv .wpwl-icon {
    display: none
}

@media(max-width:991.98px) {
    .m-payon-form .wpwl-form .wpwl-group-cvv {
        margin-left: 0
    }
}

.m-payon-form .wpwl-form .wpwl-button-pay {
    font-size: var(--payon-group-button-font-size);
    font-weight: bold;
    line-height: var(--payon-group-button-line-height);
    text-transform: uppercase;
    background-color: var(--payon-group-button-bg);
    padding: var(--payon-group-button-padding);
    border: 0;
    border-radius: 999px;
    float: none
}

.m-payon-form .wpwl-brand-card {
    width: var(--payon-group-group-brand-width)
}

.m-payon-form .wpwl-brand-custom {
    margin: var(--payon-group-custom-brand-margin);
    background-image: url("https://oppwa.com/v1/paymentWidgets/img/brand.png")
}

.m-payon-form--my-cards .wpwl-group-brand,
.m-payon-form--my-cards .wpwl-wrapper-submit {
    display: none
}

.m-payon-form .wpwl-wrapper {
    width: 100%
}

.m-payon-form__cvv-icon {
    position: absolute;
    top: var(--payon-group-ccv-icon-top);
    right: var(--payon-group-ccv-icon-right)
}

.m-payon-form__cvv-icon .abt-icon {
    color: var(--payon-group-ccv-icon-color);
    margin: 0
}

.m-payon-form .wpwl-container-card--with-radio {
    border: var(--payon-group-border);
    border-radius: var(--payon-group-border-radius);
    padding: var(--payon-group-form-padding);
    cursor: pointer
}

.m-payon-form .wpwl-container-card--with-radio .wpwl-title {
    margin-left: var(--payon-group-title-margin-left)
}

.m-payon-form .wpwl-group.wpwl-group-registration {
    border: var(--payon-group-border);
    border-radius: var(--payon-group-border-radius);
    margin-bottom: var(--payon-group-cc-list-margin-bottom);
    min-height: auto !important;
    padding-left: var(--payon-group-cc-list-padding-left)
}

.m-payon-form .wpwl-registration {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 0
}

.m-payon-form .wpwl-registration>div {
    width: auto
}

.m-payon-form .a-radio {
    padding: var(--payon-group-radio-padding)
}

.m-payon-form .wpwl-form-card .a-radio {
    margin-top: var(--payon-group-form-radio-margin-top)
}

.m-payon-form .wpwl-wrapper-registration.a-radio {
    margin-top: var(--payon-group-cc-list-radio-margin-top)
}

.m-payon-form .wpwl-group-saveCard {
    min-height: 0 !important
}

.m-payon-form .wpwl-form.wpwl-form-registrations {
    margin: 0
}

.m-payon-form.with-error .wpwl-group-submit,
.m-payon-form.with-error .wpwl-container-card {
    display: block !important
}

.m-payon-form__form-radio {
    position: absolute;
    top: var(--payon-group-custom-radio-form-top);
    z-index: -1
}

.m-payon-form .a-spinner {
    display: block !important;
    position: relative !important;
    -webkit-transform: none !important;
    transform: none !important
}

.a-dropdown__container .a-dropdown__title-text:empty {
    display: none
}

.a-dropdown__container .a-dropdown__title-text:empty+.a-dropdown__title--required {
    display: none
}

.a-dropdown__container .a-dropdown__field {
    background: var(--dropdown-field-bg-color);
    padding: var(--dropdown-field-padding);
    border: var(--dropdown-field-border);
    border-radius: var(--dropdown-field-border-radius);
    position: relative;
    width: 100%;
    line-height: var(--dropdown-field-line-height);
    min-height: var(--dropdown-field-height)
}

.a-dropdown__container .a-dropdown__field .a-dropdown__placeholder {
    font-size: var(--dropdown-field-font-size);
    line-height: var(--dropdown-field-line-height);
    color: var(--dropdown-placeholder-color);
    text-transform: none;
    font-weight: normal;
    word-break: break-all
}

.a-dropdown__container .a-dropdown__field .a-dropdown-selected {
    font-size: var(--dropdown-field-font-size);
    line-height: var(--dropdown-field-line-height);
    color: var(--dropdown-selected-color);
    text-transform: none;
    font-weight: normal;
    word-break: break-all
}

.a-dropdown__container .a-dropdown__field .a-dropdown__menu {
    background: var(--dropdown-menu-bg-color);
    border-radius: var(--dropdown-menu-border-radius);
    -webkit-box-shadow: var(--dropdown-menu-box-shadow);
    box-shadow: var(--dropdown-menu-box-shadow);
    margin-top: var(--dropdown-menu-margin-top);
    max-height: var(--dropdown-menu-max-height);
    display: none;
    list-style: none;
    padding-left: 0;
    pointer-events: none;
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    left: 0;
    overflow-y: auto
}

.a-dropdown__container .a-dropdown__field .a-dropdown__menu li {
    border-bottom: var(--dropdown-menu-list-border-bottom)
}

.a-dropdown__container .a-dropdown__field .a-dropdown__menu li:last-child {
    border-bottom-color: transparent
}

.a-dropdown__container .a-dropdown__field .a-dropdown__menu li.disabled {
    pointer-events: none
}

.a-dropdown__container .a-dropdown__field .a-dropdown__menu li.disabled span {
    color: var(--dropdown-placeholder-color)
}

.a-dropdown__container .a-dropdown__field .a-dropdown__menu li span {
    font-size: var(--dropdown-field-font-size);
    line-height: var(--dropdown-field-line-height);
    color: var(--dropdown-selected-color);
    text-transform: none;
    font-weight: normal;
    padding: var(--dropdown-menu-option-padding);
    display: inline-block;
    word-break: break-all
}

.a-dropdown__container .a-dropdown__field .a-dropdown__menu li:focus {
    outline: 0;
    -webkit-box-shadow: var(--dropdown-field-box-shadow-focus);
    box-shadow: var(--dropdown-field-box-shadow-focus)
}

.a-dropdown__container .a-dropdown__field::after {
    content: "\e907";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 1rem;
    left: auto;
    font-family: var(--dropdown-icon-font-family)
}

.a-dropdown__container .a-dropdown__field.active {
    border-color: var(--dropdown-active-border-color);
    -webkit-box-shadow: var(--dropdown-field-box-shadow-focus);
    box-shadow: var(--dropdown-field-box-shadow-focus)
}

.a-dropdown__container .a-dropdown__field.active .a-dropdown__menu {
    display: block;
    pointer-events: auto
}

.a-dropdown__container .a-dropdown__field.active::after {
    content: "\e917"
}

.a-dropdown__container .a-dropdown__field.disabled {
    background-color: var(--dropdown-disabled-bg-color);
    border: var(--dropdown-disabled-border);
    pointer-events: none
}

.a-dropdown__container .a-dropdown__field.disabled .a-dropdown-selected {
    color: var(--dropdown-disabled-selected-color)
}

.a-dropdown__container.validation-require .dropdown-field,
.a-dropdown__container.validation-error .dropdown-field {
    border-color: var(--dropdown-error-border-color)
}

.a-dropdown__container ::-webkit-scrollbar {
    width: 8px;
    max-height: var(--dropdown-scroll-max-height)
}

.a-dropdown__container ::-webkit-scrollbar-track {
    border: var(--dropdown-scroll-border);
    border-radius: var(--dropdown-scroll-border-radius)
}

.a-dropdown__container ::-webkit-scrollbar-thumb {
    background: var(--dropdown-scroll-bg-color);
    border-radius: var(--dropdown-scroll-thumb-border-radius)
}

.a-dropdown__container .hidden {
    display: none
}

.a-dropdown.validation-require .a-dropdown__field {
    border-color: var(--dropdown-error-border-color)
}

.a-dropdown.validation-require .form-group .form-label {
    color: var(--dropdown-error-border-color)
}

.options--hide-border .a-dropdown .a-dropdown__container .a-dropdown__field .a-dropdown__menu li {
    border-bottom: 0
}

.a-dropdown[data-required="true"] .a-dropdown__title--required {
    display: inline-block
}

.selectedColor {
    border-bottom-color: transparent;
    background-color: var(--dropdown-menu-option-hover-bg-color)
}

.options__asterik-pos--start .a-dropdown__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.options__asterik-pos--start .a-dropdown__title-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.options__asterik-pos--start .a-dropdown__title--required {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.a-options-label--color-alternate .form-group .a-input-label {
    color: var(--dropdown-label-color)
}

.a-video__player {
    position: relative;
    border: 0;
    height: 0;
    width: 100%;
    padding-bottom: 56.25%
}

.a-video__player-source {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    top: 0;
    left: 0;
    background-color: var(--video-bg);
    background-size: cover
}

.a-video__player .limelight-player .vjs-limelight-big-play {
    z-index: 99 !important
}

.a-video__thumbnail--img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none
}

.a-video__play-btn {
    margin: 0;
    position: absolute;
    border: 0;
    z-index: 100;
    background-color: transparent;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    outline: 0
}

.a-video__play-btn .abt-icon-play {
    font-size: var(--video-play-icon-size);
    border-radius: 50%;
    color: var(--video-play-icon-color)
}

.a-video__play-btn:hover,
.a-video__play-btn:focus {
    outline: 0;
    cursor: pointer
}

.a-video__caption {
    display: block
}

.m-search-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.m-search-bar__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center
}

.m-search-bar__input {
    position: relative;
    width: var(--searchbar-input-width);
    margin-right: var(--searchbar-input-margin-right)
}

@media(min-width:768px) {
    .m-search-bar__input {
        width: var(--searchbar-md-input-width)
    }
}

@media(min-width:992px) {
    .m-search-bar__input {
        width: var(--searchbar-lg-input-width)
    }
}

.m-search-bar__input-field {
    border-radius: 4px;
    height: var(--searchbar-input-height);
    font-size: var(--searchbar-input-font-size);
    line-height: var(--searchbar-input-line-height);
    color: var(--searchbar-input-color);
    text-transform: none;
    font-weight: normal;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--searchbar-input-bg-color);
    border: var(--searchbar-input-border);
    width: 100%;
    padding: var(--searchbar-input-padding);
    -webkit-appearance: textfield;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.m-search-bar__input-field:focus {
    outline-offset: 0;
    border-color: var(--searchbar-input-focus-border-color)
}

.m-search-bar__input-field::-webkit-search-decoration,
.m-search-bar__input-field::-webkit-search-cancel-button,
.m-search-bar__input-field::-webkit-search-results-button,
.m-search-bar__input-field::-webkit-search-results-decoration {
    display: none
}

.m-search-bar__input-field::-ms-clear,
.m-search-bar__input-field::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

.m-search-bar__container-reset .m-search-bar__input {
    width: var(--searchbar-input-with-resetbtn-width)
}

@media(min-width:768px) {
    .m-search-bar__container-reset .m-search-bar__input {
        width: var(--searchbar-md-input-with-resetbtn-width)
    }
}

@media(min-width:992px) {
    .m-search-bar__container-reset .m-search-bar__input {
        width: var(--searchbar-lg-input-with-resetbtn-width)
    }
}

@media(min-width:1200px) {
    .m-search-bar__container-reset .m-search-bar__input {
        width: var(--searchbar-lg-input-width);
        margin-right: var(--searchbar-xl-input-margin-24)
    }
}

.m-search-bar__close {
    display: none;
    cursor: pointer;
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 20px;
    left: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.m-search-bar__close .abt-icon {
    color: var(--searchbar-close-icon-color)
}

.m-search-bar__close .abt-icon::before {
    width: var(--searchbar-close-icon-width);
    height: var(--searchbar-close-icon-height)
}

.m-search-bar__close.show {
    display: block
}

.m-search-bar__close:hover {
    text-decoration: none
}

@media(min-width:992px) {
    .m-search-bar__button .abt-icon {
        display: none
    }

    .m-search-bar__button .btn span {
        padding: 0
    }
}

@media(max-width:767.98px) {
    .m-search-bar__button .abt-icon {
        display: block;
        position: static;
        left: inherit;
        right: inherit
    }

    .m-search-bar__button .btn {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    .m-search-bar__button .btn span {
        padding: 0;
        display: none
    }
}

@media(max-width:767.98px) {

    .m-search-bar__button .search-button,
    .m-search-bar__button .search-resetbutton {
        height: var(--searchbar-input-height)
    }
}

.m-search-bar__button:not(:last-child) {
    margin-right: 8px
}

@media(min-width:768px) {
    .m-search-bar__button:not(:last-child) {
        margin-right: var(--searchbar-input-margin-right)
    }
}

.m-search-bar__autocomplete {
    border-radius: var(--searchbar-autocomplete-border-radius);
    -webkit-box-shadow: var(--searchbar-autocomplete-box-shadow);
    box-shadow: var(--searchbar-autocomplete-box-shadow);
    max-height: var(--searchbar-autocomplete-max-height);
    background: var(--searchbar-autocomplete-background);
    position: absolute;
    width: 100%;
    z-index: 100;
    overflow-y: auto
}

.m-search-bar__autocomplete::-webkit-scrollbar {
    width: var(--searchbar-autocomplete-scrollbar-width)
}

.m-search-bar__autocomplete::-webkit-scrollbar-track {
    border: var(--searchbar-autocomplete-scrollbar-track-border);
    border-radius: var(--searchbar-autocomplete-scrollbar-track-border-radius)
}

.m-search-bar__autocomplete::-webkit-scrollbar-thumb {
    background: var(--searchbar-autocomplete-scrollbar-thumb-bg);
    border-radius: var(--searchbar-autocomplete-scrollbar-thumb-border-radius)
}

.m-search-bar__autocomplete-item {
    padding: var(--searchbar-autocomplete-item-padding);
    border-bottom: var(--searchbar-autocomplete-item-border-bottom);
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis
}

.m-search-bar__autocomplete-item:last-child {
    border-bottom: 0
}

.m-search-bar__autocomplete-item[aria-selected="true"] {
    background-color: var(--searchbar-autocomplete-item-selected-bg)
}

.m-search-bar__autocomplete-item:hover {
    background-color: var(--searchbar-autocomplete-item-hover-bg)
}

.o-header__search .a-search__input:focus {
    outline: 1px solid #0081b8
}

.a-pagination .u-ltr {
    display: inline-block
}

.a-pagination .u-rtl {
    display: none
}

.a-pagination__pages {
    margin: 0;
    padding: 0;
    border: var(--pagination-border);
    border-radius: var(--pagination-border-radius);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    list-style: none
}

.a-pagination__link {
    display: block;
    color: var(--pagination-link-color);
    -webkit-text-decoration: var(--pagination-text-decoration);
    text-decoration: var(--pagination-text-decoration);
    font-size: var(--pagination-link-font-size);
    line-height: var(--pagination-link-line-height);
    padding: var(--pagination-link-padding);
    border-left: var(--pagination-border-width) solid var(--pagination-border-color);
    border-right: var(--pagination-border-width) solid var(--pagination-border-color)
}

.a-pagination__link:hover {
    font-weight: bold;
    -webkit-text-decoration: var(--pagination-text-decoration);
    text-decoration: var(--pagination-text-decoration);
    color: var(--pagination-hover-link-color);
    background-color: var(--pagination-active-bg-color)
}

.a-pagination__link:active,
.a-pagination__link:focus {
    background-color: var(--pagination-active-bg-color);
    border-color: var(--pagination-active-border-color);
    border-left: 1px solid #222731;
    border-right: 1px solid #222731;
    font-weight: bold
}

.a-pagination--hide {
    display: none
}

.a-pagination--previous,
.a-pagination--next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.a-pagination--previous .a-pagination__link,
.a-pagination--next .a-pagination__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.a-pagination--previous [class*="icon"],
.a-pagination--next [class*="icon"] {
    height: var(--pagination-link-icon-size)
}

.a-pagination--previous [class*="icon"]:before,
.a-pagination--next [class*="icon"]:before {
    width: var(--pagination-link-icon-size);
    height: var(--pagination-link-icon-size)
}

.a-pagination--previous .a-pagination__link {
    border-top-left-radius: --pagination-border-radius;
    border-bottom-left-radius: --pagination-border-radius
}

.a-pagination--previous .a-pagination__link:hover {
    border-left-color: var(--pagination-border-color);
    background-color: var(--pagination-active-bg-color)
}

.a-pagination--next .a-pagination__link {
    border-top-right-radius: --pagination-border-radius;
    border-bottom-right-radius: --pagination-border-radius
}

.a-pagination--next .a-pagination__link:hover {
    border-right-color: var(--pagination-border-color);
    background-color: var(--pagination-active-bg-color)
}

.a-pagination--active {
    position: relative
}

.a-pagination--active:after {
    content: "";
    position: absolute;
    height: var(--pagination-active-link-width);
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--pagination-link-color)
}

.a-container {
    position: relative;
    z-index: 0
}

.a-container.container {
    padding-top: var(--container-padding-top);
    padding-bottom: var(--container-padding-bottom)
}

@media(max-width:767.98px) {
    .a-container.container {
        padding-top: var(--container-padding-top-mobile);
        padding-bottom: var(--container-padding-bottom-mobile)
    }
}

.a-container__layout-section {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.a-container__column {
    padding-top: var(--container-padding-top);
    padding-bottom: var(--container-padding-bottom)
}

.a-container__borderStyle {
    border-style: solid;
    top: 0;
    width: 100%;
    height: auto;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1
}

.a-container--rounded-corners {
    border-radius: var(--container-rounded-corners)
}

.a-container--dark {
    background-color: var(--container-dark-bg);
    color: var(--container-dark-color)
}

.a-container--light {
    background-color: var(--container-light-bg)
}

.a-container--secondary {
    background-color: var(--container-secondary-bg)
}

.a-container.container-full-width {
    max-width: var(--container-max-width)
}

.a-container.container-full-width .cmp-container {
    margin: 0 auto
}

@media(min-width:576px) {
    .a-container.container-full-width .cmp-container {
        max-width: var(--container-sm-width);
        padding-left: var(--container-padding-left);
        padding-right: var(--container-padding-right)
    }
}

@media(max-width:991.98px) {
    .a-container.container-full-width .cmp-container {
        background-size: 0 !important
    }
}

@media(min-width:768px) {
    .a-container.container-full-width .cmp-container {
        max-width: var(--container-md-width)
    }
}

@media(min-width:992px) {
    .a-container.container-full-width .cmp-container {
        max-width: var(--container-lg-width)
    }
}

@media(min-width:1200px) {
    .a-container.container-full-width .cmp-container {
        max-width: var(--container-xl-width)
    }
}

.a-container__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    position: relative
}

.a-container__content .cmp-container {
    background-size: 0 !important
}

.a-container__media {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: -1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.a-container__media:after {
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, right top, from(var(--container-start-color)), to(var(--container-end-color)));
    background: linear-gradient(90deg, var(--container-start-color) var(--container-start-position), var(--container-end-color) var(--container-end-position))
}

.a-container__media .a-container__image,
.a-container__media .a-container__image img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center
}

@media(min-width:992px) {
    .a-container__media__mobile {
        display: none
    }
}

@media(min-width:768px) and (max-width:991.98px) {
    .a-container__media__mobile {
        display: none
    }
}

@media(max-width:767.98px) {
    .a-container__media .a-container__image {
        display: none
    }

    .a-container__media:after {
        background: -webkit-gradient(linear, left top, right top, from(var(--container-start-color)), to(var(--container-end-color)));
        background: linear-gradient(90deg, var(--container-start-color) var(--container-start-position), var(--container-end-color) var(--container-end-position))
    }

    .a-container__row {
        position: relative
    }

    .a-container__row .a-container__media__mobile img {
        width: 100%
    }
}

.a-container--gradient-start .a-container__media:after {
    background: -webkit-gradient(linear, left top, right top, from(var(--container-start-color)), to(var(--container-end-color)));
    background: linear-gradient(90deg, var(--container-start-color) var(--container-start-position), var(--container-end-color) var(--container-end-position))
}

.a-container--gradient-end .a-container__media:after {
    background: -webkit-gradient(linear, right top, left top, from(var(--container-start-color)), to(var(--container-end-color)));
    background: linear-gradient(-90deg, var(--container-start-color) var(--container-start-position), var(--container-end-color) var(--container-end-position))
}

.a-container--gradient-center .a-container__media:after {
    background: radial-gradient(circle, var(--container-start-color) var(--container-start-position), var(--container-end-color) var(--container-end-position))
}

.a-container--shadow-box {
    border: 1px solid rgba(217, 217, 214, 0.4);
    border-radius: 5px;
    -webkit-box-shadow: 0 0 2px 0 #d4d4d4;
    box-shadow: 0 0 2px 0 #d4d4d4
}

.a-container--border-box {
    border: 1px solid #d4d4d4;
    border-radius: 4px
}

.responsivegrid .aem-Grid .a-container.a-container--shadow-box,
.responsivegrid .aem-Grid .a-container.a-container--border-box {
    padding: 1.5rem 1rem;
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important
}

@media(min-width:768px) {

    .responsivegrid .aem-Grid .a-container.a-container--shadow-box,
    .responsivegrid .aem-Grid .a-container.a-container--border-box {
        padding: 1.5rem
    }
}

@media(min-width:992px) {

    .responsivegrid .aem-Grid .a-container.a-container--shadow-box,
    .responsivegrid .aem-Grid .a-container.a-container--border-box {
        padding: 2rem 2.5rem
    }
}

@media(max-width:767.98px) {

    .responsivegrid .aem-Grid .a-container.a-container--shadow-box,
    .responsivegrid .aem-Grid .a-container.a-container--border-box {
        width: calc(100% - 30px)
    }
}

.responsivegrid .aem-Grid .columncontrol__column .a-container.a-container--shadow-box:only-child,
.responsivegrid .aem-Grid .columncontrol__column .a-container.a-container--border-box:only-child {
    margin-bottom: 0 !important
}

@media(max-width:767.98px) {
    .a-container.a-container--image-position .a-container__media {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        position: relative;
        min-width: 100vw;
        margin-left: calc(-1 * (100vw - 100%) / 2);
        z-index: -1;
        min-height: 400px
    }

    .a-container.a-container--image-position .a-container__content {
        position: relative;
        width: 100% !important;
        padding: 30px 15px 8px 20px !important;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .a-container.a-container--image-position .a-container__content .text {
        margin: 0 !important;
        padding: 0 !important
    }

    .a-container.a-container--image-position .a-container__row {
        position: inherit;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px
    }
}

@media(min-width:992px) {
    .a-container .a-container__media .a-container__image .cmp-image {
        display: block
    }
}

@media(min-width:992px) {
    .a-container .a-container__media .a-container__image .cmp-image__tablet {
        display: none
    }
}

@media(max-width:991.98px) {
    .a-container .a-container__media .a-container__image .cmp-image__tablet {
        display: block
    }
}

@media(max-width:767.98px) {
    .a-container .a-container__media .a-container__image .cmp-image__tablet {
        display: none
    }
}

@media(min-width:992px) {
    .a-container .a-container__media .a-container__image .cmp-image__mobile {
        display: none
    }
}

@media(max-width:991.98px) {
    .a-container .a-container__media .a-container__image .cmp-image__mobile {
        display: none
    }
}

@media(max-width:767.98px) {
    .a-container .a-container__media .a-container__image .cmp-image__mobile {
        display: block
    }
}

@media(max-width:991.98px) {
    .a-container .a-container__media .a-container__image {
        display: block !important;
        z-index: 1
    }
}

@media(min-width:992px) {
    .a-container .a-container__media__mobile {
        display: none !important
    }
}

.a-container .a-container__media__mobile img {
    width: 100%
}

@media(max-width:767.98px) {
    .a-container .a-container__row {
        position: inherit
    }
}

@media(max-width:767.98px) {
    #pageContent .responsivegrid .aem-Grid>.container.a-container.a-container--image-position {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        overflow: hidden
    }

    .a-container.a-container--image-position .a-container__media__mobile,
    .a-container.a-container--image-position .a-container__media__mobile img,
    .a-container .a-container__media__mobile,
    .a-container .a-container__media__mobile img {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        position: absolute;
        z-index: -1;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center center;
        object-position: center center;
        display: block
    }

    .a-container.a-container--image-position .a-container__media__mobile,
    .a-container.a-container--image-position .a-container__media__mobile img {
        min-height: 400px;
        height: unset;
        z-index: 1
    }

    .a-container.a-container--gradient-start.a-container--image-position .a-container__content {
        padding-left: 30px !important;
        padding-right: 30px !important
    }

    .a-container.a-container--image-position.a-container--gradient-start .a-container__content,
    .a-container.a-container--image-position.a-container--gradient-end .a-container__content,
    .a-container.a-container--image-position.a-container--gradient-center .a-container__content {
        background: -webkit-gradient(linear, left top, right top, from(var(--container-start-color)), to(var(--container-end-color)));
        background: linear-gradient(90deg, var(--container-start-color) var(--container-start-position), var(--container-end-color) var(--container-end-position))
    }
}

.m-custom-list h1,
.m-custom-list h2,
.m-custom-list h3,
.m-custom-list h4,
.m-custom-list h5,
.m-custom-list h6 {
    margin-bottom: var(--custom-list-heading-margin)
}

.m-custom-list p:not(.h3):not(.h4):not(.m-custom-list__title) {
    margin-bottom: var(--custom-list-para-margin);
    font-size: var(--custom-list-para-font-size);
    line-height: var(--custom-list-para-line-height)
}

.m-custom-list__wrapper {
    counter-reset: my-list-counter;
    padding-left: 0
}

.m-custom-list__content {
    position: relative;
    list-style: none
}

.m-custom-list__heading {
    padding: var(--custom-list-padding-y) 0 var(--custom-list-padding-y) var(--custom-list-padding-x)
}

.m-custom-list__heading:before {
    counter-increment: my-list-counter;
    font-size: var(--custom-list-font-size) / var(--custom-list-line-height)
}

.m-custom-list__heading h1,
.m-custom-list__heading h2,
.m-custom-list__heading h3,
.m-custom-list__heading h4,
.m-custom-list__heading h5,
.m-custom-list__heading h6,
.m-custom-list__heading .h3,
.m-custom-list__heading .h4 {
    margin-bottom: var(--custom-list-heading-bottom-margin)
}

.m-custom-list__heading a {
    color: var(--custom-list-title-link)
}

.m-custom-list__heading a:hover {
    text-decoration: underline;
    color: var(--custom-list-title-link-hover)
}

.m-custom-list__heading .m-custom-list__title {
    font-size: var(--custom-list-title-font-size);
    line-height: var(--custom-list-title-line-height);
    margin-bottom: var(--custom-list-heading-margin);
    font-weight: normal
}

.m-custom-list__heading--empty {
    padding-bottom: 2px
}

.m-custom-list__para {
    padding-left: var(--custom-list-padding-x);
    margin-bottom: var(--custom-list-para-margin)
}

.m-custom-list .m-custom-list__heading::before {
    position: absolute;
    left: 0
}

.m-custom-list--bullet .m-custom-list__heading::before {
    content: counter(my-list-counter, disc);
    width: 1rem;
    height: 1rem;
    background-color: var(--custom-list-dark);
    font-size: 0;
    border-radius: 50%;
    top: var(--custom-list-bullet-position-top)
}

.m-custom-list--number .m-custom-list__heading::before,
.m-custom-list--icon .m-custom-list__heading::before {
    content: counter(my-list-counter, decimal-leading-zero)
}

.m-custom-list--number .m-custom-list__heading,
.m-custom-list--number .m-custom-list__para,
.m-custom-list--icon .m-custom-list__heading,
.m-custom-list--icon .m-custom-list__para {
    padding-left: var(--custom-list-padding-xl)
}

.m-custom-list--number-without-zero .m-custom-list--number .m-custom-list__heading::before {
    content: counter(my-list-counter, decimal)
}

.m-custom-list--alphabet .m-custom-list__heading::before {
    content: counter(my-list-counter, upper-latin)
}

.m-custom-list--non-indented .m-custom-list__heading,
.m-custom-list--non-indented .m-custom-list__para {
    padding-left: 0
}

.m-custom-list--bullet .m-custom-list__icon-wrapper,
.m-custom-list--number .m-custom-list__icon-wrapper,
.m-custom-list--number-without-zero .m-custom-list__icon-wrapper,
.m-custom-list--alphabet .m-custom-list__icon-wrapper,
.m-custom-list--non-indented .m-custom-list__icon-wrapper {
    display: none
}

.m-custom-list__icon-wrapper {
    position: absolute;
    top: 7px;
    left: 0;
    display: block
}

.m-custom-list--icon .m-custom-list__heading::before {
    content: " ";
    color: var(--custom-list-light)
}

.m-custom-list__icon--extrasmall .m-custom-list__icon-wrapper .abt-icon {
    font-size: var(--custom-list-icon-font-size-xs)
}

.m-custom-list__icon--extrasmall .m-custom-list__heading,
.m-custom-list__icon--extrasmall .m-custom-list__para {
    padding-left: var(--custom-list-icon-padding-left-xs)
}

.m-custom-list__icon--small .m-custom-list__icon-wrapper .abt-icon {
    font-size: var(--custom-list-icon-font-size-sm)
}

.m-custom-list__icon--small .m-custom-list__heading,
.m-custom-list__icon--small .m-custom-list__para {
    padding-left: var(--custom-list-icon-padding-left-sm)
}

.m-custom-list__icon--medium .m-custom-list__icon-wrapper .abt-icon {
    font-size: var(--custom-list-icon-font-size-md)
}

.m-custom-list__icon--medium .m-custom-list__heading,
.m-custom-list__icon--medium .m-custom-list__para {
    padding-left: var(--custom-list-icon-padding-left-md)
}

.m-custom-list__icon--large .m-custom-list__icon-wrapper .abt-icon {
    font-size: var(--custom-list-icon-font-size-lg)
}

.m-custom-list__icon--large .m-custom-list__heading,
.m-custom-list__icon--large .m-custom-list__para {
    padding-left: var(--custom-list-icon-padding-left-lg)
}

.m-custom-list--dark .m-custom-list__heading::before,
.m-custom-list__list-icon--default .m-custom-list__heading::before {
    color: var(--custom-list-dark);
    font-weight: bold
}

.m-custom-list--dark .m-custom-list__icon-wrapper,
.m-custom-list__list-icon--default .m-custom-list__icon-wrapper {
    color: var(--custom-list-dark)
}

.m-custom-list--dark .m-custom-list--bullet .m-custom-list__heading::before,
.m-custom-list__list-icon--default .m-custom-list--bullet .m-custom-list__heading::before {
    background-color: var(--custom-list-dark)
}

.m-custom-list--primary .m-custom-list__heading::before,
.m-custom-list__list-icon--primary .m-custom-list__heading::before {
    color: var(--custom-list-primary);
    font-weight: bold
}

.m-custom-list--primary .m-custom-list__icon-wrapper,
.m-custom-list__list-icon--primary .m-custom-list__icon-wrapper {
    color: var(--custom-list-primary)
}

.m-custom-list--primary .m-custom-list--bullet .m-custom-list__heading::before,
.m-custom-list__list-icon--primary .m-custom-list--bullet .m-custom-list__heading::before {
    background-color: var(--custom-list-primary)
}

.m-custom-list--secondary .m-custom-list__heading::before,
.m-custom-list__list-icon--secondary .m-custom-list__heading::before {
    color: var(--custom-list-secondary);
    font-weight: bold
}

.m-custom-list--secondary .m-custom-list__icon-wrapper,
.m-custom-list__list-icon--secondary .m-custom-list__icon-wrapper {
    color: var(--custom-list-secondary)
}

.m-custom-list--secondary .m-custom-list--bullet .m-custom-list__heading::before,
.m-custom-list__list-icon--secondary .m-custom-list--bullet .m-custom-list__heading::before {
    background-color: var(--custom-list-secondary)
}

.m-custom-list--light .m-custom-list__heading::before,
.m-custom-list__list-icon--alternate .m-custom-list__heading::before {
    color: var(--custom-list-light);
    font-weight: bold
}

.m-custom-list--light .m-custom-list__icon-wrapper,
.m-custom-list__list-icon--alternate .m-custom-list__icon-wrapper {
    color: var(--custom-list-light)
}

.m-custom-list--light .m-custom-list--bullet .m-custom-list__heading::before,
.m-custom-list__list-icon--alternate .m-custom-list--bullet .m-custom-list__heading::before {
    background-color: var(--custom-list-light)
}

.m-custom-list-title--dark .m-custom-list__heading h1,
.m-custom-list-title--dark .m-custom-list__heading h2,
.m-custom-list-title--dark .m-custom-list__heading h3,
.m-custom-list-title--dark .m-custom-list__heading h4,
.m-custom-list-title--dark .m-custom-list__heading h5,
.m-custom-list-title--dark .m-custom-list__heading h6,
.m-custom-list-title--dark .m-custom-list__heading .h3,
.m-custom-list-title--dark .m-custom-list__heading .h4,
.m-custom-list-title--dark .m-custom-list__heading .m-custom-list__title,
.m-custom-list-title--default .m-custom-list__heading h1,
.m-custom-list-title--default .m-custom-list__heading h2,
.m-custom-list-title--default .m-custom-list__heading h3,
.m-custom-list-title--default .m-custom-list__heading h4,
.m-custom-list-title--default .m-custom-list__heading h5,
.m-custom-list-title--default .m-custom-list__heading h6,
.m-custom-list-title--default .m-custom-list__heading .h3,
.m-custom-list-title--default .m-custom-list__heading .h4,
.m-custom-list-title--default .m-custom-list__heading .m-custom-list__title,
.m-custom-list__title--dark .m-custom-list__heading h1,
.m-custom-list__title--dark .m-custom-list__heading h2,
.m-custom-list__title--dark .m-custom-list__heading h3,
.m-custom-list__title--dark .m-custom-list__heading h4,
.m-custom-list__title--dark .m-custom-list__heading h5,
.m-custom-list__title--dark .m-custom-list__heading h6,
.m-custom-list__title--dark .m-custom-list__heading .h3,
.m-custom-list__title--dark .m-custom-list__heading .h4,
.m-custom-list__title--dark .m-custom-list__heading .m-custom-list__title,
.m-custom-list__title--default .m-custom-list__heading h1,
.m-custom-list__title--default .m-custom-list__heading h2,
.m-custom-list__title--default .m-custom-list__heading h3,
.m-custom-list__title--default .m-custom-list__heading h4,
.m-custom-list__title--default .m-custom-list__heading h5,
.m-custom-list__title--default .m-custom-list__heading h6,
.m-custom-list__title--default .m-custom-list__heading .h3,
.m-custom-list__title--default .m-custom-list__heading .h4,
.m-custom-list__title--default .m-custom-list__heading .m-custom-list__title {
    color: var(--custom-list-title-dark)
}

.m-custom-list-title--light .m-custom-list__heading h1,
.m-custom-list-title--light .m-custom-list__heading h2,
.m-custom-list-title--light .m-custom-list__heading h3,
.m-custom-list-title--light .m-custom-list__heading h4,
.m-custom-list-title--light .m-custom-list__heading h5,
.m-custom-list-title--light .m-custom-list__heading h6,
.m-custom-list-title--light .m-custom-list__heading .h3,
.m-custom-list-title--light .m-custom-list__heading .h4,
.m-custom-list-title--light .m-custom-list__heading .m-custom-list__title,
.m-custom-list-title--alternate .m-custom-list__heading h1,
.m-custom-list-title--alternate .m-custom-list__heading h2,
.m-custom-list-title--alternate .m-custom-list__heading h3,
.m-custom-list-title--alternate .m-custom-list__heading h4,
.m-custom-list-title--alternate .m-custom-list__heading h5,
.m-custom-list-title--alternate .m-custom-list__heading h6,
.m-custom-list-title--alternate .m-custom-list__heading .h3,
.m-custom-list-title--alternate .m-custom-list__heading .h4,
.m-custom-list-title--alternate .m-custom-list__heading .m-custom-list__title,
.m-custom-list__title--light .m-custom-list__heading h1,
.m-custom-list__title--light .m-custom-list__heading h2,
.m-custom-list__title--light .m-custom-list__heading h3,
.m-custom-list__title--light .m-custom-list__heading h4,
.m-custom-list__title--light .m-custom-list__heading h5,
.m-custom-list__title--light .m-custom-list__heading h6,
.m-custom-list__title--light .m-custom-list__heading .h3,
.m-custom-list__title--light .m-custom-list__heading .h4,
.m-custom-list__title--light .m-custom-list__heading .m-custom-list__title,
.m-custom-list__title--alternate .m-custom-list__heading h1,
.m-custom-list__title--alternate .m-custom-list__heading h2,
.m-custom-list__title--alternate .m-custom-list__heading h3,
.m-custom-list__title--alternate .m-custom-list__heading h4,
.m-custom-list__title--alternate .m-custom-list__heading h5,
.m-custom-list__title--alternate .m-custom-list__heading h6,
.m-custom-list__title--alternate .m-custom-list__heading .h3,
.m-custom-list__title--alternate .m-custom-list__heading .h4,
.m-custom-list__title--alternate .m-custom-list__heading .m-custom-list__title {
    color: var(--custom-list-title-light)
}

.m-custom-list-title--primary .m-custom-list__heading h1,
.m-custom-list-title--primary .m-custom-list__heading h2,
.m-custom-list-title--primary .m-custom-list__heading h3,
.m-custom-list-title--primary .m-custom-list__heading h4,
.m-custom-list-title--primary .m-custom-list__heading h5,
.m-custom-list-title--primary .m-custom-list__heading h6,
.m-custom-list-title--primary .m-custom-list__heading .h3,
.m-custom-list-title--primary .m-custom-list__heading .h4,
.m-custom-list-title--primary .m-custom-list__heading .m-custom-list__title,
.m-custom-list__title--primary .m-custom-list__heading h1,
.m-custom-list__title--primary .m-custom-list__heading h2,
.m-custom-list__title--primary .m-custom-list__heading h3,
.m-custom-list__title--primary .m-custom-list__heading h4,
.m-custom-list__title--primary .m-custom-list__heading h5,
.m-custom-list__title--primary .m-custom-list__heading h6,
.m-custom-list__title--primary .m-custom-list__heading .h3,
.m-custom-list__title--primary .m-custom-list__heading .h4,
.m-custom-list__title--primary .m-custom-list__heading .m-custom-list__title {
    color: var(--custom-list-title-primary)
}

.m-custom-list-title--secondary .m-custom-list__heading h1,
.m-custom-list-title--secondary .m-custom-list__heading h2,
.m-custom-list-title--secondary .m-custom-list__heading h3,
.m-custom-list-title--secondary .m-custom-list__heading h4,
.m-custom-list-title--secondary .m-custom-list__heading h5,
.m-custom-list-title--secondary .m-custom-list__heading h6,
.m-custom-list-title--secondary .m-custom-list__heading .h3,
.m-custom-list-title--secondary .m-custom-list__heading .h4,
.m-custom-list-title--secondary .m-custom-list__heading .m-custom-list__title,
.m-custom-list__title--secondary .m-custom-list__heading h1,
.m-custom-list__title--secondary .m-custom-list__heading h2,
.m-custom-list__title--secondary .m-custom-list__heading h3,
.m-custom-list__title--secondary .m-custom-list__heading h4,
.m-custom-list__title--secondary .m-custom-list__heading h5,
.m-custom-list__title--secondary .m-custom-list__heading h6,
.m-custom-list__title--secondary .m-custom-list__heading .h3,
.m-custom-list__title--secondary .m-custom-list__heading .h4,
.m-custom-list__title--secondary .m-custom-list__heading .m-custom-list__title {
    color: var(--custom-list-title-secondary)
}

.m-custom-list-title--dark .m-custom-list__heading h1 a,
.m-custom-list-title--dark .m-custom-list__heading h2 a,
.m-custom-list-title--dark .m-custom-list__heading h3 a,
.m-custom-list-title--dark .m-custom-list__heading h4 a,
.m-custom-list-title--dark .m-custom-list__heading h5 a,
.m-custom-list-title--dark .m-custom-list__heading h6 a,
.m-custom-list-title--dark .m-custom-list__heading .h3 a,
.m-custom-list-title--dark .m-custom-list__heading .h4 a,
.m-custom-list-title--dark .m-custom-list__heading .m-custom-list__title a,
.m-custom-list-title--default .m-custom-list__heading h1 a,
.m-custom-list-title--default .m-custom-list__heading h2 a,
.m-custom-list-title--default .m-custom-list__heading h3 a,
.m-custom-list-title--default .m-custom-list__heading h4 a,
.m-custom-list-title--default .m-custom-list__heading h5 a,
.m-custom-list-title--default .m-custom-list__heading h6 a,
.m-custom-list-title--default .m-custom-list__heading .h3 a,
.m-custom-list-title--default .m-custom-list__heading .h4 a,
.m-custom-list-title--default .m-custom-list__heading .m-custom-list__title a,
.m-custom-list-title--light .m-custom-list__heading h1 a,
.m-custom-list-title--light .m-custom-list__heading h2 a,
.m-custom-list-title--light .m-custom-list__heading h3 a,
.m-custom-list-title--light .m-custom-list__heading h4 a,
.m-custom-list-title--light .m-custom-list__heading h5 a,
.m-custom-list-title--light .m-custom-list__heading h6 a,
.m-custom-list-title--light .m-custom-list__heading .h3 a,
.m-custom-list-title--light .m-custom-list__heading .h4 a,
.m-custom-list-title--light .m-custom-list__heading .m-custom-list__title a,
.m-custom-list-title-alternate .m-custom-list__heading h1 a,
.m-custom-list-title-alternate .m-custom-list__heading h2 a,
.m-custom-list-title-alternate .m-custom-list__heading h3 a,
.m-custom-list-title-alternate .m-custom-list__heading h4 a,
.m-custom-list-title-alternate .m-custom-list__heading h5 a,
.m-custom-list-title-alternate .m-custom-list__heading h6 a,
.m-custom-list-title-alternate .m-custom-list__heading .h3 a,
.m-custom-list-title-alternate .m-custom-list__heading .h4 a,
.m-custom-list-title-alternate .m-custom-list__heading .m-custom-list__title a,
.m-custom-list-title--primary .m-custom-list__heading h1 a,
.m-custom-list-title--primary .m-custom-list__heading h2 a,
.m-custom-list-title--primary .m-custom-list__heading h3 a,
.m-custom-list-title--primary .m-custom-list__heading h4 a,
.m-custom-list-title--primary .m-custom-list__heading h5 a,
.m-custom-list-title--primary .m-custom-list__heading h6 a,
.m-custom-list-title--primary .m-custom-list__heading .h3 a,
.m-custom-list-title--primary .m-custom-list__heading .h4 a,
.m-custom-list-title--primary .m-custom-list__heading .m-custom-list__title a,
.m-custom-list-title--secondary .m-custom-list__heading h1 a,
.m-custom-list-title--secondary .m-custom-list__heading h2 a,
.m-custom-list-title--secondary .m-custom-list__heading h3 a,
.m-custom-list-title--secondary .m-custom-list__heading h4 a,
.m-custom-list-title--secondary .m-custom-list__heading h5 a,
.m-custom-list-title--secondary .m-custom-list__heading h6 a,
.m-custom-list-title--secondary .m-custom-list__heading .h3 a,
.m-custom-list-title--secondary .m-custom-list__heading .h4 a,
.m-custom-list-title--secondary .m-custom-list__heading .m-custom-list__title a,
.m-custom-list__title--dark .m-custom-list__heading h1 a,
.m-custom-list__title--dark .m-custom-list__heading h2 a,
.m-custom-list__title--dark .m-custom-list__heading h3 a,
.m-custom-list__title--dark .m-custom-list__heading h4 a,
.m-custom-list__title--dark .m-custom-list__heading h5 a,
.m-custom-list__title--dark .m-custom-list__heading h6 a,
.m-custom-list__title--dark .m-custom-list__heading .h3 a,
.m-custom-list__title--dark .m-custom-list__heading .h4 a,
.m-custom-list__title--dark .m-custom-list__heading .m-custom-list__title a,
.m-custom-list__title--default .m-custom-list__heading h1 a,
.m-custom-list__title--default .m-custom-list__heading h2 a,
.m-custom-list__title--default .m-custom-list__heading h3 a,
.m-custom-list__title--default .m-custom-list__heading h4 a,
.m-custom-list__title--default .m-custom-list__heading h5 a,
.m-custom-list__title--default .m-custom-list__heading h6 a,
.m-custom-list__title--default .m-custom-list__heading .h3 a,
.m-custom-list__title--default .m-custom-list__heading .h4 a,
.m-custom-list__title--default .m-custom-list__heading .m-custom-list__title a,
.m-custom-list__title--light .m-custom-list__heading h1 a,
.m-custom-list__title--light .m-custom-list__heading h2 a,
.m-custom-list__title--light .m-custom-list__heading h3 a,
.m-custom-list__title--light .m-custom-list__heading h4 a,
.m-custom-list__title--light .m-custom-list__heading h5 a,
.m-custom-list__title--light .m-custom-list__heading h6 a,
.m-custom-list__title--light .m-custom-list__heading .h3 a,
.m-custom-list__title--light .m-custom-list__heading .h4 a,
.m-custom-list__title--light .m-custom-list__heading .m-custom-list__title a,
.m-custom-list__title-alternate .m-custom-list__heading h1 a,
.m-custom-list__title-alternate .m-custom-list__heading h2 a,
.m-custom-list__title-alternate .m-custom-list__heading h3 a,
.m-custom-list__title-alternate .m-custom-list__heading h4 a,
.m-custom-list__title-alternate .m-custom-list__heading h5 a,
.m-custom-list__title-alternate .m-custom-list__heading h6 a,
.m-custom-list__title-alternate .m-custom-list__heading .h3 a,
.m-custom-list__title-alternate .m-custom-list__heading .h4 a,
.m-custom-list__title-alternate .m-custom-list__heading .m-custom-list__title a,
.m-custom-list__title--primary .m-custom-list__heading h1 a,
.m-custom-list__title--primary .m-custom-list__heading h2 a,
.m-custom-list__title--primary .m-custom-list__heading h3 a,
.m-custom-list__title--primary .m-custom-list__heading h4 a,
.m-custom-list__title--primary .m-custom-list__heading h5 a,
.m-custom-list__title--primary .m-custom-list__heading h6 a,
.m-custom-list__title--primary .m-custom-list__heading .h3 a,
.m-custom-list__title--primary .m-custom-list__heading .h4 a,
.m-custom-list__title--primary .m-custom-list__heading .m-custom-list__title a,
.m-custom-list__title--secondary .m-custom-list__heading h1 a,
.m-custom-list__title--secondary .m-custom-list__heading h2 a,
.m-custom-list__title--secondary .m-custom-list__heading h3 a,
.m-custom-list__title--secondary .m-custom-list__heading h4 a,
.m-custom-list__title--secondary .m-custom-list__heading h5 a,
.m-custom-list__title--secondary .m-custom-list__heading h6 a,
.m-custom-list__title--secondary .m-custom-list__heading .h3 a,
.m-custom-list__title--secondary .m-custom-list__heading .h4 a,
.m-custom-list__title--secondary .m-custom-list__heading .m-custom-list__title a {
    color: var(--custom-list-title-link)
}

.m-custom-list-title--dark .m-custom-list__heading h1 a:hover,
.m-custom-list-title--dark .m-custom-list__heading h2 a:hover,
.m-custom-list-title--dark .m-custom-list__heading h3 a:hover,
.m-custom-list-title--dark .m-custom-list__heading h4 a:hover,
.m-custom-list-title--dark .m-custom-list__heading h5 a:hover,
.m-custom-list-title--dark .m-custom-list__heading h6 a:hover,
.m-custom-list-title--dark .m-custom-list__heading .h3 a:hover,
.m-custom-list-title--dark .m-custom-list__heading .h4 a:hover,
.m-custom-list-title--dark .m-custom-list__heading .m-custom-list__title a:hover,
.m-custom-list-title--default .m-custom-list__heading h1 a:hover,
.m-custom-list-title--default .m-custom-list__heading h2 a:hover,
.m-custom-list-title--default .m-custom-list__heading h3 a:hover,
.m-custom-list-title--default .m-custom-list__heading h4 a:hover,
.m-custom-list-title--default .m-custom-list__heading h5 a:hover,
.m-custom-list-title--default .m-custom-list__heading h6 a:hover,
.m-custom-list-title--default .m-custom-list__heading .h3 a:hover,
.m-custom-list-title--default .m-custom-list__heading .h4 a:hover,
.m-custom-list-title--default .m-custom-list__heading .m-custom-list__title a:hover,
.m-custom-list-title--light .m-custom-list__heading h1 a:hover,
.m-custom-list-title--light .m-custom-list__heading h2 a:hover,
.m-custom-list-title--light .m-custom-list__heading h3 a:hover,
.m-custom-list-title--light .m-custom-list__heading h4 a:hover,
.m-custom-list-title--light .m-custom-list__heading h5 a:hover,
.m-custom-list-title--light .m-custom-list__heading h6 a:hover,
.m-custom-list-title--light .m-custom-list__heading .h3 a:hover,
.m-custom-list-title--light .m-custom-list__heading .h4 a:hover,
.m-custom-list-title--light .m-custom-list__heading .m-custom-list__title a:hover,
.m-custom-list-title-alternate .m-custom-list__heading h1 a:hover,
.m-custom-list-title-alternate .m-custom-list__heading h2 a:hover,
.m-custom-list-title-alternate .m-custom-list__heading h3 a:hover,
.m-custom-list-title-alternate .m-custom-list__heading h4 a:hover,
.m-custom-list-title-alternate .m-custom-list__heading h5 a:hover,
.m-custom-list-title-alternate .m-custom-list__heading h6 a:hover,
.m-custom-list-title-alternate .m-custom-list__heading .h3 a:hover,
.m-custom-list-title-alternate .m-custom-list__heading .h4 a:hover,
.m-custom-list-title-alternate .m-custom-list__heading .m-custom-list__title a:hover,
.m-custom-list-title--primary .m-custom-list__heading h1 a:hover,
.m-custom-list-title--primary .m-custom-list__heading h2 a:hover,
.m-custom-list-title--primary .m-custom-list__heading h3 a:hover,
.m-custom-list-title--primary .m-custom-list__heading h4 a:hover,
.m-custom-list-title--primary .m-custom-list__heading h5 a:hover,
.m-custom-list-title--primary .m-custom-list__heading h6 a:hover,
.m-custom-list-title--primary .m-custom-list__heading .h3 a:hover,
.m-custom-list-title--primary .m-custom-list__heading .h4 a:hover,
.m-custom-list-title--primary .m-custom-list__heading .m-custom-list__title a:hover,
.m-custom-list-title--secondary .m-custom-list__heading h1 a:hover,
.m-custom-list-title--secondary .m-custom-list__heading h2 a:hover,
.m-custom-list-title--secondary .m-custom-list__heading h3 a:hover,
.m-custom-list-title--secondary .m-custom-list__heading h4 a:hover,
.m-custom-list-title--secondary .m-custom-list__heading h5 a:hover,
.m-custom-list-title--secondary .m-custom-list__heading h6 a:hover,
.m-custom-list-title--secondary .m-custom-list__heading .h3 a:hover,
.m-custom-list-title--secondary .m-custom-list__heading .h4 a:hover,
.m-custom-list-title--secondary .m-custom-list__heading .m-custom-list__title a:hover,
.m-custom-list__title--dark .m-custom-list__heading h1 a:hover,
.m-custom-list__title--dark .m-custom-list__heading h2 a:hover,
.m-custom-list__title--dark .m-custom-list__heading h3 a:hover,
.m-custom-list__title--dark .m-custom-list__heading h4 a:hover,
.m-custom-list__title--dark .m-custom-list__heading h5 a:hover,
.m-custom-list__title--dark .m-custom-list__heading h6 a:hover,
.m-custom-list__title--dark .m-custom-list__heading .h3 a:hover,
.m-custom-list__title--dark .m-custom-list__heading .h4 a:hover,
.m-custom-list__title--dark .m-custom-list__heading .m-custom-list__title a:hover,
.m-custom-list__title--default .m-custom-list__heading h1 a:hover,
.m-custom-list__title--default .m-custom-list__heading h2 a:hover,
.m-custom-list__title--default .m-custom-list__heading h3 a:hover,
.m-custom-list__title--default .m-custom-list__heading h4 a:hover,
.m-custom-list__title--default .m-custom-list__heading h5 a:hover,
.m-custom-list__title--default .m-custom-list__heading h6 a:hover,
.m-custom-list__title--default .m-custom-list__heading .h3 a:hover,
.m-custom-list__title--default .m-custom-list__heading .h4 a:hover,
.m-custom-list__title--default .m-custom-list__heading .m-custom-list__title a:hover,
.m-custom-list__title--light .m-custom-list__heading h1 a:hover,
.m-custom-list__title--light .m-custom-list__heading h2 a:hover,
.m-custom-list__title--light .m-custom-list__heading h3 a:hover,
.m-custom-list__title--light .m-custom-list__heading h4 a:hover,
.m-custom-list__title--light .m-custom-list__heading h5 a:hover,
.m-custom-list__title--light .m-custom-list__heading h6 a:hover,
.m-custom-list__title--light .m-custom-list__heading .h3 a:hover,
.m-custom-list__title--light .m-custom-list__heading .h4 a:hover,
.m-custom-list__title--light .m-custom-list__heading .m-custom-list__title a:hover,
.m-custom-list__title-alternate .m-custom-list__heading h1 a:hover,
.m-custom-list__title-alternate .m-custom-list__heading h2 a:hover,
.m-custom-list__title-alternate .m-custom-list__heading h3 a:hover,
.m-custom-list__title-alternate .m-custom-list__heading h4 a:hover,
.m-custom-list__title-alternate .m-custom-list__heading h5 a:hover,
.m-custom-list__title-alternate .m-custom-list__heading h6 a:hover,
.m-custom-list__title-alternate .m-custom-list__heading .h3 a:hover,
.m-custom-list__title-alternate .m-custom-list__heading .h4 a:hover,
.m-custom-list__title-alternate .m-custom-list__heading .m-custom-list__title a:hover,
.m-custom-list__title--primary .m-custom-list__heading h1 a:hover,
.m-custom-list__title--primary .m-custom-list__heading h2 a:hover,
.m-custom-list__title--primary .m-custom-list__heading h3 a:hover,
.m-custom-list__title--primary .m-custom-list__heading h4 a:hover,
.m-custom-list__title--primary .m-custom-list__heading h5 a:hover,
.m-custom-list__title--primary .m-custom-list__heading h6 a:hover,
.m-custom-list__title--primary .m-custom-list__heading .h3 a:hover,
.m-custom-list__title--primary .m-custom-list__heading .h4 a:hover,
.m-custom-list__title--primary .m-custom-list__heading .m-custom-list__title a:hover,
.m-custom-list__title--secondary .m-custom-list__heading h1 a:hover,
.m-custom-list__title--secondary .m-custom-list__heading h2 a:hover,
.m-custom-list__title--secondary .m-custom-list__heading h3 a:hover,
.m-custom-list__title--secondary .m-custom-list__heading h4 a:hover,
.m-custom-list__title--secondary .m-custom-list__heading h5 a:hover,
.m-custom-list__title--secondary .m-custom-list__heading h6 a:hover,
.m-custom-list__title--secondary .m-custom-list__heading .h3 a:hover,
.m-custom-list__title--secondary .m-custom-list__heading .h4 a:hover,
.m-custom-list__title--secondary .m-custom-list__heading .m-custom-list__title a:hover {
    text-decoration: underline;
    color: var(--custom-list-title-link-hover)
}

.m-custom-list__header-title--default .m-custom-list__header-title>h1,
.m-custom-list__header-title--default .m-custom-list__header-title>h2,
.m-custom-list__header-title--default .m-custom-list__header-title>h3,
.m-custom-list__header-title--default .m-custom-list__header-title>h4,
.m-custom-list__header-title--default .m-custom-list__header-title>h5,
.m-custom-list__header-title--default .m-custom-list__header-title>h6,
.m-custom-list__header-title--default .m-custom-list__header-title>.h3,
.m-custom-list__header-title--default .m-custom-list__header-title>.h4 {
    color: var(--custom-list-header-title-default)
}

.m-custom-list__header-title--reversed .m-custom-list__header-title>h1,
.m-custom-list__header-title--reversed .m-custom-list__header-title>h2,
.m-custom-list__header-title--reversed .m-custom-list__header-title>h3,
.m-custom-list__header-title--reversed .m-custom-list__header-title>h4,
.m-custom-list__header-title--reversed .m-custom-list__header-title>h5,
.m-custom-list__header-title--reversed .m-custom-list__header-title>h6,
.m-custom-list__header-title--reversed .m-custom-list__header-title>.h3,
.m-custom-list__header-title--reversed .m-custom-list__header-title>.h4 {
    color: var(--custom-list-header-title-reversed)
}

.m-custom-list__header-title--primary .m-custom-list__header-title>h1,
.m-custom-list__header-title--primary .m-custom-list__header-title>h2,
.m-custom-list__header-title--primary .m-custom-list__header-title>h3,
.m-custom-list__header-title--primary .m-custom-list__header-title>h4,
.m-custom-list__header-title--primary .m-custom-list__header-title>h5,
.m-custom-list__header-title--primary .m-custom-list__header-title>h6,
.m-custom-list__header-title--primary .m-custom-list__header-title>.h3,
.m-custom-list__header-title--primary .m-custom-list__header-title>.h4 {
    color: var(--custom-list-header-title-primary)
}

.m-custom-list__header-title--alternate .m-custom-list__header-title>h1,
.m-custom-list__header-title--alternate .m-custom-list__header-title>h2,
.m-custom-list__header-title--alternate .m-custom-list__header-title>h3,
.m-custom-list__header-title--alternate .m-custom-list__header-title>h4,
.m-custom-list__header-title--alternate .m-custom-list__header-title>h5,
.m-custom-list__header-title--alternate .m-custom-list__header-title>h6,
.m-custom-list__header-title--alternate .m-custom-list__header-title>.h3,
.m-custom-list__header-title--alternate .m-custom-list__header-title>.h4 {
    color: var(--custom-list-header-title-alternate)
}

.m-custom-list__list-size--default .m-custom-list__heading::before {
    font-size: var(--custom-list-bullet-font-size-default)
}

.m-custom-list__list-size--large .m-custom-list__heading::before {
    font-size: var(--custom-list-bullet-font-size-large)
}

.m-custom-list .m-custom-list__header-title>h3:empty {
    display: none
}

.m-custom-list__list-size--gradient-start .m-custom-list {
    background: -webkit-gradient(linear, left top, right top, from(var(--customList-start-color)), to(var(--customList-end-color)));
    background: linear-gradient(90deg, var(--customList-start-color) var(--customList-start-position), var(--customList-end-color) var(--customList-end-position))
}

.m-custom-list__list-size--gradient-center .m-custom-list {
    background: -webkit-gradient(linear, right top, left top, from(var(--customList-start-color)), to(var(--customList-end-color)));
    background: linear-gradient(-90deg, var(--customList-start-color) var(--customList-start-position), var(--customList-end-color) var(--customList-end-position))
}

.m-custom-list__list-size--gradient-end .m-custom-list {
    background: radial-gradient(circle, var(--customList-start-color) var(--customList-start-position), var(--customList-end-color) var(--customList-end-position))
}

.a-logo-comp {
    display: inline-block
}

.a-logo-comp--image {
    max-height: var(--logo-max-height-des)
}

@media(min-width:768px) {
    .a-logo-comp--image {
        max-height: var(--logo-max-height-des)
    }
}

@media(max-width:991.98px) {
    .a-logo-comp--image {
        max-height: var(--logo-max-height-tab)
    }
}

@media(max-width:767.98px) {
    .a-logo-comp--image {
        max-height: var(--logo-max-height-mob)
    }
}

.a-logo-comp--link {
    cursor: pointer;
    text-decoration: none
}

.a-logo-comp--link:focus {
    outline: var(--logo-focus-outline)
}

.m-social-media {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-social-media--title {
    color: #000;
    font-size: var(--social-media-font-size);
    line-height: var(--social-media-line-height);
    margin-bottom: 0
}

@media(min-width:992px) {
    .m-social-media--title {
        display: inline-block;
        margin-right: var(--social-media-margin)
    }
}

@media(max-width:991.98px) {
    .m-social-media--title {
        display: none
    }
}

.m-social-media--title-dark {
    color: var(--social-media-dark-text-color)
}

.m-social-media--icons {
    padding: var(--social-media-icons-padding);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0
}

.m-social-media--icons li {
    list-style: none;
    width: 24px;
    height: 24px;
    margin: 0 .75rem 0 0
}

.m-social-media--icons li:last-child {
    margin: 0
}

.m-social-media--icons .abt-icon {
    font-size: var(--social-media-icons-font-size)
}

.m-social-media--image {
    max-width: 50px;
    vertical-align: middle;
    border-radius: 50%
}

.bg-black .m-social-media--title {
    color: var(--social-media-light-text-color)
}

.m-social-media .a-logo-comp--link {
    text-decoration: none
}

.m-card {
    position: relative;
    width: var(--card-width-mobile);
    margin: 0 auto
}

@media(min-width:576px) {
    .m-card {
        width: var(--card-width);
        max-width: 100%
    }
}

.m-card .m-card__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.m-card a {
    text-decoration: none
}

.m-card:before {
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    border: var(--card-border);
    border-radius: var(--card-border-radius);
    -webkit-box-shadow: var(--card-box-shadow);
    box-shadow: var(--card-box-shadow);
    z-index: 0
}

.m-card__media {
    height: var(--card-media-height-mobile);
    border-radius: var(--card-media-border-radius);
    overflow: hidden;
    position: relative
}

@media(min-width:576px) {
    .m-card__media {
        height: var(--card-media-height)
    }
}

.m-card__media .m-card__wrap .abt-icon {
    color: var(--card-icon-color);
    font-size: var(--card-icon-font-size);
    left: 50%;
    opacity: .6;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10
}

.m-card__media .m-card__wrap .toggle-overlay {
    display: none
}

.m-card__media .m-card__wrap .toggle-overlay .hover-text {
    color: var(--card-overlay-text-color);
    left: var(--card-overlay-text-left-spacing);
    opacity: 1;
    position: absolute;
    text-transform: uppercase;
    top: var(--card-overlay-text-top-spacing);
    z-index: 10
}

.m-card__media .m-card__wrap .toggle-overlay .story-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    width: 100%
}

.m-card:hover .m-card__wrap .toggle-overlay {
    display: block
}

.m-card__image,
.m-card .cmp-image__image {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center
}

.m-card__body {
    padding: var(--card-body-padding);
    overflow: hidden;
    position: relative;
    z-index: 2;
    word-break: break-word
}

.m-card__body .a-button:first-of-type {
    margin-top: var(--card-spacing-sm)
}

.m-card__body .a-button+.a-button {
    margin-top: var(--card-spacing-xs)
}

.m-card__body .cta1:not(:last-child) {
    margin-bottom: var(--card-spacing-sm)
}

.m-card__body .a-link a,
.m-card__body .cmp-download a {
    font-size: .875rem;
    font-weight: bold;
    line-height: 1.25rem
}

.m-card__body .a-button {
    padding: 0 !important;
    margin: 0 !important
}

.m-card__title {
    line-height: var(--card-title-line-height);
    color: var(--card-title-color-dark)
}

.m-card__pretitle {
    margin-bottom: var(--card-spacing-xs);
    line-height: var(--card-pre-title-line-height);
    color: var(--card-pre-title-color)
}

.m-card__pretitle,
.m-card__description {
    font-size: var(--card-pre-title-desc-font-size)
}

.m-card__description {
    color: var(--card-description-color-light);
    line-height: var(--card-description-line-height);
    font-weight: normal
}

.m-card--fill-height {
    -ms-flex-item-align: stretch;
    align-self: stretch
}

.m-card.m-card--fill-width {
    width: 100%
}

.m-card.m-card--fill-width .m-card__media {
    width: 100%
}

@media(min-width:576px) {
    .m-card--large {
        width: var(--card-large-width)
    }
}

@media(max-width:767.98px) {
    .m-card--large {
        width: var(--card-large-width-mobile)
    }
}

@media(min-width:576px) {
    .m-card--large .m-card__media {
        height: var(--card-large-media-height)
    }
}

@media(max-width:767.98px) {
    .m-card--large .m-card__media {
        height: var(--card-large-media-height-mobile)
    }
}

.m-card--horizontal .m-card__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(min-width:576px) {
    .m-card--horizontal {
        width: var(--card-horizontal-width);
        min-height: var(--card-horizontal-height)
    }
}

@media(max-width:767.98px) {
    .m-card--horizontal {
        width: var(--card-horizontal-width-mobile);
        min-height: var(--card-horizontal-height-mobile)
    }
}

@media(max-width:767.98px) {
    .m-card--horizontal .m-popup {
        width: 100%
    }
}

.m-card--horizontal .m-card-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.m-card--horizontal.m-card--fill-height {
    -ms-flex-item-align: start;
    align-self: flex-start
}

@media(min-width:576px) {
    .m-card--horizontal.m-card--fill-width .m-card__media {
        min-width: var(--card-horizontal-media-width);
        width: var(--card-horizontal-media-width);
        height: var(--card-horizontal-media-height)
    }
}

@media(max-width:767.98px) {
    .m-card--horizontal.m-card--fill-width .m-card__media {
        min-width: var(--card-horizontal-media-width-mobile);
        width: var(--card-horizontal-media-width-mobile);
        height: var(--card-horizontal-media-height-mobile)
    }
}

.m-card--horizontal .m-card__media {
    border-radius: var(--card-horizontal-media-border-radius);
    overflow: inherit
}

@media(min-width:576px) {
    .m-card--horizontal .m-card__media {
        min-width: var(--card-horizontal-media-width);
        width: var(--card-horizontal-media-width);
        height: var(--card-horizontal-media-height)
    }
}

@media(max-width:767.98px) {
    .m-card--horizontal .m-card__media {
        min-width: var(--card-horizontal-media-width-mobile);
        width: var(--card-horizontal-media-width-mobile);
        height: var(--card-horizontal-media-height-mobile)
    }
}

.m-card--horizontal .m-card__body {
    padding: var(--card-spacing-sm) var(--card-spacing-sm);
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: inherit
}

@media(min-width:576px) {
    .m-card--horizontal.m-card--large {
        width: var(--card-large-horizontal-width);
        height: var(--card-large-horizontal-height)
    }
}

@media(max-width:767.98px) {
    .m-card--horizontal.m-card--large {
        width: var(--card-large-horizontal-width-mobile);
        height: auto
    }
}

.m-card--horizontal.m-card--large .m-card__body {
    padding: var(--card-spacing-lg) var(--card-spacing-lg)
}

@media(min-width:576px) {
    .m-card--horizontal.m-card--large .m-card__media {
        min-width: var(--card-large-horizontal-media-width);
        width: var(--card-large-horizontal-media-width);
        height: var(--card-large-horizontal-media-height)
    }
}

@media(max-width:767.98px) {
    .m-card--horizontal.m-card--large .m-card__media {
        min-width: var(--card-large-horizontal-media-width-mobile);
        width: var(--card-large-horizontal-media-width-mobile);
        height: var(--card-large-horizontal-media-height-mobile)
    }
}

.m-card--horizontal.m-card--large.m-card--fill-width {
    width: 100%
}

@media(min-width:576px) {
    .m-card--horizontal.m-card--large.m-card--fill-width .m-card__media {
        min-width: var(--card-large-horizontal-media-width);
        width: var(--card-large-horizontal-media-width);
        height: var(--card-large-horizontal-media-height)
    }
}

@media(max-width:767.98px) {
    .m-card--horizontal.m-card--large.m-card--fill-width .m-card__media {
        min-width: var(--card-large-horizontal-media-width-mobile);
        width: var(--card-large-horizontal-media-width-mobile);
        height: var(--card-large-horizontal-media-height-mobile)
    }
}

.m-card--horizontal.m-card--media-end .m-card__media {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    border-radius: var(--card-horizontal-media-end-border-radius)
}

.m-card--light .m-card__media,
.m-card__media--bg-white .m-card__media {
    background-color: var(--card-media-end-light)
}

.m-card--dark .m-card__media,
.m-card__media--bg-dark .m-card__media {
    background-color: var(--card-media-end-dark)
}

.m-card__body--bg-white {
    background: var(--card-body-bg-color);
    border-radius: var(--card-border-radius)
}

.m-card--padding .m-card__media {
    padding: var(--card-spacing-sm)
}

.m-card--padding .m-card__media .m-card__wrap {
    position: relative;
    height: 100%;
    width: 100%
}

.m-card--fit .cmp-image {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.m-card--fit .cmp-image__image {
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto
}

.m-card__width--fluid {
    width: auto !important
}

.m-card__title-light .m-card__title {
    color: var(--card-title-color-light)
}

.m-card__title-dark .m-card__title {
    color: var(--card-title-color-dark)
}

.m-card__description-light .m-card__description {
    color: var(--card-description-color-light)
}

.m-card__description-dark .m-card__description {
    color: var(--card-description-color-dark)
}

@media(min-width:768px) {
    .m-card--align-left {
        margin: 0 auto 0 0
    }
}

@media(min-width:768px) {
    .m-card--align-right {
        margin: 0 0 0 auto
    }
}

.m-card.m-card-default {
    background-color: var(--card-media-end-light)
}

.m-card.m-card-default .m-card__body .m-card__description p,
.m-card.m-card-default .m-card__body .m-card__description h1,
.m-card.m-card-default .m-card__body .m-card__description h2,
.m-card.m-card-default .m-card__body .m-card__description h3,
.m-card.m-card-default .m-card__body .m-card__description h4,
.m-card.m-card-default .m-card__body .m-card__description h5,
.m-card.m-card-default .m-card__body .m-card__description h6 {
    color: var(--card-color-charcoal)
}

.m-card.m-card-default:hover {
    background-color: var(--card-color-snow-gray)
}

.m-card.m-card-default:hover .m-card__body .m-card__description p,
.m-card.m-card-default:hover .m-card__body .m-card__description h1,
.m-card.m-card-default:hover .m-card__body .m-card__description h2,
.m-card.m-card-default:hover .m-card__body .m-card__description h3,
.m-card.m-card-default:hover .m-card__body .m-card__description h4,
.m-card.m-card-default:hover .m-card__body .m-card__description h5,
.m-card.m-card-default:hover .m-card__body .m-card__description h6 {
    color: var(--card-color-charcoal)
}

.m-card.m-card-default .m-card__title {
    color: var(--card-color-cerulean-blue)
}

.m-card.m-card-default .m-card__body p,
.m-card.m-card-default .m-card__body h1,
.m-card.m-card-default .m-card__body h2,
.m-card.m-card-default .m-card__body h3,
.m-card.m-card-default .m-card__body h4,
.m-card.m-card-default .m-card__body h5,
.m-card.m-card-default .m-card__body h6 {
    color: var(--card-color-cerulean-blue)
}

.m-card.m-card-default .a-link {
    display: block;
    margin-bottom: 6px
}

.m-card.m-card-default .a-link a,
.m-card.m-card-default .a-link .abt-icon {
    color: var(--card-color-cerulean-blue);
    line-height: 15px
}

.m-card.m-card-default .a-link .abt-icon {
    margin: 0
}

.m-card.m-card__media--bg--dark .m-card__media {
    background-color: var(--card-color-navy-blue)
}

.m-card.m-card__media--bg--light .m-card__media {
    background-color: var(--card-color-ice-blue)
}

.m-card.m-card-dark {
    background-color: var(--card-color-navy-blue);
    color: var(--card-media-end-light);
    border-radius: 5px
}

.m-card.m-card-dark .m-card__title {
    color: var(--card-color-coral-blue)
}

.m-card.m-card-dark .m-card__body p,
.m-card.m-card-dark .m-card__body h1,
.m-card.m-card-dark .m-card__body h2,
.m-card.m-card-dark .m-card__body h3,
.m-card.m-card-dark .m-card__body h4,
.m-card.m-card-dark .m-card__body h5,
.m-card.m-card-dark .m-card__body h6 {
    color: var(--card-color-coral-blue)
}

.m-card.m-card-dark .m-card__body .m-card__description p,
.m-card.m-card-dark .m-card__body .m-card__description h1,
.m-card.m-card-dark .m-card__body .m-card__description h2,
.m-card.m-card-dark .m-card__body .m-card__description h3,
.m-card.m-card-dark .m-card__body .m-card__description h4,
.m-card.m-card-dark .m-card__body .m-card__description h5,
.m-card.m-card-dark .m-card__body .m-card__description h6 {
    color: var(--card-media-end-light)
}

.m-card.m-card-dark .a-link {
    display: block;
    margin-bottom: 6px
}

.m-card.m-card-dark .a-link a,
.m-card.m-card-dark .a-link .abt-icon {
    line-height: 15px;
    color: var(--card-color-coral-blue)
}

.m-card.m-card-dark .a-link .abt-icon {
    margin: 0
}

.m-card.m-card-dark:hover {
    background-color: var(--card-color-snow-gray);
    color: #000
}

.m-card.m-card-dark:hover .m-card__title {
    color: var(--card-color-cerulean-blue)
}

.m-card.m-card-dark:hover .m-card__body p,
.m-card.m-card-dark:hover .m-card__body h1,
.m-card.m-card-dark:hover .m-card__body h2,
.m-card.m-card-dark:hover .m-card__body h3,
.m-card.m-card-dark:hover .m-card__body h4,
.m-card.m-card-dark:hover .m-card__body h5,
.m-card.m-card-dark:hover .m-card__body h6 {
    color: var(--card-color-cerulean-blue)
}

.m-card.m-card-dark:hover .m-card__body .m-card__description p,
.m-card.m-card-dark:hover .m-card__body .m-card__description h1,
.m-card.m-card-dark:hover .m-card__body .m-card__description h2,
.m-card.m-card-dark:hover .m-card__body .m-card__description h3,
.m-card.m-card-dark:hover .m-card__body .m-card__description h4,
.m-card.m-card-dark:hover .m-card__body .m-card__description h5,
.m-card.m-card-dark:hover .m-card__body .m-card__description h6 {
    color: var(--card-color-charcoal)
}

.m-card.m-card-dark:hover .a-link {
    display: block;
    margin-bottom: 6px
}

.m-card.m-card-dark:hover .a-link a,
.m-card.m-card-dark:hover .a-link .abt-icon {
    line-height: 15px;
    color: var(--card-color-cerulean-blue)
}

.m-card.m-card-dark:hover .a-link .abt-icon {
    margin: 0
}

.m-card.m-card-light {
    background-color: var(--card-color-ice-blue)
}

.m-card.m-card-light .m-card__body .m-card__description p,
.m-card.m-card-light .m-card__body .m-card__description h1,
.m-card.m-card-light .m-card__body .m-card__description h2,
.m-card.m-card-light .m-card__body .m-card__description h3,
.m-card.m-card-light .m-card__body .m-card__description h4,
.m-card.m-card-light .m-card__body .m-card__description h5,
.m-card.m-card-light .m-card__body .m-card__description h6 {
    color: var(--card-color-charcoal)
}

.m-card.m-card-light:hover {
    background-color: var(--card-color-snow-gray)
}

.m-card.m-card-light:hover .m-card__body .m-card__description p,
.m-card.m-card-light:hover .m-card__body .m-card__description h1,
.m-card.m-card-light:hover .m-card__body .m-card__description h2,
.m-card.m-card-light:hover .m-card__body .m-card__description h3,
.m-card.m-card-light:hover .m-card__body .m-card__description h4,
.m-card.m-card-light:hover .m-card__body .m-card__description h5,
.m-card.m-card-light:hover .m-card__body .m-card__description h6 {
    color: var(--card-color-charcoal)
}

.m-card.m-card-light .m-card__title {
    color: var(--card-color-cerulean-blue)
}

.m-card.m-card-light .m-card__body p,
.m-card.m-card-light .m-card__body h1,
.m-card.m-card-light .m-card__body h2,
.m-card.m-card-light .m-card__body h3,
.m-card.m-card-light .m-card__body h4,
.m-card.m-card-light .m-card__body h5,
.m-card.m-card-light .m-card__body h6 {
    color: var(--card-color-cerulean-blue)
}

.m-card.m-card-light .a-link {
    display: block;
    margin-bottom: 6px
}

.m-card.m-card-light .a-link a,
.m-card.m-card-light .a-link .abt-icon {
    color: var(--card-color-cerulean-blue);
    line-height: 15px
}

.m-card.m-card-light .a-link .abt-icon {
    margin: 0
}

.m-card-link {
    text-decoration: none !important
}

.columncontrol__column .m-card--large,
.a-container__column .m-card--large {
    width: var(--card-large-width-mobile)
}

@media(min-width:1200px) {

    .columncontrol__column .m-card--large,
    .a-container__column .m-card--large {
        width: var(--card-large-width)
    }
}

.a-chips {
    display: inline-block
}

.a-chips--link {
    font-size: var(--chips-font-size);
    line-height: var(--chips-line-height);
    color: var(--chips-color);
    text-transform: capitalize;
    font-weight: normal;
    padding: var(--chips-padding);
    border-radius: var(--chips-border-radius);
    background: var(--chips-bg-color);
    text-decoration: none;
    cursor: pointer
}

.a-chips--link:hover {
    background: var(--chips-bg-color-hover);
    color: var(--chips-color-hover);
    text-decoration: none
}

.a-chips--link.active,
.a-chips--link:focus {
    background: var(--chips-bg-color-active);
    font-weight: bold;
    text-decoration: none
}

.m-chips-list__head {
    margin: var(--chips-list-head-margin)
}

.m-chips-list__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.m-chips-list__body .a-chips {
    margin: var(--chips-list-chips-margin)
}

.a-badges {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: var(--badge-height);
    width: var(--badge-width);
    background-color: var(--badge-bg-color);
    border-radius: var(--badge-border-radius);
    word-break: break-word
}

.a-badges--alarm {
    background-image: var(--badge-bg-image);
    background-size: var(--badge-bg-size);
    background-repeat: no-repeat;
    background-color: transparent;
    border-radius: 0
}

.a-badges--alarm .a-badges--text {
    text-indent: -9999px
}

.a-badges--text {
    font-size: var(--badge-font-size);
    line-height: var(--badge-line-height);
    font-family: var(--badge-font-family);
    color: var(--badge-font-color);
    letter-spacing: var(--badge-font-letter-spacing) px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.a-badges .abt-icon.abt-icon-alarm {
    font-size: 3.125rem;
    color: var(--badge-alarm-icon-color)
}

[title="badge"] {
    z-index: 30
}

.a-add-to-cart {
    text-align: center;
    border-radius: 0 0 6px 6px;
    padding-bottom: var(--add-to-cart-padding-bottom);
    background-color: var(--add-to-cart-bg-color)
}

.a-add-to-cart .a-stepper,
.a-add-to-cart .a-button {
    margin-bottom: var(--add-to-cart-spacing)
}

.a-add-to-cart .a-button .btn {
    margin: 0 auto
}

.a-add-to-cart__cta .abt-icon-spinner {
    position: absolute;
    top: auto
}

.a-add-to-cart__max-quantity-error {
    margin: var(--add-to-cart-max-quantity-error-margin);
    margin-top: .5rem
}

.a-add-to-cart .a-product-options {
    border-bottom: 2px solid var(--add-to-cart-gray-color);
    margin-bottom: var(--add-to-cart-margin-bottom);
    font-family: var(--add-to-cart-font-family);
    font-style: normal
}

.a-add-to-cart .a-product-options__subscription-tile {
    border: 1px solid var(--add-to-cart-lightgray-color);
    border-radius: var(--add-to-cart-border-radius04);
    margin: var(--add-to-cart-margin24) 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: var(--add-to-cart-padding08) var(--add-to-cart-padding16);
    font-size: var(--add-to-cart-font-size14);
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.a-add-to-cart .a-product-options__subscription-tile--hide {
    display: none
}

.a-add-to-cart .a-product-options--subscription-info {
    font-size: var(--add-to-cart-font-size14);
    font-weight: var(--add-to-cart-font-weight);
    line-height: var(--add-to-cart-line-height20)
}

.a-add-to-cart .a-product-options--cancel-subscription {
    font-size: var(--add-to-cart-font-size12);
    line-height: var(--add-to-cart-line-height16);
    margin-bottom: var(--add-to-cart-margin-bottom)
}

.a-add-to-cart .selected {
    background-color: var(--add-to-cart-secondary-color);
    border: 1px solid var(--add-to-cart-primary-color)
}

.a-add-to-cart .subscription-details--billing-period {
    font-size: var(--add-to-cart-font-size16);
    font-weight: var(--add-to-cart-font-weight);
    line-height: var(--add-to-cart-line-height20);
    color: var(--add-to-cart-primary-color);
    text-transform: capitalize
}

.a-add-to-cart .subscription-details p {
    margin: auto
}

.a-add-to-cart .subscription-price p {
    margin: auto
}

.a-add-to-cart .subscription-price__price {
    color: var(--add-to-cart-primary-color);
    font-size: var(--add-to-cart-font-size24);
    font-weight: var(--add-to-cart-font-weight);
    line-height: var(--add-to-cart-line-height32)
}

.a-add-to-cart .subscription-price__vat {
    color: var(--add-to-cart-gray-darker-color);
    font-size: var(--add-to-cart-font-size12);
    font-style: normal
}

.a-add-to-cart .subscription-price__discount-price {
    color: var(--add-to-cart-gray-darker-color);
    font-size: var(--add-to-cart-font-size24);
    font-weight: var(--add-to-cart-font-weight);
    line-height: var(--add-to-cart-line-height32);
    text-decoration: line-through
}

.a-link {
    font-family: var(--link-font-family);
    font-size: var(--link-font-size);
    font-weight: bold;
    line-height: var(--link-line-height);
    display: inline-block;
    color: var(--link-color);
    cursor: pointer
}

.a-link .abt-icon {
    font-size: var(--link-icon-size);
    color: var(--link-icon-color);
    position: relative;
    top: 5px
}

.a-link__text {
    display: inline-block
}

.a-link__text:hover .abt-icon {
    text-decoration: none
}

.a-link__text:focus {
    color: var(--link-focus-color)
}

.a-link__text:active {
    color: var(--link-active-color)
}

.a-link--icon {
    font-weight: normal
}

.a-link--icon .a-link__text--has-icon {
    padding-left: var(--link-padding-left);
    position: relative
}

.a-link--icon .a-link__text .abt-icon {
    margin-left: var(--link-icon-margin-left);
    position: absolute;
    left: 0;
    top: 0
}

.a-link--icon-left .a-link__text {
    position: relative
}

@media(min-width:992px) {
    .a-link--icon-left .a-link__text--has-icon {
        padding-left: var(--link-padding-left)
    }
}

.a-link--icon-left .a-link__text .abt-icon {
    position: absolute;
    left: 0;
    top: 0
}

.a-link--icon-right .a-link__text {
    position: relative;
    padding-right: var(--link-padding-right)
}

.a-link--icon-right .a-link__text .abt-icon {
    position: absolute;
    right: 0;
    top: 0
}

.a-tile {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content
}

.a-tile__link {
    padding: var(--tiles-padding);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    border-radius: var(--tiles-border-radius);
    position: relative;
    -webkit-box-shadow: var(--tiles-box-shadow);
    box-shadow: var(--tiles-box-shadow);
    overflow: hidden;
    background-color: var(--tiles-bg);
    z-index: 2
}

.a-tile__link:after {
    border-radius: var(--tiles-border-radius);
    -webkit-transition: var(--tiles-bg-transition);
    transition: var(--tiles-bg-transition);
    background-color: var(--tiles-bg);
    border-top: var(--tiles-border-top);
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 12px;
    top: 0;
    left: 0
}

.a-tile__link:hover {
    color: var(--tiles-bg-hover-color);
    text-decoration: none
}

.a-tile__link:hover:after {
    height: 100%;
    background-color: var(--tiles-bg-hover);
    border-top: var(--tiles-border-top-hover)
}

.a-tile__link:hover .a-tile__title,
.a-tile__link:hover .a-tile__title-text,
.a-tile__link:hover .a-tile__para,
.a-tile__link:hover p {
    color: var(--tiles-bg-hover-color);
    text-decoration: none
}

.a-tile__link:hover .a-tile__tile-icon,
.a-tile__link:hover i {
    color: var(--tiles-bg-hover-color) !important
}

.a-tile__link:hover .a-tile__icon {
    color: var(--tiles-bg-hover-color)
}

.a-tile__title,
.a-tile-text {
    color: var(--tiles-bg-color);
    font-weight: bold;
    position: relative;
    z-index: 5
}

.a-tile__icon {
    display: none;
    font-size: var(--tiles-icon-size);
    position: relative;
    z-index: 5
}

.a-tile__para {
    color: var(--tiles-bg-color);
    margin-top: var(--tiles-para-margin-top);
    font-family: var(--tiles-font-family);
    position: relative;
    z-index: 5
}

.a-tile__para p {
    font-family: var(--tiles-para-font-family)
}

.a-tile__tile-icon {
    color: var(--tiles-bg-color);
    margin-top: 1.25rem;
    position: relative;
    height: 3rem;
    width: 3rem;
    z-index: 5
}

.a-tile__tile-icon i {
    font-size: 3rem
}

@media(max-width:767.98px) {
    .a-tile {
        min-width: inherit;
        max-width: inherit;
        width: 100%
    }
}

.a-tile--xsmall .a-tile__link {
    min-height: var(--tiles-xsmall-height);
    height: auto;
    width: var(--tiles-xsmall-width)
}

@media(max-width:991.98px) {
    .a-tile--xsmall .a-tile__link {
        width: var(--tiles-xsmall-width-tablet)
    }
}

@media(max-width:767.98px) {
    .a-tile--xsmall .a-tile__link {
        min-height: var(--tiles-xsmall-height-mobile)
    }
}

.a-tile--small .a-tile__link {
    min-height: var(--tiles-medium-height);
    height: auto;
    width: var(--tiles-xsmall-width)
}

@media(max-width:991.98px) {
    .a-tile--small .a-tile__link {
        width: var(--tiles-xsmall-width-tablet)
    }
}

@media(max-width:767.98px) {
    .a-tile--small .a-tile__link {
        min-height: var(--tiles-small-height-mobile)
    }
}

.a-tile--medium .a-tile__link {
    width: var(--tiles-medium-width);
    min-height: var(--tiles-medium-height);
    height: auto
}

@media(max-width:991.98px) {
    .a-tile--medium .a-tile__link {
        width: var(--tiles-medium-width-tablet)
    }
}

@media(max-width:767.98px) {
    .a-tile--medium .a-tile__link {
        min-height: var(--tiles-medium-height-mobile)
    }
}

.a-tile--large .a-tile__link {
    width: var(--tiles-large-width);
    min-height: var(--tiles-large-height);
    height: auto
}

@media(max-width:991.98px) {
    .a-tile--large .a-tile__link {
        width: var(--tiles-large-width-tablet)
    }
}

@media(max-width:767.98px) {
    .a-tile--large .a-tile__link {
        min-height: var(--tiles-large-height-mobile)
    }
}

@media(max-width:767.98px) {

    .a-tile--xsmall .a-tile__link,
    .a-tile--small .a-tile__link,
    .a-tile--medium .a-tile__link,
    .a-tile--large .a-tile__link {
        width: 100%
    }

    .a-tile--xsmall .a-tile__link .a-tile__icon,
    .a-tile--small .a-tile__link .a-tile__icon,
    .a-tile--medium .a-tile__link .a-tile__icon,
    .a-tile--large .a-tile__link .a-tile__icon {
        position: absolute;
        top: 22px;
        right: 10px;
        display: block;
        color: var(--tiles-icon-color)
    }
}

.a-tile--xsmall .a-tile__link:hover .a-tile__icon,
.a-tile--small .a-tile__link:hover .a-tile__icon,
.a-tile--medium .a-tile__link:hover .a-tile__icon,
.a-tile--large .a-tile__link:hover .a-tile__icon {
    color: var(--tiles-icon-color-hover)
}

.a-tile--dark .a-tile__link {
    background-color: var(--tiles-bg-dark);
    border-color: var(--tiles-border-color-dark);
    color: var(--tiles-color-dark)
}

.a-tile--dark .a-tile__link:after {
    height: 0;
    border-color: var(--tiles-border-color-dark)
}

.a-tile--dark .a-tile__link .a-tile__title,
.a-tile--dark .a-tile__link .a-tile__title-text,
.a-tile--dark .a-tile__link .a-tile__para,
.a-tile--dark .a-tile__link p {
    color: var(--tiles-color-dark)
}

.a-tile--dark .a-tile__link .a-tile__tile-icon,
.a-tile--dark .a-tile__link i {
    color: var(--tiles-color-dark)
}

.a-tile--dark .a-tile__link:hover {
    color: var(--tiles-color-dark-hover)
}

.a-tile--dark .a-tile__link:hover:after {
    background-color: var(--tiles-bg-dark-hover) !important;
    border-color: var(--tiles-border-color-dark-hover);
    height: 100% !important;
    z-index: 1
}

.a-tile--dark .a-tile__link:hover .a-tile__title-text:after {
    display: block;
    position: relative;
    bottom: -8px;
    width: 88px;
    height: 4px;
    content: " ";
    background-color: var(--tiles-title-border-line-dark-hover)
}

.a-tile--dark .a-tile__link:hover .a-tile__title,
.a-tile--dark .a-tile__link:hover .a-tile__title-text,
.a-tile--dark .a-tile__link:hover .a-tile__para,
.a-tile--dark .a-tile__link:hover p {
    text-decoration: none;
    color: var(--tiles-color-dark-hover);
    position: relative;
    z-index: 2
}

.a-tile--dark .a-tile__link:hover .a-tile__tile-icon,
.a-tile--dark .a-tile__link:hover i {
    color: var(--tiles-color-dark-hover) !important
}

.a-tile--dark .a-tile__link:hover .a-tile__icon {
    color: var(--tiles-icon-color-hover)
}

.m-tile-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap
}

.m-tile-list>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap
}

.m-tile-list .a-tile {
    margin: 10px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
}

.m-tile-list--start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start
}

.m-tile-list--center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.m-tile-list--end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.m-hero {
    position: relative;
    z-index: 0;
    padding-top: var(--hero-padding-top);
    padding-bottom: var(--hero-padding-bottom)
}

.m-hero--auto-height {
    height: auto
}

@media(max-width:991.98px) {
    .m-hero--text-center-mobile .m-hero__content {
        position: absolute;
        left: 10px;
        width: 100%;
        padding: 0 15px
    }
}

.m-hero .cmp-image__image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: var(--hero-media-image-object-fit);
    object-fit: var(--hero-media-image-object-fit);
    -o-object-position: var(--hero-media-image-object-position);
    object-position: var(--hero-media-image-object-position)
}

@media(min-width:992px) {
    .m-hero {
        overflow: hidden
    }
}

.m-hero__title+.m-hero__header {
    margin-top: var(--hero-title-top-spacing)
}

.m-hero__header+.m-hero__body {
    margin-top: var(--hero-title-top-spacing)
}

.m-hero__body {
    font-weight: 300;
    font-family: var(--hero-para-font-family)
}

@media(max-width:991.98px) {
    .m-hero__body {
        font-size: var(--hero-body-font-size-md-sm);
        line-height: var(--hero-body-line-height-md-sm);
        font-weight: 400
    }
}

.m-hero__media {
    z-index: -1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.m-hero__media:after {
    z-index: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

@media(min-width:992px) {
    .m-hero__media {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0
    }
}

@media(max-width:991.98px) {
    .m-hero__media {
        position: relative;
        min-width: 100vw;
        margin-left: calc(-1 * (100vw - 100%) / 2)
    }
}

.m-hero__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    position: relative
}

@media(min-width:992px) {
    .m-hero__content {
        width: var(--hero-content-default-width);
        margin-left: var(--hero-content-default-space)
    }
}

@media(max-width:991.98px) {
    .m-hero__content {
        width: 100%
    }
}

.m-hero__content-image {
    -ms-flex-item-align: start;
    align-self: flex-start
}

@media(max-width:991.98px) {
    .m-hero__content-image {
        max-width: 80%
    }
}

.m-hero__image,
.m-hero__parallax-image,
.m-hero .cmp-image__image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: var(--hero-media-image-object-fit);
    object-fit: var(--hero-media-image-object-fit);
    -o-object-position: var(--hero-media-image-object-position);
    object-position: var(--hero-media-image-object-position)
}

.m-hero .m-hero__parallax-image {
    width: auto
}

.m-hero__parallax-wrapper .m-hero__parallax-image {
    height: var(--hero-parallax-image-height);
    min-height: var(--hero-parallax-image-min-height);
    z-index: -1
}

@media(min-width:992px) {
    .m-hero__parallax-wrapper .m-hero__parallax-image {
        min-height: var(--hero-parallax-image-min-height-xl)
    }
}

@media(min-width:1200px) {
    .m-hero__parallax-wrapper .m-hero__parallax-image {
        -o-object-fit: fill;
        object-fit: fill;
        -o-object-position: 50% 50%;
        object-position: 50% 50%
    }
}

.m-hero__extras {
    margin-top: var(--hero-desktop-extras-top-spacing);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-hero__extras>.xfpage {
    width: 100%
}

@media(max-width:991.98px) {
    .m-hero__extras {
        margin-top: var(--hero-tablet-extras-top-spacing)
    }

    .m-hero__extras .a-button {
        margin-top: 0
    }
}

@media(max-width:575.98px) {
    .m-hero__extras {
        margin-top: var(--hero-mobile-extras-top-spacing);
        display: block
    }

    .m-hero__extras .a-button {
        width: 100%;
        display: block
    }

    .m-hero__extras .a-button .a-link {
        width: 100%
    }

    .m-hero__extras .a-button .a-button {
        width: 100%;
        text-align: center
    }

    .m-hero__extras .a-button+.a-button {
        margin-top: var(--hero-mobile-extras-top-spacing);
        margin-left: 0 !important
    }
}

.m-hero__extras .a-button .a-button {
    margin: 0
}

.m-hero__extras .a-button+.a-button {
    margin-left: var(--hero-extras-between-spacing)
}

.m-hero--media-start .m-hero__media {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.m-hero--media-start .m-hero__content {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.m-hero--media-start .m-hero__parallax-image {
    left: 0;
    right: auto;
    max-width: 87%;
    margin-left: -20%;
    padding-left: 10%
}

@media(min-width:768px) and (max-width:991.98px) {
    .m-hero--media-start .m-hero__content {
        padding-top: var(--hero-tablet-medium-content-top-space);
        padding-bottom: var(--hero-tablet-medium-content-top-space-dbl)
    }
}

@media(max-width:767.98px) {
    .m-hero--media-start .m-hero__content {
        padding-top: var(--hero-mobile-medium-content-top-space);
        padding-bottom: var(--hero-mobile-medium-content-top-space-dbl)
    }
}

.m-hero--media-end .m-hero__media {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.m-hero--media-end .m-hero__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.m-hero--media-end .m-hero__parallax-image {
    left: auto;
    right: 0
}

@media(min-width:768px) and (max-width:991.98px) {
    .m-hero--media-end .m-hero__content {
        padding-top: var(--hero-tablet-medium-content-top-space-dbl);
        padding-bottom: var(--hero-tablet-medium-content-top-space)
    }
}

@media(max-width:767.98px) {
    .m-hero--media-end .m-hero__content {
        padding-top: var(--hero-mobile-medium-content-top-space-dbl);
        padding-bottom: var(--hero-mobile-medium-content-top-space)
    }
}

.m-hero--rounded-corners {
    border-radius: var(--hero-rounded-corners)
}

.m-hero--dark {
    background: var(--hero-bg-dark)
}

.m-hero--dark .m-hero__title,
.m-hero--dark .m-hero__header,
.m-hero--dark .m-hero__body,
.m-hero--dark .m-hero__subtitle {
    color: var(--hero-color-dark)
}

.m-hero--light {
    background: var(--hero-bg-light)
}

.m-hero--light .m-hero__title,
.m-hero--light .m-hero__header,
.m-hero--light .m-hero__body,
.m-hero--light .m-hero__subtitle {
    color: var(--hero-color-light)
}

.m-hero--body-strong .m-hero__body {
    font-weight: bold
}

.m-hero--tall {
    height: var(--hero-desktop-tall-height)
}

@media(min-width:992px) {
    .m-hero--tall .m-hero__content {
        padding-top: var(--hero-desktop-tall-top-space)
    }

    .m-hero--tall .m-hero__header {
        font-size: var(--hero-header-font-size);
        line-height: var(--hero-header-line-height)
    }

    .m-hero--half-width.m-hero--tall {
        padding: var(--hero-desktop-tall-content-halfwidth-space)
    }

    .m-hero--half-width.m-hero--tall .m-hero__content {
        padding-top: 0
    }

    .m-hero--half-width.m-hero--tall .m-hero__media {
        height: var(--hero-desktop-tall-media-height)
    }

    .m-hero--half-width.m-hero--text-vertical-align-center.m-hero--tall .m-hero__content {
        padding-top: var(--hero-desktop-top-space-vertical-align)
    }

    .m-hero--half-width.m-hero--text-vertical-align-center.m-hero--tall .m-hero__content .m-hero__title {
        position: unset
    }

    .m-hero--half-width.m-hero--remove-spacing-bottom.m-hero--tall .m-hero__media {
        height: var(--hero-desktop-tall-height)
    }
}

@media(min-width:768px) and (max-width:991.98px) {
    .m-hero--tall {
        height: var(--hero-tablet-tall-height)
    }

    .m-hero--tall .m-hero__content {
        padding-top: var(--hero-tablet-tall-content-top-space);
        height: var(--hero-tablet-tall-height)-var(--hero-tablet-tall-media-height)
    }

    .m-hero--tall .m-hero__media {
        height: var(--hero-tablet-tall-media-height)
    }
}

@media(max-width:767.98px) {
    .m-hero--tall {
        height: auto
    }

    .m-hero--tall .m-hero__content {
        padding-top: var(--hero-mobile-tall-content-top-space);
        height: var(--hero-mobile-tall-height)-var(--hero-mobile-tall-media-height)
    }

    .m-hero--tall .m-hero__media {
        height: var(--hero-mobile-tall-media-height)
    }
}

.m-hero--medium {
    height: var(--hero-desktop-medium-height)
}

@media(min-width:992px) {
    .m-hero--medium .m-hero__content {
        padding-top: var(--hero-desktop-medium-content-top-space)
    }

    .m-hero--medium .m-hero__title {
        position: absolute;
        top: var(--hero-desktop-medium-title-top-space)
    }

    .m-hero--text-align-center.m-hero--medium .m-hero__title {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .m-hero--text-align-end.m-hero--medium .m-hero__title {
        right: 15px;
        left: auto
    }

    .m-hero--medium .m-hero__title+.m-hero__header {
        margin-top: 0
    }

    .m-hero--half-width.m-hero--medium {
        padding: 0
    }

    .m-hero--half-width.m-hero--medium .m-hero__media {
        height: var(--hero-desktop-medium-media-height)
    }
}

@media(min-width:768px) and (max-width:991.98px) {
    .m-hero--medium {
        height: var(--hero-tablet-medium-height)
    }

    .m-hero--medium .m-hero__content {
        padding-top: var(--hero-tablet-medium-content-top-space);
        height: var(--hero-tablet-medium-height)-var(--hero-tablet-medium-media-height)
    }

    .m-hero--medium .m-hero__media {
        height: var(--hero-tablet-medium-media-height)
    }
}

@media(max-width:767.98px) {
    .m-hero--medium {
        height: auto
    }

    .m-hero--medium .m-hero__content {
        padding-top: var(--hero-mobile-medium-content-top-space);
        height: var(--hero-mobile-medium-height)-var(--hero-mobile-medium-media-height)
    }

    .m-hero--medium .m-hero__media {
        height: var(--hero-mobile-medium-media-height)
    }
}

.m-hero--short {
    min-height: var(--hero-desktop-short-height)
}

@media(min-width:992px) {
    .m-hero--short .m-hero__content {
        padding-top: var(--hero-desktop-short-content-top-space)
    }

    .m-hero--short .m-hero__title {
        position: absolute;
        top: var(--hero-desktop-short-title-top-space)
    }

    .m-hero--text-align-center.m-hero--short .m-hero__title {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    .m-hero--text-align-end.m-hero--short .m-hero__title {
        right: 0;
        left: auto
    }

    .m-hero--short .m-hero__title+.m-hero__header {
        margin-top: 0
    }

    .m-hero--half-width.m-hero--short {
        padding: 0
    }

    .m-hero--half-width.m-hero--short .m-hero__media {
        height: var(--hero-desktop-short-media-height)
    }
}

@media(min-width:768px) and (max-width:991.98px) {
    .m-hero--short {
        height: var(--hero-tablet-short-height)
    }

    .m-hero--short .m-hero__content {
        padding-top: var(--hero-tablet-short-content-top-space);
        height: var(--hero-tablet-short-height)-var(--hero-tablet-short-media-height)
    }

    .m-hero--short .m-hero__media {
        height: var(--hero-tablet-short-media-height)
    }
}

@media(max-width:767.98px) {
    .m-hero--short {
        height: auto
    }

    .m-hero--short .m-hero__content {
        padding-top: var(--hero-mobile-short-content-top-space);
        height: var(--hero-mobile-short-height)-var(--hero-mobile-short-media-height)
    }

    .m-hero--short .m-hero__media {
        height: var(--hero-mobile-short-media-height)
    }
}

@media(min-width:992px) {
    .m-hero--half-width .m-hero__media {
        position: relative;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: auto
    }

    .m-hero--half-width .m-hero__content {
        width: var(--hero-content-default-half-width)
    }

    .m-hero--media-start.m-hero--half-width .m-hero__content {
        margin-left: 92.491px;
        padding-left: 0
    }

    .m-hero--media-start.m-hero--half-width .m-hero__media {
        margin: 0
    }

    .m-hero--media-end.m-hero--half-width .m-hero__content {
        margin: 0;
        padding: 0
    }

    .m-hero--media-end.m-hero--half-width .m-hero__media {
        margin-right: 45px;
        margin-left: 45px
    }
}

.m-hero--half-width-parallax.m-hero {
    overflow: hidden
}

.m-hero--half-width-parallax.m-hero .m-hero__image .cmp-image__image {
    -o-object-fit: contain;
    object-fit: contain
}

@media(min-width:992px) {

    .m-hero--half-width-parallax.m-hero section,
    .m-hero--half-width-parallax.m-hero .container,
    .m-hero--half-width-parallax.m-hero .row,
    .m-hero--half-width-parallax.m-hero .m-hero__content,
    .m-hero--half-width-parallax.m-hero .m-hero__media {
        height: 100% !important
    }

    .m-hero--half-width-parallax.m-hero .m-hero__content {
        width: var(--hero-parallax-half-width-content-width)
    }

    .m-hero--half-width-parallax.m-hero .m-hero__media {
        width: var(--hero-parallax-half-width-media-width);
        margin: 0
    }

    .m-hero--half-width-parallax.m-hero .m-hero__image {
        position: relative
    }

    .m-hero--half-width-parallax.m-hero .m-hero__parallax-wrapper {
        position: static
    }

    .m-hero--half-width-parallax.m-hero .m-hero__parallax-wrapper .m-hero__image .cmp-image__image {
        position: absolute;
        top: auto;
        bottom: 0;
        height: auto
    }
}

@media(min-width:992px) {
    .m-hero--content-start.m-hero--full-width .m-hero__content {
        padding-right: 15px
    }

    .m-hero--content-end.m-hero--full-width .m-hero__content {
        padding-left: 15px;
        margin-right: var(--hero-content-default-space);
        margin-left: 0
    }

    .m-hero--content-end.m-hero--full-width .row {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .m-hero--content-center.m-hero--full-width .m-hero__content {
        width: var(--hero-content-center-default-width);
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0
    }
}

.m-hero--text-align-start {
    text-align: left
}

.m-hero--text-align-center {
    text-align: center
}

.m-hero--text-align-center .m-hero__extras {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.m-hero--text-align-center .m-hero__content-image {
    margin: 0 auto
}

.m-hero--text-align-end {
    text-align: right
}

.m-hero--text-align-end .m-hero__extras {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.m-hero--gradient-start .m-hero__media:after {
    background: -webkit-gradient(linear, left top, right top, from(var(--hero-start-color)), to(var(--hero-end-color)));
    background: linear-gradient(90deg, var(--hero-start-color) var(--hero-start-position), var(--hero-end-color) var(--hero-end-position))
}

.m-hero--gradient-end .m-hero__media:after {
    background: -webkit-gradient(linear, right top, left top, from(var(--hero-start-color)), to(var(--hero-end-color)));
    background: linear-gradient(-90deg, var(--hero-start-color) var(--hero-start-position), var(--hero-end-color) var(--hero-end-position))
}

.m-hero--gradient-center .m-hero__media:after {
    background: radial-gradient(circle, var(--hero-start-color) var(--hero-start-position), var(--hero-end-color) var(--hero-end-position))
}

.m-hero--image-contain .cmp-image__image {
    -o-object-fit: var(--hero-media-image-object-contain);
    object-fit: var(--hero-media-image-object-contain)
}

.m-hero--container {
    margin: 0 auto;
    max-width: var(--hero-container-width)
}

@media(min-width:992px) {
    .m-hero--container {
        max-width: var(--hero-container-lg-width)
    }
}

@media(min-width:1200px) {
    .m-hero--container {
        max-width: var(--hero-container-xl-width)
    }
}

.m-hero--button-vertical .m-hero__extras {
    display: inherit
}

.m-hero--button-vertical .m-hero__extras .a-button+.a-button {
    margin-left: 0;
    margin-top: var(--hero-extras-between-spacing-vertical);
    margin-bottom: var(--hero-extras-between-spacing-vertical)
}

@media(min-width:992px) {
    .m-hero--text-vertical-align-top .m-hero__content {
        padding-top: 0
    }

    .m-hero--text-vertical-align-top .m-hero__content .m-hero__title {
        position: unset
    }

    .m-hero--text-vertical-align-center .m-hero__content {
        padding-top: var(--hero-desktop-top-space-vertical-align)
    }

    .m-hero--text-vertical-align-center .m-hero__content .m-hero__title {
        position: unset
    }

    .m-hero--text-vertical-align-center>section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .m-hero--text-vertical-align-bottom .m-hero__content {
        margin-bottom: 0
    }

    .m-hero--text-vertical-align-bottom>section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .m-hero--bglight .m-hero__content {
        background-color: var(--hero-bg-light);
        padding: 20px
    }

    .m-hero--bgdark .m-hero__content {
        background-color: var(--hero-bg-dark);
        padding: 20px
    }

    .m-hero--tall.m-hero--text-vertical-align-center>section {
        height: var(--hero-desktop-tall-height)
    }

    .m-hero--medium.m-hero--text-vertical-align-center>section {
        height: var(--hero-desktop-medium-height)
    }

    .m-hero--short.m-hero--text-vertical-align-center>section {
        height: var(--hero-desktop-short-height)
    }

    .m-hero--tall.m-hero--text-vertical-align-bottom>section,
    .m-hero--medium.m-hero--text-vertical-align-bottom>section,
    .m-hero--short.m-hero--text-vertical-align-bottom>section {
        height: 100%
    }
}

@media(max-width:991.98px) {
    .m-hero {
        padding-top: 0
    }
}

@media(max-width:991.98px) {
    .m-hero--image-position .m-hero__media {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .m-hero--image-position .m-hero__content {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

@media(max-width:991.98px) {
    .m-hero--mobile-tab--bg-primary {
        background: var(--hero-mobile-tab-bg-primary)
    }

    .m-hero--mobile-tab--bg-primary .m-hero__title,
    .m-hero--mobile-tab--bg-primary .m-hero__header,
    .m-hero--mobile-tab--bg-primary .m-hero__body,
    .m-hero--mobile-tab--bg-primary .m-hero__subtitle {
        color: var(--hero-mobile-tab-bg-text-white)
    }

    .m-hero--mobile-tab--bg-primary .a-button.a-button--primary {
        --button-primary-bg: var(--hero-mobile-tab-button-primary-bg);
        --button-primary-color: var(--hero-mobile-tab-button-primary-color)
    }
}

@-webkit-keyframes fade-in {
    0 {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fade-in {
    0 {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes text-slide-up {
    0 {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes text-slide-up {
    0 {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@media(prefers-reduced-motion:no-preference) {
    .m-hero [data-animated="true"]>*:not(.m-hero__header) {
        opacity: 0
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header) {
        -webkit-animation: fade-in 1s forwards;
        animation: fade-in 1s forwards
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(1):not(:empty) {
        -webkit-animation-delay: 350ms;
        animation-delay: 350ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(2):not(:empty) {
        -webkit-animation-delay: 700ms;
        animation-delay: 700ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(3):not(:empty) {
        -webkit-animation-delay: 1050ms;
        animation-delay: 1050ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(4):not(:empty) {
        -webkit-animation-delay: 1400ms;
        animation-delay: 1400ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(5):not(:empty) {
        -webkit-animation-delay: 1750ms;
        animation-delay: 1750ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(6):not(:empty) {
        -webkit-animation-delay: 2100ms;
        animation-delay: 2100ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(7):not(:empty) {
        -webkit-animation-delay: 2450ms;
        animation-delay: 2450ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(8):not(:empty) {
        -webkit-animation-delay: 2800ms;
        animation-delay: 2800ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(9):not(:empty) {
        -webkit-animation-delay: 3150ms;
        animation-delay: 3150ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(10):not(:empty) {
        -webkit-animation-delay: 3500ms;
        animation-delay: 3500ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(11):not(:empty) {
        -webkit-animation-delay: 3850ms;
        animation-delay: 3850ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(12):not(:empty) {
        -webkit-animation-delay: 4200ms;
        animation-delay: 4200ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(13):not(:empty) {
        -webkit-animation-delay: 4550ms;
        animation-delay: 4550ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(14):not(:empty) {
        -webkit-animation-delay: 4900ms;
        animation-delay: 4900ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(15):not(:empty) {
        -webkit-animation-delay: 5250ms;
        animation-delay: 5250ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(16):not(:empty) {
        -webkit-animation-delay: 5600ms;
        animation-delay: 5600ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(17):not(:empty) {
        -webkit-animation-delay: 5950ms;
        animation-delay: 5950ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(18):not(:empty) {
        -webkit-animation-delay: 6300ms;
        animation-delay: 6300ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(19):not(:empty) {
        -webkit-animation-delay: 6650ms;
        animation-delay: 6650ms
    }

    .m-hero [data-animated="true"].animate-fade-in>*:not(.m-hero__header):nth-child(20):not(:empty) {
        -webkit-animation-delay: 7000ms;
        animation-delay: 7000ms
    }

    .m-hero [data-animated="true"] .m-hero__header {
        opacity: 0
    }

    .m-hero [data-animated="true"].animate-slide-up .m-hero__header {
        opacity: 1
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container {
        overflow-y: hidden
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container .slide-up-text {
        display: block;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        -webkit-animation: text-slide-up 1s forwards;
        animation: text-slide-up 1s forwards
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(1):not(:empty) .slide-up-text {
        -webkit-animation-delay: 350ms;
        animation-delay: 350ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(2):not(:empty) .slide-up-text {
        -webkit-animation-delay: 700ms;
        animation-delay: 700ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(3):not(:empty) .slide-up-text {
        -webkit-animation-delay: 1050ms;
        animation-delay: 1050ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(4):not(:empty) .slide-up-text {
        -webkit-animation-delay: 1400ms;
        animation-delay: 1400ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(5):not(:empty) .slide-up-text {
        -webkit-animation-delay: 1750ms;
        animation-delay: 1750ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(6):not(:empty) .slide-up-text {
        -webkit-animation-delay: 2100ms;
        animation-delay: 2100ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(7):not(:empty) .slide-up-text {
        -webkit-animation-delay: 2450ms;
        animation-delay: 2450ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(8):not(:empty) .slide-up-text {
        -webkit-animation-delay: 2800ms;
        animation-delay: 2800ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(9):not(:empty) .slide-up-text {
        -webkit-animation-delay: 3150ms;
        animation-delay: 3150ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(10):not(:empty) .slide-up-text {
        -webkit-animation-delay: 3500ms;
        animation-delay: 3500ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(11):not(:empty) .slide-up-text {
        -webkit-animation-delay: 3850ms;
        animation-delay: 3850ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(12):not(:empty) .slide-up-text {
        -webkit-animation-delay: 4200ms;
        animation-delay: 4200ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(13):not(:empty) .slide-up-text {
        -webkit-animation-delay: 4550ms;
        animation-delay: 4550ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(14):not(:empty) .slide-up-text {
        -webkit-animation-delay: 4900ms;
        animation-delay: 4900ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(15):not(:empty) .slide-up-text {
        -webkit-animation-delay: 5250ms;
        animation-delay: 5250ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(16):not(:empty) .slide-up-text {
        -webkit-animation-delay: 5600ms;
        animation-delay: 5600ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(17):not(:empty) .slide-up-text {
        -webkit-animation-delay: 5950ms;
        animation-delay: 5950ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(18):not(:empty) .slide-up-text {
        -webkit-animation-delay: 6300ms;
        animation-delay: 6300ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(19):not(:empty) .slide-up-text {
        -webkit-animation-delay: 6650ms;
        animation-delay: 6650ms
    }

    .m-hero [data-animated="true"].animate-slide-up .slide-up-text-container:nth-child(20):not(:empty) .slide-up-text {
        -webkit-animation-delay: 7000ms;
        animation-delay: 7000ms
    }
}

.a-title__box .a-title__text::before,
.a-title__box h1::before,
.a-title__box h2::before,
.a-title__box h3::before,
.a-title__box h4::before,
.a-title__box h5::before,
.a-title__box h6::before,
.a-title__box .a-title__text::after,
.a-title__box h1::after,
.a-title__box h2::after,
.a-title__box h3::after,
.a-title__box h4::after,
.a-title__box h5::after,
.a-title__box h6::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 0;
    border-top: var(--title-top-border)
}

.a-title__box .a-title__text,
.a-title__box h1,
.a-title__box h2,
.a-title__box h3,
.a-title__box h4,
.a-title__box h5,
.a-title__box h6 {
    color: var(--title-color);
    border: var(--title-border);
    padding: var(--title-padding);
    margin: 0 auto;
    display: block;
    text-align: center;
    position: relative;
    z-index: 2;
    word-break: break-word
}

.a-title__box .a-title__text::before,
.a-title__box h1::before,
.a-title__box h2::before,
.a-title__box h3::before,
.a-title__box h4::before,
.a-title__box h5::before,
.a-title__box h6::before {
    right: 100%
}

.a-title__box .a-title__text::after,
.a-title__box h1::after,
.a-title__box h2::after,
.a-title__box h3::after,
.a-title__box h4::after,
.a-title__box h5::after,
.a-title__box h6::after {
    left: 100%
}

.a-title--rounded .a-title__text,
.a-title--rounded h1,
.a-title--rounded h2,
.a-title--rounded h3,
.a-title--rounded h4,
.a-title--rounded h5,
.a-title--rounded h6 {
    border-radius: var(--title-border-radius-rounded)
}

.a-title--dark .a-title__text,
.a-title--dark h1,
.a-title--dark h2,
.a-title--dark h3,
.a-title--dark h4,
.a-title--dark h5,
.a-title--dark h6 {
    background-color: var(--title-dark-bg);
    color: var(--title-dark-bg-color)
}

.a-title--light .a-title__text,
.a-title--light h1,
.a-title--light h2,
.a-title--light h3,
.a-title--light h4,
.a-title--light h5,
.a-title--light h6 {
    background-color: var(--title-light-bg)
}

.a-title--secondary .a-title__text,
.a-title--secondary h1,
.a-title--secondary h2,
.a-title--secondary h3,
.a-title--secondary h4,
.a-title--secondary h5,
.a-title--secondary h6 {
    background-color: var(--title-secondary-bg);
    border-color: var(--title-secondary-bg)
}

.a-title--half .a-title__text,
.a-title--half h1,
.a-title--half h2,
.a-title--half h3,
.a-title--half h4,
.a-title--half h5,
.a-title--half h6 {
    width: 50%
}

.a-title--half .a-title__text::before,
.a-title--half .a-title__text::after,
.a-title--half h1::before,
.a-title--half h1::after,
.a-title--half h2::before,
.a-title--half h2::after,
.a-title--half h3::before,
.a-title--half h3::after,
.a-title--half h4::before,
.a-title--half h4::after,
.a-title--half h5::before,
.a-title--half h5::after,
.a-title--half h6::before,
.a-title--half h6::after {
    width: 25%
}

.a-title--full .a-title__text,
.a-title--full h1,
.a-title--full h2,
.a-title--full h3,
.a-title--full h4,
.a-title--full h5,
.a-title--full h6 {
    width: 75%
}

.a-title--full .a-title__text::before,
.a-title--full .a-title__text::after,
.a-title--full h1::before,
.a-title--full h1::after,
.a-title--full h2::before,
.a-title--full h2::after,
.a-title--full h3::before,
.a-title--full h3::after,
.a-title--full h4::before,
.a-title--full h4::after,
.a-title--full h5::before,
.a-title--full h5::after,
.a-title--full h6::before,
.a-title--full h6::after {
    width: 15%
}

.a-title--full:not(.a-title).text-left .a-title__text,
.a-title--full:not(.a-title).text-left h1,
.a-title--full:not(.a-title).text-left h2,
.a-title--full:not(.a-title).text-left h3,
.a-title--full:not(.a-title).text-left h4,
.a-title--full:not(.a-title).text-left h5,
.a-title--full:not(.a-title).text-left h6,
.a-title--full:not(.a-title).text-right .a-title__text,
.a-title--full:not(.a-title).text-right h1,
.a-title--full:not(.a-title).text-right h2,
.a-title--full:not(.a-title).text-right h3,
.a-title--full:not(.a-title).text-right h4,
.a-title--full:not(.a-title).text-right h5,
.a-title--full:not(.a-title).text-right h6,
.a-title--full:not(.a-title).text-center .a-title__text,
.a-title--full:not(.a-title).text-center h1,
.a-title--full:not(.a-title).text-center h2,
.a-title--full:not(.a-title).text-center h3,
.a-title--full:not(.a-title).text-center h4,
.a-title--full:not(.a-title).text-center h5,
.a-title--full:not(.a-title).text-center h6 {
    width: 100%
}

.a-title--mt-small {
    margin-top: var(--title-spacing-margin-top-small) !important
}

.a-title--mt-medium {
    margin-top: var(--title-spacing-margin-top-medium) !important
}

.a-title--mb-small {
    margin-bottom: var(--title-spacing-margin-bottom-small) !important
}

.a-title--mb-medium {
    margin-bottom: var(--title-spacing-margin-bottom-medium) !important
}

.a-title--fg a-title__text,
.a-title--fg h1,
.a-title--fg h2,
.a-title--fg h3,
.a-title--fg h4,
.a-title--fg h5,
.a-title--fg h6 {
    color: var(--title-default-color)
}

.a-title--fg-light a-title__text,
.a-title--fg-light h1,
.a-title--fg-light h2,
.a-title--fg-light h3,
.a-title--fg-light h4,
.a-title--fg-light h5,
.a-title--fg-light h6 {
    color: var(--title-light-color)
}

.a-title--fg-primary a-title__text,
.a-title--fg-primary h1,
.a-title--fg-primary h2,
.a-title--fg-primary h3,
.a-title--fg-primary h4,
.a-title--fg-primary h5,
.a-title--fg-primary h6 {
    color: var(--title-primary-color)
}

.a-title--fg-secondary a-title__text,
.a-title--fg-secondary h1,
.a-title--fg-secondary h2,
.a-title--fg-secondary h3,
.a-title--fg-secondary h4,
.a-title--fg-secondary h5,
.a-title--fg-secondary h6 {
    color: var(--title-secondary-color)
}

.a-radio {
    display: block;
    position: relative;
    padding-left: var(--radio-padding-left);
    padding-right: var(--radio-padding-right);
    margin-bottom: var(--radio-margin-bottom);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.a-radio-label {
    display: block;
    color: #63666a
}

.a-radio--vertical {
    display: block
}

.a-radio--horizontal {
    display: inline-block
}

.a-radio__text {
    cursor: pointer;
    font-size: var(--radio-text-font-size);
    line-height: var(--radio-text-line-height);
    color: var(--radio-text-color)
}

.a-radio__title-text:empty,
.a-radio__title-text:empty+.a-dropdown__title--required {
    display: none
}

.a-radio--label-none {
    margin-bottom: var(--radio-label-margin-bottom)
}

.a-radio--label-none .a-radio__text {
    display: none
}

.a-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.a-radio__custom {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.25rem;
    width: 1.25rem;
    border: var(--radio-custom-border);
    background-color: var(--radio-custom-bg);
    border-radius: 50%;
    cursor: pointer
}

input:checked~.a-radio__custom {
    background-color: var(--radio-checked-bg);
    -webkit-box-shadow: var(--radio-field-box-shadow-focus);
    box-shadow: var(--radio-field-box-shadow-focus)
}

.a-radio__custom:after {
    content: "";
    position: absolute;
    display: none;
    top: .375rem;
    left: .375rem;
    width: .375rem;
    height: .375rem;
    border-radius: 50%;
    background: var(--radio-dot-color)
}

input:checked~.a-radio__custom:after {
    display: block
}

.a-radio--error .a-radio__label .a-radio__text {
    color: var(--radio-error-color)
}

.a-radio--error .a-radio__label .a-radio__custom {
    border: 1px solid var(--radio-error-color)
}

.a-radio--error .a-radio__label input:checked~.a-radio__custom {
    background-color: var(--radio-custom-bg)
}

.a-radio--checked-disabled .a-radio__label .a-radio__text {
    color: var(--radio-disabled-color)
}

.a-radio--checked-disabled .a-radio__label .a-radio__custom {
    border: 1px solid var(--radio-disabled-color);
    background-color: var(--radio-disabled-color);
    pointer-events: none
}

.a-radio--checked-disabled .a-radio__label .a-radio__custom:after {
    display: block
}

.a-radio--disabled .a-radio__label .a-radio__text {
    color: var(--radio-disabled-color)
}

.a-radio--disabled .a-radio__label .a-radio__custom {
    border: 1px solid var(--radio-disabled-color);
    background-color: var(--radio-disabled-bg-color);
    pointer-events: none
}

.radio--text-require {
    display: none;
    font-size: var(--radio-form-text-font-size);
    line-height: var(--radio-form-text-line-height);
    color: var(--radio-form-text-color);
    text-transform: none;
    font-weight: normal;
    margin-bottom: var(--radio-help-text-margin-bottom);
    margin-top: var(--radio-help-text-margin-top)
}

.radio.validation-require .radio--text-require {
    display: block;
    font-size: var(--radio-form-text-font-size);
    color: var(--radio-error-color)
}

.radio.validation-require .radio--text-require .abt-icon {
    font-size: var(--radio-message-icon);
    padding-right: var(--radio-icon-padding-right);
    position: relative;
    top: 1px
}

.radio.validation-require .a-radio-label {
    color: var(--radio-error-color)
}

.radio.validation-require .a-radio__custom {
    outline: 1px solid var(--radio-error-color)
}

.options__asterik-pos--start .a-radio-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.options__asterik-pos--start .a-radio__title-text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.a-options-label--color-alternate .a-radio-label {
    color: var(--radio-label-color)
}

.o-features-card__badge {
    display: none
}

.o-features-card__image {
    margin-bottom: var(--feature-card-margin);
    clear: both
}

.o-features-card__image .cmp-image__image {
    min-height: var(--feature-card-image-min-height);
    max-height: var(--feature-card-image-max-height);
    width: auto
}

.o-features-card__image .a-logo-comp--image {
    min-height: var(--feature-card-image-min-height);
    max-height: var(--feature-card-image-max-height)
}

@media(min-width:768px) {
    .o-features-card__image .a-logo-comp--image {
        max-height: var(--feature-card-image-max-height)
    }
}

@media(max-width:991.98px) {
    .o-features-card__image .a-logo-comp--image {
        max-height: var(--feature-card-image-max-height)
    }
}

@media(max-width:767.98px) {
    .o-features-card__image .a-logo-comp--image {
        max-height: var(--feature-card-image-max-height)
    }
}

.o-features-card__title {
    margin-bottom: var(--feature-card-margin)
}

.o-features-card__number {
    clear: both;
    margin-bottom: var(--feature-card-margin);
    color: var(--feature-card-number-color);
    font-size: var(--feature-card-title-font-size);
    line-height: var(--feature-card-title-line-height)
}

.o-features-card__number h1,
.o-features-card__number h2,
.o-features-card__number h3,
.o-features-card__number h4,
.o-features-card__number h5,
.o-features-card__number h6 {
    font-size: var(--feature-card-title-font-size);
    line-height: var(--feature-card-title-line-height);
    font-family: var(--feature-card-number-font);
    color: var(--feature-card-number-color)
}

.o-features-card__content {
    margin-bottom: var(--feature-card-margin)
}

.o-features-card__content p {
    color: var(--feature-card-para-color);
    font-size: var(--feature-card-para-font-size);
    line-height: var(--feature-card-para-line-height)
}

.o-features-card .a-button {
    display: inline-block
}

@media(max-width:767.98px) {
    .o-features-card .a-button {
        display: block
    }

    .o-features-card .a-button .a-button {
        width: 100%;
        display: block
    }
}

.o-features-card--image .o-features-card__image {
    display: block
}

.o-features-card--image .o-features-card__number {
    display: none
}

.o-features-card--number .o-features-card__image {
    display: none
}

.o-features-card--number .o-features-card__number {
    display: block
}

.o-features-card--badge-top-left .o-features-card__badge {
    display: block;
    float: left
}

.o-features-card--badge-top-right .o-features-card__badge {
    display: block;
    float: right
}

.o-features-card--small {
    background: var(--feature-card-faq-background);
    -webkit-box-shadow: var(--feature-card-faq-box-shadow);
    box-shadow: var(--feature-card-faq-box-shadow);
    height: var(--feature-card-faq-height);
    padding: var(--feature-card-faq-padding);
    width: var(--feature-card-faq-sm-width);
    text-align: center
}

@media(min-width:576px) {
    .o-features-card--small {
        width: var(--feature-card-faq-width)
    }
}

.o-features-card--active.o-features-card--small,
.o-features-card--small:hover {
    background: var(--feature-card-faq-background-hover);
    cursor: pointer
}

.o-features-card--active.o-features-card--small h4,
.o-features-card--small:hover h4 {
    color: var(--feature-card-faq-title-hover-color);
    cursor: pointer;
    font-weight: var(--feature-card-faq-title-hover-font)
}

.o-features-card--small .cmp-image img {
    height: var(--feature-card-faq-img-max-height);
    max-height: var(--feature-card-faq-img-max-height);
    position: relative;
    display: inline
}

.o-features-card--small h4 {
    color: var(--feature-card-faq-title-color);
    margin-top: var(--feature-card-faq-title-margin-top);
    word-break: break-all;
    font-weight: normal
}

@media(max-width:767.98px) {
    .o-features-card .container {
        padding: 0
    }
}

.o-form-container__success-msg {
    font-size: var(--form-container-font-size);
    line-height: var(--form-container-line-height);
    color: var(--form-container-default-fg-color);
    text-transform: uppercase;
    font-weight: bold
}

.o-form-container__error-msg {
    font-size: var(--form-container-font-size);
    line-height: var(--form-container-line-height);
    color: var(--form-container-error-color);
    text-transform: inherit;
    font-weight: normal
}

.o-form-container__error-msg:empty {
    display: none
}

.o-form-container__parent {
    margin: 0
}

.o-form-container__element {
    width: 100%
}

.o-form-container__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media(min-width:576px) {
    .o-form-container__buttons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

@media(max-width:575.98px) {
    .o-form-container__buttons button {
        width: 100%
    }
}

.o-form-container__buttons .a-button {
    margin: 0 var(--form-button-spacer)
}

.o-form-container__loader {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: var(--form-container-checking-address-loader-bg);
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.o-form-container--inline {
    width: 100% !important
}

.o-form-container--inline .container {
    padding: 0 !important
}

.o-form-container--inline .o-form-container__element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.o-form-container--inline .o-form-container__main-form {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

.o-form-container--inline .o-form-container__main-form>div {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto
}

.o-form-container--inline div[class*="msg"] {
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    margin-top: var(--form-container-inline-msg-text-top)
}

.o-form-container--inline .a-input-field {
    margin: 0 var(--form-container-inline-spacing) 0 0 !important
}

.o-form-container--inline .a-button {
    margin: 0 !important
}

.o-form-container--inline .form-label {
    display: none !important
}

.o-form-container--no-help-text .a-input-field--text-help {
    display: none !important
}

.formcontainer-start .o-form-container__parent {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.formcontainer-center .o-form-container__parent {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.formcontainer-end .o-form-container__parent {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.formcontainer-fullwidth .o-form-container__element {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.formcontainer-halfwidth .o-form-container__element {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

@media(max-width:767.98px) {
    .formcontainer-halfwidth .o-form-container__element {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.formcontainerbuttons-left .o-form-container__buttons {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.formcontainerbuttons-center .o-form-container__buttons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.formcontainerbuttons-right .o-form-container__buttons {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.a-link {
    font-family: var(--link-font-family);
    font-size: var(--link-font-size);
    font-weight: bold;
    line-height: var(--link-line-height);
    display: inline-block;
    color: var(--link-color);
    cursor: pointer
}

.a-link .abt-icon {
    font-size: var(--link-icon-size);
    color: var(--link-icon-color);
    position: relative;
    top: 5px
}

.a-link__text {
    display: inline-block
}

.a-link__text:hover .abt-icon {
    text-decoration: none
}

.a-link__text:focus {
    color: var(--link-focus-color)
}

.a-link__text:active {
    color: var(--link-active-color)
}

.a-link--icon {
    font-weight: normal
}

.a-link--icon .a-link__text--has-icon {
    padding-left: var(--link-padding-left);
    position: relative
}

.a-link--icon .a-link__text .abt-icon {
    margin-left: var(--link-icon-margin-left);
    position: absolute;
    left: 0;
    top: 0
}

.a-link--icon-left .a-link__text {
    position: relative
}

@media(min-width:992px) {
    .a-link--icon-left .a-link__text--has-icon {
        padding-left: var(--link-padding-left)
    }
}

.a-link--icon-left .a-link__text .abt-icon {
    position: absolute;
    left: 0;
    top: 0
}

.a-link--icon-right .a-link__text {
    position: relative;
    padding-right: var(--link-padding-right)
}

.a-link--icon-right .a-link__text .abt-icon {
    position: absolute;
    right: 0;
    top: 0
}

.m-link-stack--header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.m-link-stack--header .abt-icon-arrow-down {
    font-size: var(--link-stack-icon-font-size)
}

@media(min-width:992px) {
    .m-link-stack--header .abt-icon-arrow-down {
        display: none
    }
}

@media(max-width:1199.98px) {
    .m-link-stack--header .js-collapse-icon {
        -webkit-transition: all ease .5s;
        transition: all ease .5s
    }

    .m-link-stack--header .js-collapse-icon.rotate-upside {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        -webkit-transition: all ease .5s;
        transition: all ease .5s
    }
}

.m-link-stack .a-link {
    display: block
}

.m-link-stack a {
    color: var(--link-stack-color);
    text-decoration: none
}

.m-link-stack a:active,
.m-link-stack a:focus,
.m-link-stack a:hover {
    color: var(--link-stack-color);
    text-decoration: none
}

.m-link-stack a:focus-visible {
    outline: var(--link-stack-outline-color)
}

.m-link-stack h6 {
    letter-spacing: .6px;
    font-size: var(--link-stack-h6-font-size);
    line-height: var(--link-stack-h6-line-height);
    color: var(--link-stack-h6-color);
    text-transform: uppercase;
    font-weight: bold
}

.m-link-stack--content {
    padding: var(--link-stack-content-padding);
    margin-bottom: 0
}

@media(min-width:992px) {
    .m-link-stack--content {
        padding-left: 0
    }

    .m-link-stack--content.collapse,
    .m-link-stack--content.collapse:not(.show) {
        display: block
    }
}

@media(max-width:991.98px) {
    .m-link-stack--content {
        padding-top: var(--link-stack-tablet-spacing-top)
    }
}

.m-link-stack--content .button-modal-header,
.m-link-stack--content .button-modal-body {
    color: var(--link-stack-modal-color)
}

.m-link-stack--content .button-modal-body .a-link__text {
    color: var(--link-stack-modal-link-color)
}

.m-link-stack__country-select .m-link-stack__title {
    padding: var(--country-select-title-padding)
}

@media(max-width:991.98px) {
    .m-link-stack__country-select .m-link-stack__title {
        padding: var(--country-select-title-tablet-padding)
    }
}

.m-link-stack__country-select .m-link-stack__smart-search {
    font-size: var(--link-stack-smart-search-font-size);
    position: relative
}

.m-link-stack__country-select .m-link-stack__smart-search .icon {
    font-size: var(--country-select-icon-font-size);
    position: absolute;
    z-index: 3;
    top: var(--country-select-icon-top);
    right: 0;
    left: var(--country-select-icon-left);
    width: var(--country-select-icon-width)
}

@media(max-width:991.98px) {
    .m-link-stack__country-select .m-link-stack__smart-search .icon {
        top: var(--country-select-icon-tablet-top)
    }
}

.m-link-stack__country-select ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.m-link-stack__country-select ul li .a-link__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.m-link-stack__country-select ul .m-link-stack__lang {
    color: var(--link-stack-lang-color);
    margin: var(--country-select-language-margin);
    text-transform: uppercase
}

.m-link-stack__countrylang--select .m-link-stack__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-link-stack__countrylang--select .m-link-stack__link img {
    width: 31px;
    height: 21px;
    margin-right: 10px
}

.m-link-stack__countrylang--select .m-link-stack__link .flag-icon {
    margin-right: 4px;
    position: relative;
    top: -1px
}

.m-link-stack__countrylang--select .m-link-stack__link .a-link__text--primary-country {
    margin-right: 6px;
    vertical-align: middle
}

.m-link-stack__countrylang--select .m-link-stack__link .a-link__text--primary-lang {
    text-transform: uppercase;
    vertical-align: middle;
    padding-left: 5px
}

.m-link-stack__countrylang--select .m-link-stack__link .abt-icon.abt-icon-down-arrow {
    top: 3px
}

.m-link-stack__countrylang--select .m-link-stack__country-header {
    padding: 24px 24px 16px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-link-stack__countrylang--select .m-link-stack__country-header__title {
    width: 175px;
    margin-left: 2.5rem
}

@media(max-width:991.98px) {
    .m-link-stack__countrylang--select .m-link-stack__country-header__title {
        width: 187px
    }
}

.m-link-stack__countrylang--select .m-link-stack__country-header__language,
.m-link-stack__countrylang--select .m-link-stack__country-header .m-link-stack__country-lang {
    display: inline-block;
    margin: 0 0 0 16px !important
}

@media(max-width:991.98px) {

    .m-link-stack__countrylang--select .m-link-stack__country-header__language,
    .m-link-stack__countrylang--select .m-link-stack__country-header .m-link-stack__country-lang {
        margin: 0 !important
    }
}

.m-link-stack__countrylang--select .m-link-stack__country-header__language,
.m-link-stack__countrylang--select .m-link-stack__country-header__title {
    font-weight: bold;
    font-size: 1rem
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper {
    -webkit-box-shadow: 0 2px 4px 0 rgba(34, 39, 49, 0.25);
    box-shadow: 0 2px 4px 0 rgba(34, 39, 49, 0.25);
    width: 243px;
    max-height: 310px
}

@media(max-width:991.98px) {
    .m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper {
        -webkit-box-shadow: none;
        box-shadow: none;
        width: 100% !important
    }
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper ul {
    margin-top: 0
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper ul li {
    padding: 0 !important
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper ul li img {
    width: 31px;
    height: 21px;
    margin-right: 16px
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper ul li img[src=""] {
    visibility: hidden
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper ul li .a-link__text {
    padding: 10px 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper ul li .a-link__text .m-link-stack__country-name {
    display: inline-block;
    width: 92px;
    margin-left: .25rem;
    vertical-align: middle
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper ul li .a-link__text .m-link-stack__country-lang {
    margin: 0;
    width: calc(100% - 136px);
    display: inline-block;
    vertical-align: middle
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper ul li:hover {
    background-color: var(--link-stack-link-bg-color-hover)
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper ul li:hover .a-link__text {
    color: var(--header-dropdown-link-color) !important;
    font-family: var(--link-stack-heading-font-family)
}

@media(min-width:992px) {
    .m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper .m-link-stack__country-lang {
        text-align: center
    }
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper #m-link-stack__search-bar input[type="search"] {
    max-width: 100%
}

.m-link-stack__countrylang--select .m-link-stack__dropdown-wrapper .m-link-stack__container {
    max-height: 310px
}

.m-link-stack .m-link-stack__search-bar .a-input-label,
.m-link-stack .m-link-stack__search-bar .form-text {
    display: none
}

.m-link-stack .m-link-stack__search-bar input[type="search"] {
    padding: var(--country-select-input-search-padding);
    width: 100%
}

@media(min-width:992px) {
    .m-link-stack .m-link-stack__search-bar input[type="search"] {
        max-width: var(--country-select-input-search-desktop-max-width)
    }
}

@media(max-width:991.98px) {
    .m-link-stack .m-link-stack__search-bar input[type="search"] {
        margin: var(--link-stack-tablet-spacing-top) 0 .25rem 0
    }
}

.m-link-stack .m-link-stack__search-bar input[type="search"]:focus {
    border-color: inherit;
    outline: 0
}

.m-link-stack--dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

@media(max-width:991.98px) {
    .m-link-stack--dropdown {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media(max-width:767.98px) {
    .m-link-stack--border::before {
        content: "";
        display: inline-block;
        width: var(--link-stack-border-width);
        height: 100%;
        max-height: 100%;
        position: absolute;
        z-index: 2;
        top: 0;
        left: -1rem;
        background: var(--link-stack-search-bar-border-background);
        padding: 0
    }
}

@media(max-width:767.98px) {
    .m-link-stack__link {
        width: 100%
    }
}

.m-link-stack__link .a-link--icon-right,
.m-link-stack__link .a-link__text,
.m-link-stack__link .a-link .abt-icon::before {
    margin: 0
}

@media(max-width:767.98px) {
    .m-link-stack__link .a-link {
        width: 100%
    }

    .m-link-stack__link .a-link--icon-right,
    .m-link-stack__link .a-link__text,
    .m-link-stack__link .a-link .abt-icon::before {
        margin: 0
    }
}

@media(min-width:768px) and (max-width:991.98px) {
    .m-link-stack__link .a-link__text {
        width: 100%
    }
}

.m-link-stack__link .a-link a {
    color: var(--link-stack-link-color);
    text-decoration: none;
    font-weight: normal
}

@media(max-width:767.98px) {
    .m-link-stack__link .a-link a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .m-link-stack__link .a-link a.active {
        font-weight: bold
    }
}

@media(min-width:992px) {
    .m-link-stack__link .a-link a {
        font-size: var(--link-stack-h6-font-size);
        line-height: var(--link-stack-h6-line-height);
        color: var(--link-stack-link-color-lg);
        -webkit-transition: all ease .5s;
        transition: all ease .5s
    }
}

.m-link-stack__link .a-link a .rotate-upside {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all ease .5s;
    transition: all ease .5s
}

.m-link-stack__link .a-link .abt-icon {
    font-size: var(--link-stack-icon-font-size-sm);
    right: -8px;
    top: 2px;
    -webkit-transition: all ease .5s;
    transition: all ease .5s
}

@media(min-width:992px) {
    .m-link-stack__dropdown-wrapper {
        -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.34);
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.34);
        border: 0;
        border-radius: 0;
        width: var(--link-stack-dropdown-desktop-width);
        max-height: var(--link-stack-dropdown-desktop-max-height);
        padding: 0;
        margin: var(--link-stack-dropdown-margin);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background: var(--link-stack-dropdown-bg-color);
        position: absolute;
        top: var(--link-stack-dropdown-desktop-top)
    }

    .m-link-stack__dropdown-wrapper::before {
        content: "";
        border: 7px solid var(--link-stack-dropdown-bg-color);
        border-color: transparent transparent var(--link-stack-dropdown-bg-color) var(--link-stack-dropdown-bg-color);
        width: 0;
        height: 0;
        position: absolute;
        top: -0.3125rem;
        right: 13%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transform-origin: "0 0";
        transform-origin: "0 0";
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
        -webkit-box-shadow: -2px 2px 3px -2px rgba(0, 0, 0, 0.34);
        box-shadow: -2px 2px 3px -2px rgba(0, 0, 0, 0.34)
    }
}

.m-link-stack__container {
    max-height: var(--link-stack-dropdown-desktop-max-height);
    overflow-y: auto
}

@media(max-width:991.98px) {
    .m-link-stack__container {
        padding-right: var(--link-stack-container-padding-right)
    }
}

.m-link-stack__container::-webkit-scrollbar-track {
    border-radius: var(--link-stack-scrollbar-border-radius);
    border: 1px solid var(--link-stack-container-track-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: var(--link-stack-scrollbar-tablet-width)
}

.m-link-stack__container::-webkit-scrollbar {
    width: var(--link-stack-scrollbar-tablet-width);
    background-color: var(--link-stack-container-scroll-bar)
}

.m-link-stack__container::-webkit-scrollbar-thumb {
    width: var(--link-stack-scrollbar-border-radius);
    border-radius: .1875rem;
    background-color: var(--link-stack-container-track-color)
}

@media(min-width:992px) {
    .m-link-stack__container::-webkit-scrollbar-track {
        width: var(--link-stack-scrollbar-desktop-width)
    }

    .m-link-stack__container::-webkit-scrollbar {
        width: var(--link-stack-scrollbar-desktop-width)
    }

    .m-link-stack__container::-webkit-scrollbar-thumb {
        width: var(--link-stack-scrollbar-tablet-width)
    }
}

.m-link-stack__title h4 {
    padding: var(--link-stack-spacer-l) var(--link-stack-spacer-lg) 0 var(--link-stack-spacer-lg);
    line-height: var(--link-stack-spacer-lg);
    border: 0
}

.m-link-stack__list {
    padding: 0;
    list-style: none;
    margin-top: var(--link-stack-spacer-sm)
}

.m-link-stack__list li {
    padding: var(--link-stack-spacer-xs1) var(--link-stack-spacer-lg)
}

.m-link-stack__list li .a-link {
    width: 100%
}

.m-link-stack__list li .a-link a {
    font-size: var(--link-stack-list-font-size);
    line-height: var(--link-stack-list-line-height);
    color: var(--link-stack-link-color);
    text-transform: var(--link-stack-base-font-family);
    font-weight: normal;
    width: 100%
}

@media(max-width:991.98px) {
    .m-link-stack__list li .a-link a {
        font-size: var(--link-stack-smart-search-font-size)
    }
}

.m-link-stack__list li .a-link a:hover {
    text-decoration: none
}

.m-link-stack__list li:focus,
.m-link-stack__list li:hover {
    background: transparent
}

@media(min-width:992px) {

    .m-link-stack__list li:focus,
    .m-link-stack__list li:hover {
        color: var(--link-stack-link-color);
        background-color: var(--link-stack-list-focus-bg-color)
    }
}

.m-link-stack__list li:active {
    color: var(--link-stack-link-color);
    font-weight: bold;
    background: transparent
}

@media(min-width:992px) {
    .m-link-stack__list li:active {
        font-weight: normal;
        background-color: var(--link-stack-list-active-bg-color)
    }
}

.m-link-stack-faq {
    margin: var(--link-stack-spacer-lg) var(--link-stack-spacer-xxs)
}

.m-link-stack-faq h6 {
    font-size: var(--link-stack-h6-font-size);
    line-height: var(--link-stack-h6-line-height);
    color: var(--link-stack-link-color);
    text-transform: initial;
    font-weight: bold;
    margin: var(--country-select-icon-width) 0
}

.m-link-stack-faq .m-link-stack--content {
    padding: var(--link-stack-spacer-xs) 0 var(--link-stack-spacer-s)
}

@media(max-width:767.98px) {
    .m-link-stack-faq .m-link-stack--content {
        font-family: var(--link-stack-base-font-family);
        font-size: var(--link-stack-smart-search-font-size);
        font-weight: normal;
        line-height: var(--link-stack-list-line-height);
        background: var(--link-stack-dropdown-bg-color);
        border-radius: 4px;
        -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28);
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28);
        left: 0;
        max-height: 182px;
        overflow-y: auto;
        padding: 0;
        position: absolute;
        top: var(--link-stack-content-top);
        width: 100%;
        z-index: 1
    }

    .m-link-stack-faq .m-link-stack--content::-webkit-scrollbar {
        width: var(--link-stack-scrollbar-desktop-width)
    }

    .m-link-stack-faq .m-link-stack--content::-webkit-scrollbar-track {
        border: 1px solid var(--link-stack-container-thumb-color);
        border-radius: var(--link-stack-scrollbar-border-radius)
    }

    .m-link-stack-faq .m-link-stack--content::-webkit-scrollbar-thumb {
        background: var(--link-stack-container-thumb-color);
        border-radius: 10px
    }
}

@media(max-width:767.98px) {
    .m-link-stack-faq .m-link-stack--dropdown {
        background: var(--link-stack-dropdown-bg-color);
        border: 1px solid var(--link-stack-dropdown-border);
        border-radius: var(--link-stack-dropdown-mobile-border-radius);
        min-height: var(--link-stack-spacer-xl);
        padding: var(--link-stack-spacer-sm) var(--link-stack-spacer-xl) var(--link-stack-spacer-md) var(--link-stack-spacer-s);
        position: relative;
        width: 100%
    }

    .m-link-stack-faq .m-link-stack--dropdown::after {
        content: "";
        background-repeat: no-repeat;
        height: 9px;
        position: absolute;
        right: var(--link-stack-spacer-s);
        top: var(--link-stack-spacer-m);
        width: var(--link-stack-spacer-s)
    }
}

.m-link-stack-faq .m-link-stack--dropdown-value {
    display: none
}

@media(max-width:767.98px) {
    .m-link-stack-faq .m-link-stack--dropdown-value {
        display: block
    }
}

.m-link-stack-faq .m-link-stack--truncate a {
    margin-bottom: var(--link-stack-spacer-s);
    font-size: var(--link-stack-list-font-size);
    line-height: var(--link-stack-list-line-height);
    color: var(--link-stack-truncate-text-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: .25rem;
    -moz-column-gap: .25rem;
    column-gap: .25rem;
    cursor: pointer
}

.m-link-stack-faq .m-link-stack--truncate a .abt-icon {
    font-size: var(--link-stack-icon-font-size-sm)
}

.m-link-stack-faq .m-link-stack--truncation .m-link-stack--content {
    padding-bottom: var(--link-stack-spacer-xxs)
}

@media(max-width:767.98px) {
    .m-link-stack-faq .m-link-stack-faq--wrapper .m-link-stack--dropdown::after {
        font-family: var(--link-stack-truncate-icon-font);
        content: "\e907";
        top: inherit
    }

    .m-link-stack-faq .m-link-stack-faq--wrapper .m-link-stack--dropdown-open::after {
        content: "\e917"
    }
}

.m-link-stack-faq .a-link {
    padding: var(--link-stack-spacer-xxs) 0 var(--link-stack-spacer-xxs)
}

@media(max-width:767.98px) {
    .m-link-stack-faq .a-link {
        border-bottom: 1px solid var(--link-stack-link-border-bottom-color);
        padding: var(--link-stack-spacer-sm) var(--link-stack-spacer-s) var(--link-stack-spacer-md)
    }
}

.m-link-stack-faq .a-link__text {
    font-size: var(--link-stack-list-font-size);
    line-height: var(--link-stack-list-line-height);
    color: var(--link-stack-link-color);
    text-transform: var(--link-stack-base-font-family);
    font-weight: normal
}

@media(max-width:767.98px) {
    .m-link-stack-faq .a-link__text {
        font-size: var(--link-stack-smart-search-font-size);
        line-height: var(--link-stack-list-line-height);
        color: var(--link-stack-link-color);
        text-transform: var(--link-stack-base-font-family);
        font-weight: normal;
        display: block
    }
}

.m-link-stack-faq .a-link__text:hover,
.m-link-stack-faq .a-link__text:active,
.m-link-stack-faq .a-link__text:focus {
    font-size: var(--link-stack-smart-search-font-size);
    line-height: var(--link-stack-list-line-height);
    color: var(--link-stack-link-color);
    text-transform: var(--link-stack-base-font-family);
    font-weight: normal
}

@media(min-width:768px) {

    .m-link-stack-faq .a-link__text:hover,
    .m-link-stack-faq .a-link__text:active,
    .m-link-stack-faq .a-link__text:focus {
        font-size: var(--link-stack-list-font-size);
        line-height: var(--link-stack-list-line-height);
        color: var(--link-stack-link-color-hover);
        text-transform: var(--link-stack-base-font-family);
        font-weight: bold;
        text-decoration: underline
    }
}

.m-link-stack-faq .a-link__text--active {
    font-size: var(--link-stack-smart-search-font-size);
    line-height: var(--link-stack-list-line-height);
    color: var(--link-stack-link-color);
    text-transform: var(--link-stack-base-font-family);
    font-weight: normal
}

@media(min-width:768px) {
    .m-link-stack-faq .a-link__text--active {
        font-size: var(--link-stack-list-font-size);
        line-height: var(--link-stack-list-line-height);
        color: var(--link-stack-link-color-hover);
        text-transform: var(--link-stack-base-font-family);
        font-weight: bold;
        text-decoration: none
    }
}

.m-link-stack-faq .faq-link {
    list-style: none
}

.m-link-stack-sticky {
    background-color: var(--link-stack-sticky-bg);
    height: var(--link-stack-sticky-height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

@media(min-width:992px) {
    .m-link-stack-sticky {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0
    }

    .m-link-stack-sticky .a-button {
        margin: var(--link-stack-sticky-margin-button)
    }

    .m-link-stack-sticky .a-button .btn {
        min-width: 173px
    }
}

@media(max-width:991.98px) {
    .m-link-stack-sticky .button {
        height: var(--link-stack-sticky-height-button-bp)
    }

    .m-link-stack-sticky .button .btn {
        line-height: var(--link-stack-sticky-line-height)
    }
}

.m-link-stack-sticky>.container {
    position: relative
}

.m-link-stack-sticky__row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(max-width:991.98px) {
    .m-link-stack-sticky__row {
        padding: var(--link-stack-sticky-row-padding)
    }
}

.m-link-stack-sticky__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.m-link-stack-sticky__header .arrow-rotated-up {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.m-link-stack-sticky__header .dropdown {
    width: var(--link-stack-sticky-dropdow-width);
    height: var(--link-stack-sticky-dropdow-height);
    -webkit-transition: all ease-in-out .5s;
    transition: all ease-in-out .5s
}

.m-link-stack-sticky__header .m-link-stack--title {
    color: var(--link-stack-sticky-color)
}

@media(min-width:992px) {
    .m-link-stack-sticky__header {
        display: none
    }
}

.m-link-stack-sticky__header-title {
    color: var(--link-stack-sticky-color)
}

.m-link-stack-sticky__header-icon {
    color: var(--link-stack-sticky-header-icon-color) !important;
    margin-left: var(--link-stack-sticky-header-icon-margin-left)
}

.m-link-stack-sticky__content {
    padding: 0
}

.m-link-stack-sticky__content .m-link-stack-sticky__option {
    list-style: none;
    margin-left: auto;
    margin-right: auto
}

@media(max-width:991.98px) {
    .m-link-stack-sticky__content .m-link-stack-sticky__option:hover {
        background-color: var(--link-stack-sticky-action)
    }
}

.m-link-stack-sticky__option .a-link__text {
    display: block;
    height: auto;
    color: var(--link-stack-sticky-color);
    padding: var(--link-stack-sticky-option-padding)
}

.m-link-stack-sticky__option .a-link__text:hover,
.m-link-stack-sticky__option .a-link__text:focus {
    color: var(--link-stack-sticky-color-hover)
}

@media(min-width:992px) {
    .m-link-stack-sticky__option .a-link__text {
        text-transform: uppercase;
        padding: var(--link-stack-sticky-option-padding-bp)
    }

    .m-link-stack-sticky__option .a-link__text:hover,
    .m-link-stack-sticky__option .a-link__text:focus {
        color: var(--link-stack-sticky-option-md-hover-color)
    }
}

.m-link-stack-sticky.sticky {
    position: static !important;
    height: var(--link-stack-sticky-sticky-height)
}

.m-link-stack-sticky.sticky .button {
    height: var(--link-stack-sticky-sticky-button-height)
}

.m-link-stack-sticky.sticky .button .btn {
    line-height: var(--link-stack-sticky-sticky-button-line-height)
}

.m-link-stack-sticky--sticky .m-link-stack-sticky__content {
    background-color: var(--link-stack-sticky-option-bg);
    -webkit-box-shadow: var(--link-stack-sticky-sticky-box-shadow);
    box-shadow: var(--link-stack-sticky-sticky-box-shadow);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: var(--link-stack-sticky-border);
    border-radius: var(--link-stack-sticky-sticky-menu-border-radius);
    position: absolute;
    top: var(--link-stack-sticky-sticky-menu-position-top);
    left: var(--link-stack-sticky-sticky-menu-position-left);
    z-index: 1;
    min-width: var(--link-stack-sticky-sticky-menu-min-width)
}

@media(min-width:992px) {
    .m-link-stack-sticky--sticky .m-link-stack-sticky__content {
        background-color: var(--link-stack-sticky-bg);
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        margin: 0;
        position: static
    }

    .m-link-stack-sticky--sticky .m-link-stack-sticky__content.d-none {
        display: block !important
    }
}

@media(min-width:992px) {
    .m-link-stack-sticky--sticky .m-link-stack-sticky__option {
        display: inline-block;
        vertical-align: middle
    }

    .m-link-stack-sticky--sticky .m-link-stack-sticky__option:first-child .a-link__text {
        padding-left: 0
    }
}

.m-link-stack-sticky--vertical {
    display: block;
    background: transparent;
    height: auto;
    margin-bottom: var(--link-stack-sticky-vertical-margin-bottom)
}

.m-link-stack-sticky--vertical .m-link-stack-sticky__header {
    display: none
}

.m-link-stack-sticky--vertical .m-link-stack-sticky__content {
    display: block !important
}

@media(min-width:992px) {
    .align-items-lg-center .m-link-stack {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media(min-width:992px) {
    .align-items-lg-start .m-link-stack {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

@media(min-width:992px) {
    .align-items-lg-end .m-link-stack {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

.link-stack-header h6.m-link-stack--title {
    color: var(--link-stack-link-color);
    text-transform: none;
    font-weight: normal;
    margin: 0
}

.edit-langnav {
    min-width: 150px
}

.edit-search {
    width: 100px
}

.edit-search .a-search {
    left: 0 !important
}

.m-mega-menu__mobile {
    position: relative;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28)
}

.m-mega-menu__mobile-item-wrapper {
    position: static
}

@media(min-width:992px) {
    .m-mega-menu__mobile-item-wrapper {
        padding-top: 13px;
        margin-right: 32px;
        cursor: pointer;
        border-bottom: 5px solid transparent
    }
}

@media(min-width:992px) {
    .m-mega-menu__mobile-item-wrapper:hover {
        border-bottom: var(--mega-menu-border-hover)
    }
}

.m-mega-menu__mobile-item-wrapper:last-child {
    padding-right: 0
}

@media(min-width:992px) {
    .m-mega-menu__mobile-item-wrapper--underline {
        border-color: var(--mega-menu-link-color)
    }
}

.m-mega-menu__mobile-products {
    padding-left: 16px
}

.m-mega-menu__mobile-dropdowns,
.m-mega-menu__mobile-item-wrapper .linkstack {
    border-top: 1px solid var(--mega-menu-dropdown-border-color)
}

.m-mega-menu__mobile .menu-active {
    position: relative
}

.m-mega-menu__mobile .menu-active::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 100%;
    max-height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: -8px;
    background-color: var(--mega-menu-mobile-active-bg-color);
    padding: 0
}

@media(min-width:992px) {
    .m-mega-menu__mobile .menu-active::before {
        background-color: transparent
    }
}

.m-mega-menu__mobile .mega-top-menu__text-none .navbar-nav .nav-link {
    text-transform: none
}

.m-mega-menu__mobile .mega-top-menu__text-none .a-button .btn {
    text-transform: none
}

.m-mega-menu__mobile .mega-top-menu__text-uppercase .m-mega-menu__mobile-header {
    text-transform: uppercase
}

.m-mega-menu__mobile .navbar {
    background-color: var(--mega-menu-mob-bg);
    height: 48px;
    padding: var(--mega-menu-navbar-padding)
}

@media(min-width:992px) {
    .m-mega-menu__mobile .navbar {
        height: auto;
        min-height: 44px
    }
}

@media(max-width:767.98px) {
    .m-mega-menu__mobile .navbar {
        height: 40px
    }
}

.m-mega-menu__mobile .navbar a {
    text-decoration: none
}

@media(max-width:767.98px) {
    .m-mega-menu__mobile .navbar {
        background-color: var(--mega-menu-mobile-active-bg-color);
        padding-left: var(--mega-menu-nav-padding-left)
    }
}

@media(min-width:768px) and (max-width:991.98px) {
    .m-mega-menu__mobile .navbar {
        padding-left: var(--mega-menu-nav-padding-tab)
    }
}

.m-mega-menu__mobile .navbar .navbar-toggler {
    border: 0;
    outline: 0;
    padding: .125rem .3125rem;
    height: var(--mega-menu-hamburger)
}

.m-mega-menu__mobile .navbar .navbar-toggler.abt-icon-cancel .abt-icon-hamburger {
    display: none
}

.m-mega-menu__mobile .navbar .close-icon .navbar-toggler-icon {
    width: var(--mega-menu-nav-padding-left);
    height: var(--mega-menu-nav-padding-left)
}

@media(max-width:991.98px) {
    .m-mega-menu__mobile .navbar .navbar-collapse {
        position: absolute;
        z-index: 999;
        top: 0;
        left: 49px;
        display: none;
        width: calc(100% - 49px);
        height: auto;
        background: var(--mega-menu-mob-bg);
        -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24);
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24)
    }
}

@media(max-width:991.98px) {
    .m-mega-menu__mobile .navbar .navbar-collapse-wrapper {
        overflow-y: auto;
        padding-right: var(--mega-menu-navbar-wrapper-md)
    }
}

@media(max-width:991.98px) {
    .m-mega-menu__mobile .navbar-nav {
        padding: var(--mega-menu-nav-md)
    }
}

.m-mega-menu__mobile .navbar-nav .nav-link {
    font-size: var(--mega-menu-list-font-size);
    line-height: var(--mega-menu-list-line-height);
    color: var(--mega-menu-link-color);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: var(--mega-menu-link-letter-spacing);
    padding: 0 0 6px 0
}

.m-mega-menu__mobile .menu-body {
    padding-left: var(--mega-menu-nav-padding-left)
}

.m-mega-menu__mobile-submenu-body {
    padding: 0 var(--mega-menu-nav-padding-left)
}

.m-mega-menu__mobile-item {
    font-size: var(--mega-menu-list-font-size);
    line-height: var(--mega-menu-list-line-height)
}

@media(max-width:991.98px) {
    .m-mega-menu__mobile-item-link {
        display: block;
        padding: var(--mega-menu-mobile-item);
        font-size: var(--mega-menu-list-font-size);
        line-height: var(--mega-menu-list-line-height);
        color: var(--mega-menu-color);
        text-transform: capitalize;
        font-weight: normal
    }

    .m-mega-menu__mobile-item-link:hover,
    .m-mega-menu__mobile-item-link:focus {
        color: inherit
    }

    .m-mega-menu__mobile-item-link:active {
        font-weight: bold
    }
}

.m-mega-menu__mobile-header,
.m-mega-menu__mobile-sub-head,
.m-mega-menu__mobile-buy-now {
    padding: var(--mega-menu-mobile-item);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: var(--mega-menu-list-font-size);
    line-height: var(--mega-menu-list-line-height);
    color: var(--mega-menu-color);
    text-transform: capitalize;
    font-weight: normal;
    position: relative
}

.m-mega-menu__mobile-header:hover,
.m-mega-menu__mobile-header:focus,
.m-mega-menu__mobile-sub-head:hover,
.m-mega-menu__mobile-sub-head:focus,
.m-mega-menu__mobile-buy-now:hover,
.m-mega-menu__mobile-buy-now:focus {
    color: inherit
}

.m-mega-menu__mobile-header.active,
.m-mega-menu__mobile-sub-head.active,
.m-mega-menu__mobile-buy-now.active {
    font-weight: bold
}

.m-mega-menu__mobile-header.active::after,
.m-mega-menu__mobile-sub-head.active::after,
.m-mega-menu__mobile-buy-now.active::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.m-mega-menu__mobile-header::after,
.m-mega-menu__mobile-sub-head::after,
.m-mega-menu__mobile-buy-now::after {
    content: "\e907";
    width: var(--mega-menu-nav-padding-left);
    font-size: var(--mega-menu-nav-padding-left);
    font-family: var(--mega-menu-icon-font-family) !important;
    color: var(--mega-menu-icon-color);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    display: inline-block;
    position: absolute;
    right: 8px
}

.m-mega-menu__mobile-buy-now.active {
    font-weight: bold
}

.m-mega-menu__mobile-buy-now::after {
    content: "";
    background: 0
}

.m-mega-menu__mobile-sub-head.active {
    font-weight: bold
}

.m-mega-menu__mobile-sub-head.active::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

@media(max-width:991.98px) {
    .m-mega-menu__mobile__country-select ul li {
        padding: var(--mega-menu-padding-half) var(--mega-menu-nav-padding-tab)
    }
}

@media(max-width:991.98px) {
    .m-mega-menu__mobile__country-select ul li a {
        font-size: var(--mega-menu-list-font-size)
    }
}

.m-mega-menu__mobile .m-link-stack {
    font-size: var(--mega-menu-list-font-size);
    padding: .9375rem .5rem .8125rem 1rem
}

.m-mega-menu__mobile .m-link-stack h4 {
    padding-left: 0
}

@media(max-width:991.98px) {
    .m-mega-menu__mobile .m-link-stack h4 {
        padding: var(--mega-menu-padding-quarter) 0
    }
}

@media(max-width:991.98px) {
    .m-mega-menu__mobile .m-link-stack--dropdown .m-link-stack__list li {
        padding: var(--mega-menu-padding-half) var(--mega-menu-padding-quarter)
    }
}

.m-mega-menu__mobile .m-mega-menu__default {
    display: none;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 20px
}

.m-mega-menu__mobile .m-mega-menu__list-var {
    display: none;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 0
}

.m-mega-menu__mobile .m-mega-menu__nested-menu {
    display: none;
    position: absolute;
    z-index: 1;
    top: 100%;
    left: auto
}

.m-mega-menu__mobile .link {
    font-size: var(--mega-menu-list-font-size);
    line-height: var(--mega-menu-list-line-height);
    color: var(--mega-menu-link-color);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: var(--mega-menu-link-letter-spacing);
    padding: 0 0 6px 0
}

@media(max-width:991.98px) {
    .m-mega-menu__mobile .link {
        padding: var(--mega-menu-mobile-item);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: var(--mega-menu-list-font-size);
        line-height: var(--mega-menu-list-line-height);
        color: var(--mega-menu-color);
        text-transform: capitalize;
        font-weight: normal
    }
}

.m-mega-menu__mobile .link .a-link__text {
    color: var(--mega-menu-link-color)
}

@media(max-width:991.98px) {
    .m-mega-menu__mobile .link .a-link__text {
        color: var(--mega-menu-color)
    }
}

@media(min-width:992px) {
    .hide-lg-country .m-mega-menu__mobile-item-wrapper .linkstack {
        display: none
    }

    .hide-lg-language .m-mega-menu__mobile-item-wrapper .languagenavigation {
        display: none
    }
}

.m-mega-menu__mobile-item-wrapper .m-link-stack__link .a-link,
.m-mega-menu__mobile-item-wrapper .m-link-stack__link .a-link__text {
    margin: 0
}

.m-mega-menu__mobile-item-wrapper .m-link-stack__link .a-link .abt-icon,
.m-mega-menu__mobile-item-wrapper .m-link-stack__link .a-link__text .abt-icon {
    right: 0
}

.m-mega-menu__mobile-item-wrapper .m-link-stack__link .a-link .abt-icon:before,
.m-mega-menu__mobile-item-wrapper .m-link-stack__link .a-link__text .abt-icon:before {
    margin: 0
}

.m-mega-menu__mobile-item-wrapper .languagenavigation .m-link-stack__container {
    margin-top: 1rem
}

.m-mega-menu__mobile-item-wrapper .languagenavigation .a-input-field {
    margin: 0
}

.m-mega-menu__mobile-item-wrapper .linkstack .m-link-stack__container {
    padding-top: 24px
}

.m-mega-menu__default {
    left: 0 !important
}

.m-mega-menu__default-badge {
    display: inline-block;
    position: absolute;
    z-index: 1
}

.m-mega-menu__default-badge.m-mega-menu--top-left {
    top: var(--mega-menu-badge-pos);
    left: var(--mega-menu-badge-pos)
}

.m-mega-menu__default-badge.m-mega-menu--top-right {
    top: var(--mega-menu-badge-pos);
    right: var(--mega-menu-badge-pos)
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper {
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-width: var(--mega-menu-min-width);
    width: var(--mega-menu-wrapper-width);
    max-width: var(--mega-menu-wrapper-width);
    background-color: var(--mega-menu-mob-bg);
    padding: var(--mega-menu-variation-1-wrapper);
    min-height: var(--mega-menu-min-height)
}

@media(max-width:991.98px) {
    .m-mega-menu__default .m-mega-menu__nested-menu-wrapper {
        display: none
    }
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack {
    min-width: auto;
    width: 16rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-top: 0
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack .a-link {
    border-top: 1px solid var(--mega-menu-dropdown-border-color);
    color: var(--mega-menu-color);
    padding: var(--mega-menu-link-padding)
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack .a-link:active,
.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack .a-link:hover,
.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack .a-link:focus {
    color: var(--mega-menu-color)
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack .a-link:first-child {
    border: 0
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack .a-link__text {
    font-size: var(--mega-menu-list-font-size);
    line-height: var(--mega-menu-list-line-height);
    color: var(--mega-menu-color);
    text-transform: capitalize;
    font-weight: normal;
    width: 100%
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack .a-link__text:hover {
    color: var(--mega-menu-color)
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list {
    min-width: var(--mega-menu-img-list);
    max-width: var(--mega-menu-img-list-width);
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: var(--mega-menu-nav-padding-left) var(--mega-menu-nav-padding-left) var(--mega-menu-navbar-wrapper-md) var(--mega-menu-variation-1-top);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: auto
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: var(--mega-menu-nav-item);
    max-width: var(--mega-menu-nav-item);
    padding: 0
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item:hover,
.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item:focus,
.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item:active {
    background-color: var(--mega-menu-mob-bg)
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item:hover .m-mega-menu__item-info,
.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item:focus .m-mega-menu__item-info,
.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item:active .m-mega-menu__item-info {
    background-color: var(--mega-menu-mobile-active-bg-color)
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item .m-mega-menu__item-info {
    font-size: 1rem;
    line-height: var(--mega-menu-list-h4-line-height);
    color: var(--mega-menu-color);
    text-transform: capitalize;
    font-weight: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: var(--mega-menu-padding-half) var(--mega-menu-nav-padding-left) var(--mega-menu-padding-quarter);
    text-align: center
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item .m-mega-menu__item-info .m-mega-menu__subtitle {
    font-weight: bold
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item .m-mega-menu__item-info .m-mega-menu__item-title {
    font-weight: normal
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item .m-mega-menu__item-img {
    height: var(--mega-menu-item-img);
    max-height: var(--mega-menu-item-img)
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item .m-mega-menu__item-img img {
    max-height: 100%
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__show-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    min-width: 6rem;
    padding: 0
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__show-more .m-mega-menu__link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__show-more .abt-icon-right-arrow {
    font-size: 1rem;
    top: 0
}

.m-mega-menu__default .m-mega-menu__nested-menu-wrapper .bg-color {
    background-color: var(--mega-menu-mobile-active-bg-color)
}

.m-mega-menu__list-var {
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28);
    width: var(--mega-menu-wrapper-width)
}

.m-mega-menu__list-var-wrapper {
    background-color: var(--mega-menu-mob-bg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: var(--mega-menu-v2-padding-y) var(--mega-menu-v2-padding-x)
}

@media(max-width:991.98px) {
    .m-mega-menu__list-var-wrapper {
        display: none
    }
}

.m-mega-menu__list-var-wrapper .m-mega-menu__title {
    display: inline-block
}

.m-mega-menu__list-var-wrapper .m-mega-menu__title:hover {
    text-decoration: none
}

.m-mega-menu__list-var-wrapper .m-mega-menu__title h6 {
    margin-bottom: 0;
    padding-left: var(--mega-menu-v2-title);
    font-size: var(--mega-menu-list-h6-font-size);
    line-height: var(--mega-menu-list-h6-line-height);
    color: var(--mega-menu-link-color);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: var(--mega-menu-list-h6-letter-spacing)
}

.m-mega-menu__list-var-wrapper .m-mega-menu__content {
    width: 100%
}

.m-mega-menu__list-var-wrapper .m-mega-menu__content .m-mega-menu__sub-list:last-child {
    margin-right: 0
}

.m-mega-menu__list-var-wrapper .m-mega-menu__sub-list {
    margin-right: var(--mega-menu-v2-list);
    min-width: var(--mega-menu-sub-width);
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: var(--mega-menu-variation-2-width);
    min-height: var(--mega-menu-height)
}

.m-mega-menu__list-var-wrapper .a-link {
    padding: var(--mega-menu-v2-link-y) 0 var(--mega-menu-v2-link-y) var(--mega-menu-v2-title);
    margin-bottom: var(--mega-menu-v2-link-y);
    -webkit-transition: font-size, background-color .3s;
    transition: font-size, background-color .3s;
    width: 100%;
    font-size: var(--mega-menu-list-h4-font-size);
    line-height: var(--mega-menu-list-h4-line-height);
    color: var(--mega-menu-color);
    text-transform: capitalize;
    font-weight: normal
}

.m-mega-menu__list-var-wrapper .a-link__text {
    color: var(--mega-menu-color);
    text-decoration: none;
    width: 100%
}

.m-mega-menu__list-var-wrapper .a-link__text:active,
.m-mega-menu__list-var-wrapper .a-link__text:focus {
    color: inherit
}

.m-mega-menu__list-var-wrapper .a-link:hover {
    background-color: var(--mega-menu-mobile-active-bg-color);
    padding-right: var(--mega-menu-link-hover-padding);
    font-size: var(--mega-menu-list-font-size);
    line-height: var(--mega-menu-list-h4-line-height);
    color: var(--mega-menu-color);
    text-transform: capitalize;
    font-weight: bold;
    letter-spacing: normal
}

.m-mega-menu__list-var-wrapper .a-link:hover .a-link__text:hover {
    color: inherit
}

.m-mega-menu__list-var-title {
    padding-top: var(--mega-menu-title-padding-top)
}

.m-mega-menu__nested-menu .m-mega-menu__side-nav {
    position: relative
}

.m-mega-menu__nested-menu .m-mega-menu__side-nav .m-link-stack {
    background-color: var(--mega-menu-mob-bg);
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28);
    height: 100%
}

.m-mega-menu__nested-menu .m-mega-menu__side-nav-transparent {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    height: 100%
}

.m-mega-menu__nested-menu-img-list {
    background-color: var(--mega-menu-mob-bg);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: none;
    padding: var(--mega-menu-v3-ter-y) 0 var(--mega-menu-v3-ter-x);
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.24), 0 4px 8px -2px rgba(141, 141, 148, 0.28);
    min-width: 18.75rem
}

.m-mega-menu__nested-menu-img-list a {
    text-decoration: none
}

.m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: var(--mega-menu-v3-ter-x) var(--mega-menu-v3-img) var(--mega-menu-v3-ter-y) var(--mega-menu-v3-img);
    color: var(--mega-menu-color)
}

.m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item:hover {
    background-color: var(--mega-menu-mobile-active-bg-color)
}

.m-mega-menu__nested-menu-img-list .m-mega-menu__item-img {
    height: 3.75rem;
    width: 3.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: var(--mega-menu-v3-ter-y)
}

.m-mega-menu__nested-menu-img-list .m-mega-menu__item-img img {
    max-height: 3.75rem
}

.m-mega-menu__nested-menu-img-list .m-mega-menu__item-info {
    max-width: 11rem
}

.m-mega-menu__nested-menu-img-list .m-mega-menu__item-info .m-mega-menu__item-title {
    font-weight: normal
}

.m-mega-menu__nested-menu-img-list .m-mega-menu__item-info .m-mega-menu__subtitle {
    font-weight: bold
}

.m-mega-menu__nested-menu .m-mega-menu__show-more {
    font-size: var(--mega-menu-list-h4-font-size);
    line-height: var(--mega-menu-list-line-height);
    color: var(--mega-menu-link-color);
    text-transform: inherit;
    font-weight: bold;
    letter-spacing: normal;
    position: relative;
    text-align: center;
    padding: var(--mega-menu-link-y) 0 var(--mega-menu-link-x) 0
}

.m-mega-menu__nested-menu .m-mega-menu__show-more .m-mega-menu__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

.m-mega-menu__nested-menu .m-mega-menu__show-more .m-mega-menu__link .abt-icon-down-arrow::before {
    height: var(--mega-menu-list-font-size);
    width: var(--mega-menu-list-font-size);
    margin: 0 var(--mega-menu-link-x)
}

.m-mega-menu__nested-menu-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

@media(max-width:991.98px) {
    .m-mega-menu__nested-menu-wrapper {
        display: none
    }
}

.m-mega-menu__nested-menu-wrapper .m-mega-menu__main-menu {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.m-mega-menu__nested-menu-wrapper .m-link-stack {
    padding: var(--mega-menu-padding-top) 0 var(--mega-menu-nav-padding-left) 0;
    min-width: var(--mega-menu-variation-3-width)
}

.m-mega-menu__nested-menu-wrapper .m-link-stack a {
    color: inherit;
    width: 100%
}

.m-mega-menu__nested-menu-wrapper .m-link-stack a:hover {
    color: inherit
}

.m-mega-menu__nested-menu-wrapper .m-link-stack a:focus {
    outline: 0
}

.m-mega-menu__nested-menu-wrapper .m-link-stack h6 {
    margin-bottom: 0
}

.m-mega-menu__nested-menu-wrapper .m-link-stack--content {
    padding: 0
}

.m-mega-menu__nested-menu-wrapper .a-link {
    font-size: var(--mega-menu-list-h4-font-size);
    line-height: var(--mega-menu-list-line-height);
    color: inherit;
    text-transform: capitalize;
    font-weight: normal;
    letter-spacing: normal;
    padding: var(--mega-menu-spacer)
}

.m-mega-menu__nested-menu-wrapper .a-link:hover {
    background-color: var(--mega-menu-mobile-active-bg-color)
}

.m-mega-menu__nested-menu-wrapper .a-link:active,
.m-mega-menu__nested-menu-wrapper .a-link:focus {
    color: inherit
}

.m-mega-menu__text-none .a-link,
.m-mega-menu__text-none .a-link:hover {
    text-transform: none
}

.m-mega-menu__text-none .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack .a-link__text {
    text-transform: none
}

.m-mega-menu__text-none .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item .m-mega-menu__item-info {
    text-transform: none
}

.m-mega-menu__text-none .m-mega-menu__nested-menu-wrapper .m-mega-menu__item-info .a-link,
.m-mega-menu__text-none .m-mega-menu__nested-menu-wrapper .m-mega-menu__item-info .a-link:hover,
.m-mega-menu__text-none .m-mega-menu__list-var-wrapper .a-link,
.m-mega-menu__text-none .m-mega-menu__list-var-wrapper .a-link:hover {
    text-transform: none
}

.m-mega-menu__text-uppercase .a-link,
.m-mega-menu__text-uppercase .a-link:hover {
    text-transform: uppercase
}

.m-mega-menu__text-uppercase .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack .a-link__text {
    text-transform: uppercase
}

.m-mega-menu__text-uppercase .m-mega-menu__nested-menu-wrapper .m-mega-menu__nested-menu-img-list .m-mega-menu__side-nav-item .m-mega-menu__item-info {
    text-transform: uppercase
}

.m-mega-menu__text-uppercase .m-mega-menu__nested-menu-wrapper .m-mega-menu__item-info .a-link,
.m-mega-menu__text-uppercase .m-mega-menu__nested-menu-wrapper .m-mega-menu__item-info .a-link:hover,
.m-mega-menu__text-uppercase .m-mega-menu__list-var-wrapper .a-link,
.m-mega-menu__text-uppercase .m-mega-menu__list-var-wrapper .a-link:hover {
    text-transform: uppercase
}

.mega-top-menu__text-none .m-mega-menu__mobile-item-wrapper>.link .a-link,
.mega-top-menu__text-none .m-mega-menu__mobile-item-wrapper>.link .a-link:hover,
.mega-top-menu__text-none .m-mega-menu__mobile-item-wrapper .m-mega-menu__mobile-header {
    text-transform: none
}

.mega-top-menu__text-none .m-mega-menu__mobile .navbar-nav .nav-link {
    text-transform: none
}

.mega-top-menu__text-uppercase .m-mega-menu__mobile-item-wrapper>.link .a-link,
.mega-top-menu__text-uppercase .m-mega-menu__mobile-item-wrapper>.link .a-link:hover,
.mega-top-menu__text-uppercase .m-mega-menu__mobile-item-wrapper .m-mega-menu__mobile-header {
    text-transform: uppercase
}

.mega-top-menu__text-uppercase .m-mega-menu__mobile .navbar-nav .nav-link {
    text-transform: uppercase
}

.mega-top-submenu__text-none .m-mega-menu__nested-menu .m-mega-menu__nested-menu-wrapper .a-link,
.mega-top-submenu__text-none .m-mega-menu__mobile-products .m-mega-menu__mobile-item-link,
.mega-top-submenu__text-none .m-mega-menu__mobile-products .m-mega-menu__mobile-sub-head,
.mega-top-submenu__text-none .m-mega-menu__list-var-wrapper .a-link,
.mega-top-submenu__text-none .m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack .a-link__text {
    text-transform: none
}

.mega-top-submenu__text-uppercase .m-mega-menu__nested-menu .m-mega-menu__nested-menu-wrapper .a-link,
.mega-top-submenu__text-uppercase .m-mega-menu__mobile-products .m-mega-menu__mobile-item-link,
.mega-top-submenu__text-uppercase .m-mega-menu__mobile-products .m-mega-menu__mobile-sub-head,
.mega-top-submenu__text-uppercase .m-mega-menu__list-var-wrapper .a-link,
.mega-top-submenu__text-uppercase .m-mega-menu__default .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav .m-link-stack .a-link__text {
    text-transform: uppercase
}

.a-wizard__icon {
    position: absolute;
    z-index: 1;
    top: 12px;
    left: calc(50% - 10px);
    height: 24px;
    max-width: 24px;
    margin: 0
}

.a-wizard__step--complete .a-wizard__steps--icon:before {
    background: var(--wizard-steps-icon-bg)
}

.a-wizard__step--complete .a-wizard__icon {
    display: inline-block
}

.a-wizard__steps {
    overflow: hidden;
    margin: var(--wizard-steps-margin);
    text-align: center;
    counter-reset: wizard-step;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-padding-start: 0;
    padding-inline-start: 0
}

.a-wizard__steps .a-wizard__icon {
    display: none
}

.a-wizard__steps li {
    width: 100%;
    list-style-type: none;
    position: relative
}

.a-wizard__steps li:after {
    content: "";
    width: 82%;
    height: 1px;
    background: var(--wizard-steps-sep-color);
    position: absolute;
    z-index: -1;
    top: 24px;
    left: -41%;
    border-radius: 1.5px
}

.a-wizard__steps li:first-child:after {
    content: none
}

.a-wizard__steps li.a-wizard-step--active,
.a-wizard__steps li.a-wizard__step--complete {
    display: block
}

.a-wizard__steps li.a-wizard-step--active:after,
.a-wizard__steps li.a-wizard__step--complete:after {
    height: 3px
}

.a-wizard__steps li.a-wizard-step--active:after {
    background-color: var(--wizard-step-active-color)
}

.a-wizard__steps li.a-wizard__step--complete:after {
    background-color: var(--wizard-step-complete-color)
}

.a-wizard__steps--icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    background: var(--wizard-step-icon-complete-bg-color);
    border-radius: 50%;
    margin: var(--wizard-step-icon-margin);
    height: 3rem;
    width: 3rem;
    font-size: var(--wizard-step-icon-font-size);
    line-height: var(--wizard-step-icon-line-height);
    color: var(--wizard-steps-inactive-color);
    text-align: center;
    border: 1px solid var(--wizard-steps-inactive-color)
}

.a-wizard__steps--icon:before {
    display: block;
    color: var(--wizard-steps-inactive-color);
    content: counter(wizard-step);
    counter-increment: wizard-step
}

.a-wizard__steps .a-wizard__step--complete.a-wizard-step--active .a-wizard__steps--icon {
    color: var(--wizard-step-active-color);
    -webkit-transition: border-color .3s ease-in-out, color .3s ease-in-out;
    transition: border-color .3s ease-in-out, color .3s ease-in-out
}

.a-wizard__steps .a-wizard__step--complete.a-wizard-step--active .a-wizard__steps--icon:before {
    color: var(--wizard-step-active-color)
}

.a-wizard__steps .a-wizard__step--incomplete.a-wizard-step--active .a-wizard__steps--icon {
    border-color: var(--wizard-step-active-color);
    -webkit-transition-delay: .5s;
    transition-delay: .5s
}

.a-wizard__steps .a-wizard__step--incomplete.a-wizard-step--active .a-wizard__steps--icon:before {
    color: var(--wizard-step-active-color);
    -webkit-transition-delay: .5s;
    transition-delay: .5s
}

.a-wizard .a-wizard__step--complete .a-wizard__steps--icon {
    -webkit-animation: bounce .5s ease-in-out;
    animation: bounce .5s ease-in-out;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    border-color: var(--wizard-step-complete-color);
    color: var(--wizard-step-complete-color)
}

.a-wizard .a-wizard__step--complete .a-wizard__steps--icon:before {
    display: block;
    content: "\e921";
    font-size: var(--wizard-step-icon-complete-font-size);
    height: 2.75rem;
    color: var(--wizard-step-complete-color);
    border-color: var(--wizard-step-complete-color);
    font-family: var(--wizard-step-icon-complete-font-family);
    background: var(--wizard-step-icon-complete-bg-color) no-repeat center center
}

.a-wizard .a-wizard__step--complete .a-wizard__steps--icon.default-fallback-icon:before {
    content: ""
}

.a-wizard__custom-icon .a-wizard__icon {
    position: absolute;
    z-index: 1;
    top: 15px;
    left: calc(50% - 10px);
    margin: 0
}

.a-wizard__custom-icon .a-wizard__step--complete .a-wizard__steps--icon:before {
    background: var(--wizard-step-icon-complete-bg-color)
}

.a-wizard__custom-icon .a-wizard__step--complete .a-wizard__icon {
    display: inline-block
}

.a-wizard__label {
    font-size: var(--wizard-step-label-font-size);
    line-height: var(--wizard-step-label-line-height);
    color: var(--wizard-steps-inactive-color);
    text-align: center
}

.a-wizard .a-wizard__step--incomplete.a-wizard-step--inactive .a-wizard__label {
    color: var(--wizard-steps-inactive-color)
}

.a-wizard .a-wizard__step--incomplete.a-wizard-step--active .a-wizard__label {
    color: var(--wizard-step-active-color)
}

.a-wizard .a-wizard__step--complete .a-wizard__label {
    color: var(--wizard-step-complete-color)
}

.a-wizard .a-wizard-step--active .a-wizard__label {
    -webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    -webkit-transition-delay: .5s;
    transition-delay: .5s
}

.o-wizard-container__success-msg {
    font-size: var(--wizard-font-size);
    line-height: var(--wizard-line-height);
    color: var(--wizard-color-success);
    text-transform: uppercase;
    font-weight: bold;
    margin: var(--wizard-margin);
    text-align: center
}

.o-wizard-container__error-msg {
    font-size: var(--wizard-font-size);
    line-height: var(--wizard-line-height);
    color: var(--wizard-color-error);
    text-transform: inherit;
    font-weight: bold;
    margin: var(--wizard-margin);
    text-align: center
}

.o-wizard__container {
    overflow: hidden;
    position: relative;
    z-index: 1
}

.o-wizard__container .o-wizard__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.o-wizard__container .o-wizard__btn button[type="submit"] {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media(max-width:767.98px) {
    .o-wizard__container .o-wizard__btn button[type="submit"] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.o-wizard__container .o-wizard__btn--back {
    margin-right: var(--wizard-btn-back-margin-right)
}

.o-wizard__container .o-wizard__content {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative
}

.o-wizard__container .o-wizard__content:not(:first-of-type) {
    display: none
}

.o-wizard__container .o-wizard__content--wrap button[type="submit"] {
    opacity: 0;
    pointer-events: none
}

@media(max-width:991.98px) {
    .o-wizard__container .o-wizard__content .o-form-container__element {
        width: 100%
    }
}

.formcontainer-halfwidth .o-wizard .o-form-container__element {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

@media(min-width:992px) {
    .formcontainer-halfwidth .o-wizard .o-form-container__element {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }
}

.m-video {
    width: var(--video-large-md-width);
    text-align: center
}

.m-video .a-video__player .wistia_click_to_play {
    width: 100% !important;
    height: auto !important
}

.m-video .a-video__player .wistia-video__has-image {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: inherit
}

.m-video .a-video__player .wistia-video__has-image::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    content: url("../../abbott-platform/clientlibs/clientlib-site/resources/images/play-button-12043.svg");
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.m-video .a-video__player .wistia-video__has-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.m-video .a-video__player.global-video-embedDam.global-video-fallBackImage {
    background-size: var(--video-background-image-size-contain);
    background-repeat: var(--video-background-repeat)
}

.m-video .video-transcript {
    white-space: nowrap;
    font-size: 16px
}

.m-video .video-transcript h3 {
    display: inline;
    font-size: 16px
}

@media(min-width:768px) {
    .m-video--small {
        width: var(--video-small-md-width)
    }

    .m-video--small .a-video .abt-icon {
        font-size: var(--video-small-icon-font-size)
    }
}

@media(min-width:768px) {
    .m-video--medium {
        width: var(--video-medium-md-width)
    }

    .m-video--medium .a-video .abt-icon {
        font-size: var(--video-medium-icon-font-size)
    }
}

@media(min-width:768px) {
    .m-video--large .a-video .abt-icon {
        font-size: var(--video-large-icon-font-size)
    }
}

.m-video--start {
    margin-right: auto
}

.m-video--center {
    margin: 0 auto
}

.m-video--end {
    margin-left: auto
}

.m-video video {
    width: var(--video-width);
    height: var(--video-height)
}

.m-video--caption-light .a-video__caption {
    color: var(--video-light-color)
}

.m-video--caption-dark .a-video__caption {
    color: var(--video-dark-color)
}

.video.container .m-video {
    width: var(--video-large-md-width)
}

.video.container .m-video .brightCove-video .video-js {
    padding-bottom: 56.25%
}

@media(min-width:768px) {
    .video.container .m-video--small {
        width: var(--video-small-md-container-width)
    }
}

@media(min-width:768px) {
    .video.container .m-video--medium {
        width: var(--video-medium-md-container-width)
    }
}

.a-video--top {
    margin-bottom: 24px !important;
    padding: 0 !important
}

.a-video--bottom {
    margin-top: 24px !important;
    padding: 0 !important
}

.a-video--right {
    padding-bottom: 0 !important;
    padding-top: 0 !important
}

.a-video--right span {
    text-align: right
}

.a-video--left {
    padding-bottom: 0 !important;
    padding-top: 0 !important
}

.a-video--left span {
    text-align: left
}

.a-video--center {
    padding-bottom: 0 !important;
    padding-top: 0 !important
}

.a-video--center span {
    text-align: center
}

.a-video .bc-player-default_default {
    width: 100%
}

.generic-modal.generic-modal--image .brightCove-video .video-js {
    padding-bottom: 56.25%
}

.generic-modal.generic-modal--image .vjs-poster {
    background-size: cover
}

.generic-modal.generic-modal--image .vjs-tech {
    -o-object-fit: cover;
    object-fit: cover
}

.generic-modal.generic-modal--image .a-video__player-source {
    -o-object-fit: fill;
    object-fit: fill
}

.generic-modal.generic-modal--image .video-js {
    width: 100%
}

.generic-modal.generic-modal--image .a-video__dom-video {
    width: 100%
}

.generic-modal.generic-modal--image .limelight-player {
    width: 100% !important;
    top: 0
}

.generic-modal.generic-modal--image .a-video__embed-popup {
    width: 100%
}

.generic-modal.generic-modal--image .vjs-big-play-button {
    width: 96px !important;
    height: 96px !important;
    line-height: 96px !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    margin-left: 0;
    margin-top: 0;
    top: 50% !important;
    left: 50% !important;
    font-size: 50px;
    border: 0;
    border-radius: 50%;
    background: var(--video-hover-gray) !important
}

.generic-modal.generic-modal--image .bc-player-default_default:hover .vjs-big-play-button {
    background: var(--video-light-magenta) !important
}

.a-video--thumbnail {
    width: 210px !important;
    min-height: 119px !important
}

.a-video--thumbnail .video-js {
    height: auto !important;
    padding-bottom: 56.25%
}

.a-video--thumbnail .limelight-player {
    min-height: 119px !important;
    width: 100% !important;
    top: 0 !important;
    background: none !important;
    padding-bottom: 56.25%
}

.a-video--thumbnail .m-popup {
    height: 100%;
    position: absolute;
    width: 100%
}

.a-video--thumbnail .play-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: static;
    cursor: pointer
}

.a-video--thumbnail .play-icon img {
    width: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.a-video--thumbnail .play-icon .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 48px;
    height: 48px;
    border-radius: 30px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.a-video--thumbnail .play-icon .btn:hover {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 48px;
    height: 48px;
    border-radius: 30px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.m-video--small .video-js {
    height: auto !important;
    padding-bottom: 56.25%
}

.m-video--small .limelight-player {
    width: 100% !important;
    top: 0 !important;
    background: none !important;
    padding-bottom: 56.25%
}

.m-video--small .m-popup {
    height: 100%;
    position: absolute;
    width: 100%
}

.m-video--small .play-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: static
}

.m-video--small .play-icon img {
    width: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.m-video--small .play-icon .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 48px;
    height: 48px;
    border-radius: 30px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.m-video--small .play-icon .btn:hover {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 48px;
    height: 48px;
    border-radius: 30px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.m-video--medium .video-js {
    height: auto !important;
    padding-bottom: 56.25%
}

.m-video--medium .limelight-player {
    width: 100% !important;
    top: 0 !important;
    background: none !important;
    padding-bottom: 56.25%
}

.m-video--medium .m-popup {
    height: 100%;
    position: absolute;
    width: 100%
}

.m-video--medium .play-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: static
}

.m-video--medium .play-icon img {
    width: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.m-video--medium .play-icon .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 48px;
    height: 48px;
    border-radius: 30px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.m-video--medium .play-icon .btn:hover {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 48px;
    height: 48px;
    border-radius: 30px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.a-video--large .video-js {
    height: auto !important;
    padding-bottom: 56.25%
}

.a-video--large .limelight-player {
    width: 100% !important;
    top: 0 !important;
    background: none !important;
    padding-bottom: 56.25%
}

.a-video--large .m-popup {
    height: 100%;
    position: absolute;
    width: 100%
}

.a-video--large .play-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: static
}

.a-video--large .play-icon img {
    width: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.a-video--large .play-icon .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 64px;
    height: 64px;
    border-radius: 30px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.a-video--large .play-icon .btn:hover {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 64px;
    height: 64px;
    border-radius: 30px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.a-video--extra-large {
    width: 770px;
    min-height: 436px !important
}

.a-video--extra-large .video-js {
    height: auto !important;
    padding-bottom: 56.25%
}

.a-video--extra-large .limelight-player {
    min-height: 436px !important;
    top: 0 !important;
    width: 100% !important;
    background: none !important;
    padding-bottom: 56.25%
}

.a-video--extra-large .m-popup {
    height: 100%;
    position: absolute;
    width: 100%
}

.a-video--extra-large .play-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: static
}

.a-video--extra-large .play-icon img {
    width: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.a-video--extra-large .play-icon .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 64px;
    height: 64px;
    border-radius: 30px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.a-video--extra-large .play-icon .btn:hover {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 64px;
    height: 64px;
    border-radius: 30px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.m-video--large {
    width: 100% !important;
    height: 100% !important
}

.m-video--large .video-js {
    height: auto !important;
    padding-bottom: 56.25%
}

.m-video--large .limelight-player {
    height: auto !important;
    display: contents !important;
    width: 100% !important;
    top: 0 !important;
    background: none !important;
    padding-bottom: 56.25%
}

.m-video--large .m-popup {
    height: 100%;
    position: absolute;
    width: 100%
}

.m-video--large .play-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: static
}

.m-video--large .play-icon img {
    width: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.m-video--large .play-icon .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 96px;
    height: 96px;
    border-radius: 96px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.m-video--large .play-icon .btn:hover {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
    width: 96px;
    height: 96px;
    border-radius: 96px;
    font-size: 25px;
    padding: 0 0 0 7px
}

.modal-video-popup .a-video__dom-video {
    max-width: 100% !important;
    height: auto;
    border: 0 !important;
    -o-object-fit: cover;
    object-fit: cover
}

@media(max-width:1024px) {
    .generic-modal.generic-modal--image .vjs-poster {
        background-size: cover
    }

    .generic-modal.generic-modal--image .vjs-tech {
        -o-object-fit: cover;
        object-fit: cover
    }

    .generic-modal.generic-modal--image .a-video__player-source {
        -o-object-fit: fill;
        object-fit: fill
    }

    .generic-modal.generic-modal--image .video-js {
        width: 100%
    }

    .generic-modal.generic-modal--image .a-video__dom-video {
        width: 100%
    }

    .generic-modal.generic-modal--image .m-video .limelight-player {
        width: 100%;
        background: none !important
    }

    .generic-modal.generic-modal--image .a-video__embed-popup {
        width: 100%
    }

    .generic-modal.generic-modal--image .vjs-big-play-button {
        width: 96px !important;
        height: 96px !important;
        line-height: 96px !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transform: translate(50%, 50%);
        transform: translate(50%, 50%);
        top: 40%;
        left: 45%;
        font-size: 50px;
        border: 0;
        border-radius: 50%;
        background: var(--video-hover-gray) !important
    }

    .generic-modal.generic-modal--image .bc-player-default_default:hover .vjs-big-play-button {
        background: var(--video-light-magenta) !important
    }
}

@media(max-width:991px) {
    .a-video--extra-large {
        width: 630px;
        min-height: 436px !important
    }

    .generic-modal .m-video .limelight-player {
        height: 100% !important
    }

    .generic-modal.generic-modal--image .m-video .limelight-player {
        height: 100% !important;
        width: 100%;
        background: none !important
    }

    .generic-modal.generic-modal--image .vjs-poster {
        background-size: cover
    }

    .generic-modal.generic-modal--image .vjs-tech {
        -o-object-fit: cover;
        object-fit: cover
    }

    .generic-modal.generic-modal--image .a-video__player-source {
        -o-object-fit: fill;
        object-fit: fill
    }

    .generic-modal.generic-modal--image .video-js {
        width: 100%
    }

    .generic-modal.generic-modal--image .a-video__dom-video {
        width: 100%
    }

    .generic-modal.generic-modal--image .a-video__embed-popup {
        width: 100%
    }

    .generic-modal.generic-modal--image .vjs-big-play-button {
        width: 96px !important;
        height: 96px !important;
        line-height: 96px !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transform: translate(50%, 50%);
        transform: translate(50%, 50%);
        top: 40%;
        left: 45%;
        font-size: 50px;
        border: 0;
        border-radius: 50%;
        background: var(--video-hover-gray) !important
    }

    .generic-modal.generic-modal--image .bc-player-default_default:hover .vjs-big-play-button {
        background: var(--video-light-magenta) !important
    }
}

@media(max-width:767px) {
    .video-js.vjs-layout-x-small .vjs-progress-control {
        display: block !important
    }

    .generic-modal.generic-modal--image .video-js.vjs-layout-x-small .vjs-progress-control {
        display: block !important
    }

    .generic-modal.generic-modal--image .a-video__player {
        padding-bottom: 0
    }

    .generic-modal.generic-modal--image .generic-modal__content {
        -webkit-transform: translateY(0) !important;
        transform: translateY(0) !important
    }

    .generic-modal.generic-modal--image .vjs-poster {
        background-size: cover
    }

    .generic-modal.generic-modal--image .vjs-tech {
        -o-object-fit: cover;
        object-fit: cover
    }

    .generic-modal.generic-modal--image .a-video__player-source {
        -o-object-fit: fill;
        object-fit: fill
    }

    .generic-modal.generic-modal--image .video-js {
        width: 100%
    }

    .generic-modal.generic-modal--image .a-video__dom-video {
        width: 100%
    }

    .generic-modal.generic-modal--image .m-video .limelight-player {
        width: 100%;
        background: none !important;
        height: 100% !important
    }

    .generic-modal.generic-modal--image .a-video__embed-popup {
        width: 100%
    }

    .generic-modal.generic-modal--image .vjs-big-play-button {
        width: 96px !important;
        height: 96px !important;
        line-height: 96px !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-transform: translate(50%, 50%);
        transform: translate(50%, 50%);
        top: 30%;
        left: 35%;
        font-size: 40px;
        border: 0;
        border-radius: 50%;
        background: var(--video-hover-gray) !important
    }

    .generic-modal.generic-modal--image .bc-player-default_default:hover .vjs-big-play-button {
        background: var(--video-light-magenta) !important
    }

    .a-video[data-playertype="embed"] .bc-player-default_default {
        width: 100%;
        height: 160px
    }

    .a-video--thumbnail {
        width: 100% !important;
        min-height: auto !important
    }

    .m-video--small {
        width: 100% !important;
        min-height: auto !important
    }

    .m-video--medium {
        width: 100% !important;
        min-height: auto !important
    }

    .a-video--large {
        width: 100% !important;
        min-height: auto !important
    }

    .a-video--extra-large {
        width: 100% !important;
        min-height: auto !important
    }

    .m-video--large .a-video[data-playertype="embed"] .limelight-player {
        width: 100% !important;
        height: 205px !important;
        top: 0 !important
    }

    .m-video--large .a-video[data-playertype="embed"] .brightCove-video {
        width: 100% !important;
        height: 190px !important;
        top: 0 !important
    }
}

.columncontrol .m-video {
    width: 100% !important;
    min-height: auto !important
}

.generic-modal .m-video .limelight-player {
    height: 100% !important;
    top: 0;
    position: absolute
}

.modal.generic-modal.generic-modal--image .limeLight-video-wrapper {
    height: 100% !important
}

.generic-modal .a-video__player {
    padding-bottom: 56.25% !important
}

.m-video-banner {
    position: relative;
    z-index: var(--video-banner-video-z-index);
    width: var(--video-banner-large-md-width);
    overflow: hidden;
    max-width: var(--video-banner-max-width);
    margin: 0 auto;
    background: transparent
}

@media(min-width:768px) {
    .m-video-banner {
        min-height: var(--video-banner-min-height-md)
    }
}

@media(min-width:1200px) {
    .m-video-banner {
        min-height: var(--video-banner-min-height-xl)
    }
}

.m-video-banner .vjs-seeking .vjs-loading-spinner,
.m-video-banner .vjs-waiting .vjs-loading-spinner {
    display: none !important
}

.m-video-banner .vjs-error .vjs-loading-spinner {
    display: none !important
}

.m-video-banner .a-video[data-controls="false"] video::-webkit-media-controls {
    display: none
}

.m-video-banner .a-video[data-controls="false"] video::-webkit-media-controls-enclosure {
    display: none
}

.m-video-banner .a-video[data-controls="false"] video::-webkit-media-controls-panel {
    display: none
}

.m-video-banner .a-video[data-controls="false"] video::-webkit-media-slider-container {
    display: none
}

.m-video-banner .a-video[data-controls="false"] video::-webkit-media-slider {
    display: none
}

.m-video-banner .a-video[data-controls="false"] video::-webkit-media-slider-thumb {
    display: none
}

.m-video-banner .vjs-error-display {
    display: none !important
}

.m-video-banner .vjs-big-play-button {
    display: none !important;
    opacity: 0 !important
}

.m-video-banner .a-video[data-controls="false"] .vjs-control-bar,
.m-video-banner .a-video[data-controls="false"] .w-bottom-bar {
    visibility: hidden !important;
    opacity: 0 !important
}

.m-video-banner .a-video[data-controls="false"] .w-big-play-button {
    opacity: 0 !important
}

.m-video-banner__title+.m-video-banner__header {
    margin-top: var(--video-banner-pre-title-top-spacing)
}

.m-video-banner__header+.m-video-banner__body {
    margin-top: var(--video-banner-pre-title-top-spacing)
}

.m-video-banner__title {
    font-size: var(--video-banner-font-size-pre-title);
    line-height: var(--video-banner-line-height-pre-title);
    font-weight: var(--video-banner-font-weight-pre-title);
    letter-spacing: var(--video-banner-font-weight-pre-title-letter-spacing)
}

.m-video-banner__header {
    font-size: var(--video-banner-font-size-header);
    font-weight: var(--video-banner-font-weight-header);
    line-height: var(--video-banner-line-height-header)
}

.m-video-banner__body {
    font-size: var(--video-banner-font-size-body);
    line-height: var(--video-banner-line-height-body);
    font-weight: var(--video-banner-font-weight-body)
}

.m-video-banner .m-video-banner__title,
.m-video-banner .m-video-banner__header,
.m-video-banner .m-video-banner__body {
    color: var(--video-banner-font-color-black);
    font-style: normal
}

.m-video-banner .m-video-banner__title *,
.m-video-banner .m-video-banner__header *,
.m-video-banner .m-video-banner__body * {
    color: inherit
}

.m-video-banner .a-video__player {
    position: relative;
    border: 0;
    height: 100%;
    width: 100%;
    padding-bottom: 0
}

.m-video-banner__media {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.m-video-banner__media:after {
    content: "";
    z-index: var(--video-banner-video-z-index);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.m-video-banner__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: var(--video-banner-flex-aline-start);
    -ms-flex-align: var(--video-banner-flex-aline-start);
    align-items: var(--video-banner-flex-aline-start);
    position: relative;
    z-index: var(--video-banner-ply-content-z-index)
}

@media(max-width:991.98px) {
    .m-video-banner__content {
        padding: var(--video-banner-mobile-content-padding)
    }
}

@media(min-width:768px) and (max-width:1199.98px) {
    .m-video-banner__content {
        padding: var(--video-banner-tab-media-padding)
    }
}

@media(min-width:992px) {
    .m-video-banner__content {
        padding: var(--video-banner-desktop-media-padding)
    }
}

.m-video-banner__icon-btn {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: 0;
    z-index: var(--video-banner-ply-btn-z-index);
    -webkit-box-align: var(--video-banner-flex-aline-end);
    -ms-flex-align: var(--video-banner-flex-aline-end);
    align-items: var(--video-banner-flex-aline-end);
    -webkit-box-pack: var(--video-banner-flex-aline-end);
    -ms-flex-pack: var(--video-banner-flex-aline-end);
    justify-content: var(--video-banner-flex-aline-end);
    -webkit-transform: translateY(var(--video-banner-ply-btn-translateY));
    transform: translateY(var(--video-banner-ply-btn-translateY));
    margin-bottom: var(--video-banner-ply-btn-translateY)
}

.m-video-banner__icon-btn .btn {
    background-color: var(--video-banner-ply-btn-bg-color);
    color: var(--video-banner-play-icon-color);
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.m-video-banner__icon-btn .btn:hover,
.m-video-banner__icon-btn .btn:focus {
    background-color: var(--video-banner-ply-btn-bg-color);
    color: var(--video-banner-play-icon-color)
}

.m-video-banner__icon-btn .btn:hover .abt-icon:before,
.m-video-banner__icon-btn .btn:focus .abt-icon:before {
    color: var(--video-banner-play-icon-color)
}

.m-video-banner--icon-default .m-video-banner__media .a-button--tertiary .btn {
    color: var(--video-banner-font-color-black)
}

.m-video-banner--icon-reversed .m-video-banner__media .btn {
    color: var(--video-banner-play-icon-reversed-color)
}

.m-video-banner--icon-reversed .m-video-banner__media .btn span {
    color: var(--video-banner-play-icon-reversed-color)
}

.m-video-banner--icon-reversed .m-video-banner__media .btn:hover,
.m-video-banner--icon-reversed .m-video-banner__media .btn:focus {
    background-color: var(--video-banner-ply-btn-bg-color);
    color: var(--video-banner-play-icon-reversed-color)
}

.m-video-banner--icon-reversed .m-video-banner__media .btn:hover .abt-icon:before,
.m-video-banner--icon-reversed .m-video-banner__media .btn:focus .abt-icon:before {
    color: var(--video-banner-play-icon-reversed-color)
}

@media(max-width:991.98px) {
    .m-video-banner--overlay {
        min-height: var(--video-banner-min-height-overlay-xs)
    }
}

@media(max-width:991.98px) {
    .m-video-banner--overlay .m-video-banner__media {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0
    }
}

@media(max-width:767.98px) {
    .m-video-banner--overlay .m-video-banner__extras .button:last-child {
        padding-bottom: var(--video-banner-extras-btn-mobile-end-padding)
    }
}

@media(max-width:991.98px) {
    .m-video-banner--overlay .m-video-banner__content {
        padding: var(--video-banner-mobile-media-overlay-padding)
    }
}

@media(max-width:991.98px) {
    .m-video-banner--overlay.m-video-banner__content-v-top .m-video-banner__content {
        padding-top: var(--video-banner-mobile-overlay-padding-top-aline-top)
    }
}

@media(min-width:768px) and (max-width:1199.98px) {
    .m-video-banner--overlay.m-video-banner__content-v-top .m-video-banner__content {
        padding-top: var(--video-banner-tab-vertical-top-padding-top);
        padding-inline: var(--video-banner-tab-media-padding)
    }
}

@media(min-width:1200px) {
    .m-video-banner--overlay.m-video-banner__content-v-top .m-video-banner__content {
        padding-top: var(--video-banner-desktop-vertical-top-padding-top)
    }
}

.m-video-banner--overlay.m-video-banner__content-v-center .m-video-banner__content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media(min-width:768px) {
    .m-video-banner--overlay.m-video-banner__content-v-center .m-video-banner__content {
        padding: var(--video-banner-tab-vertical-center-padding)
    }
}

@media(min-width:1200px) {
    .m-video-banner--overlay.m-video-banner__content-v-center .m-video-banner__content {
        padding: var(--video-banner-large-vertical-center-padding)
    }
}

@media(max-width:991.98px) {
    .m-video-banner--stacked .m-video-banner__media {
        position: relative
    }

    .m-video-banner--stacked .a-video__player {
        padding-bottom: var(--video-banner-padding-bottom-video-player)
    }
}

.m-video-banner--dark {
    --video-banner-bg: var(--video-banner-bg-dark);
    background: var(--video-banner-bg-dark)
}

.m-video-banner--dark .m-video-banner__title,
.m-video-banner--dark .m-video-banner__header,
.m-video-banner--dark .m-video-banner__body,
.m-video-banner--dark .m-video-banner__subtitle {
    color: var(--video-banner-font-color-white)
}

.m-video-banner--dark .m-video-banner__title *,
.m-video-banner--dark .m-video-banner__header *,
.m-video-banner--dark .m-video-banner__body *,
.m-video-banner--dark .m-video-banner__subtitle * {
    color: var(--video-banner-font-color-white)
}

.m-video-banner .a-video__player-source,
.m-video-banner .vjs-tech,
.m-video-banner .limelight-player,
.m-video-banner .vjs-poster {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 0;
    background-color: var(--video-banner-bg);
    background-size: var(--video-banner-media-large-object-fit-cover);
    -o-object-fit: var(--video-banner-media-large-object-fit-cover);
    object-fit: var(--video-banner-media-large-object-fit-cover);
    -o-object-position: var(--video-banner-media-object-position-center);
    object-position: var(--video-banner-media-object-position-center)
}

@media(max-width:991.98px) {

    .m-video-banner .a-video__player-source,
    .m-video-banner .vjs-tech,
    .m-video-banner .limelight-player,
    .m-video-banner .vjs-poster {
        -o-object-fit: var(--video-banner-media-large-object-fit-cover);
        object-fit: var(--video-banner-media-large-object-fit-cover)
    }
}

.m-video-banner .limeLight-video-wrapper .limelight-player {
    height: auto !important;
    width: 100% !important;
    top: var(--video-banner-limeLight-media-potion-top) !important;
    background: none !important;
    padding-bottom: var(--video-banner-padding-bottom-video-player)
}

@media(max-width:767.98px) {
    .m-video-banner .limeLight-video-wrapper .limelight-player {
        display: contents !important
    }
}

.m-video-banner .limeLight-video-wrapper .limelight-player.a-video[data-controls="false"] {
    height: auto !important;
    padding-bottom: var(--video-banner-padding-bottom-video-player)
}

.m-video-banner .limeLight-video-wrapper .vjs-limelight-big-play {
    opacity: 0;
    visibility: hidden
}

@media(min-width:1200px) {

    .m-video-banner-media-xl-top .a-video__player-source,
    .m-video-banner-media-xl-top .vjs-tech,
    .m-video-banner-media-xl-top .limelight-player,
    .m-video-banner-media-xl-top .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-top);
        object-position: var(--video-banner-media-object-position-top)
    }
}

@media(min-width:1200px) {

    .m-video-banner-media-xl-top .limelight-player,
    .m-video-banner-media-xl-top .vjs-poster {
        bottom: var(--video-banner-limeLight-media-potion-top)
    }
}

@media(min-width:1200px) {

    .m-video-banner-media-xl-right .a-video__player-source,
    .m-video-banner-media-xl-right .vjs-tech,
    .m-video-banner-media-xl-right .limelight-player,
    .m-video-banner-media-xl-right .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-right);
        object-position: var(--video-banner-media-object-position-right)
    }
}

@media(min-width:1200px) {

    .m-video-banner-media-xl-bottom .a-video__player-source,
    .m-video-banner-media-xl-bottom .vjs-tech,
    .m-video-banner-media-xl-bottom .limelight-player,
    .m-video-banner-media-xl-bottom .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-bottom);
        object-position: var(--video-banner-media-object-position-bottom)
    }
}

@media(min-width:1200px) {

    .m-video-banner-media-xl-bottom .limelight-player,
    .m-video-banner-media-xl-bottom .vjs-poster {
        bottom: var(--video-banner-limeLight-media-potion-bottom)
    }
}

@media(min-width:1200px) {

    .m-video-banner-media-xl-left .a-video__player-source,
    .m-video-banner-media-xl-left .vjs-tech,
    .m-video-banner-media-xl-left .limelight-player,
    .m-video-banner-media-xl-left .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-left);
        object-position: var(--video-banner-media-object-position-left)
    }
}

@media(min-width:1200px) {

    .m-video-banner-media-xl-center .a-video__player-source,
    .m-video-banner-media-xl-center .vjs-tech,
    .m-video-banner-media-xl-center .limelight-player,
    .m-video-banner-media-xl-center .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-center);
        object-position: var(--video-banner-media-object-position-center)
    }
}

@media(max-width:1199.98px) {

    .m-video-banner-media-lg-top .a-video__player-source,
    .m-video-banner-media-lg-top .vjs-tech,
    .m-video-banner-media-lg-top .limelight-player,
    .m-video-banner-media-lg-top .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-top);
        object-position: var(--video-banner-media-object-position-top)
    }
}

@media(min-width:1200px) {

    .m-video-banner-media-lg-top .limelight-player,
    .m-video-banner-media-lg-top .vjs-poster {
        bottom: var(--video-banner-limeLight-media-potion-top)
    }
}

@media(max-width:1199.98px) {

    .m-video-banner-media-lg-right .a-video__player-source,
    .m-video-banner-media-lg-right .vjs-tech,
    .m-video-banner-media-lg-right .limelight-player,
    .m-video-banner-media-lg-right .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-right);
        object-position: var(--video-banner-media-object-position-right)
    }
}

@media(max-width:1199.98px) {

    .m-video-banner-media-lg-bottom .a-video__player-source,
    .m-video-banner-media-lg-bottom .vjs-tech,
    .m-video-banner-media-lg-bottom .limelight-player,
    .m-video-banner-media-lg-bottom .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-bottom);
        object-position: var(--video-banner-media-object-position-bottom)
    }
}

@media(max-width:1199.98px) {

    .m-video-banner-media-lg-bottom .limelight-player,
    .m-video-banner-media-lg-bottom .vjs-poster {
        bottom: var(--video-banner-limeLight-media-potion-bottom)
    }
}

@media(max-width:1199.98px) {

    .m-video-banner-media-lg-left .a-video__player-source,
    .m-video-banner-media-lg-left .vjs-tech,
    .m-video-banner-media-lg-left .limelight-player,
    .m-video-banner-media-lg-left .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-left);
        object-position: var(--video-banner-media-object-position-left)
    }
}

@media(max-width:1199.98px) {

    .m-video-banner-media-lg-center .a-video__player-source,
    .m-video-banner-media-lg-center .vjs-tech,
    .m-video-banner-media-lg-center .limelight-player,
    .m-video-banner-media-lg-center .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-center);
        object-position: var(--video-banner-media-object-position-center)
    }
}

@media(max-width:991.98px) {

    .m-video-banner-media-sm-top .a-video__player-source,
    .m-video-banner-media-sm-top .vjs-tech,
    .m-video-banner-media-sm-top .limelight-player,
    .m-video-banner-media-sm-top .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-top);
        object-position: var(--video-banner-media-object-position-top)
    }
}

@media(max-width:991.98px) {

    .m-video-banner-media-sm-right .a-video__player-source,
    .m-video-banner-media-sm-right .vjs-tech,
    .m-video-banner-media-sm-right .limelight-player,
    .m-video-banner-media-sm-right .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-right);
        object-position: var(--video-banner-media-object-position-right)
    }
}

@media(max-width:991.98px) {

    .m-video-banner-media-sm-bottom .a-video__player-source,
    .m-video-banner-media-sm-bottom .vjs-tech,
    .m-video-banner-media-sm-bottom .limelight-player,
    .m-video-banner-media-sm-bottom .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-bottom);
        object-position: var(--video-banner-media-object-position-bottom)
    }
}

@media(max-width:767.98px) {

    .m-video-banner-media-sm-bottom .limelight-player,
    .m-video-banner-media-sm-bottom .vjs-poster {
        bottom: var(--video-banner-limeLight-media-potion-bottom)
    }
}

@media(max-width:991.98px) {

    .m-video-banner-media-sm-left .a-video__player-source,
    .m-video-banner-media-sm-left .vjs-tech,
    .m-video-banner-media-sm-left .limelight-player,
    .m-video-banner-media-sm-left .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-left);
        object-position: var(--video-banner-media-object-position-left)
    }
}

@media(max-width:991.98px) {

    .m-video-banner-media-sm-center .a-video__player-source,
    .m-video-banner-media-sm-center .vjs-tech,
    .m-video-banner-media-sm-center .limelight-player,
    .m-video-banner-media-sm-center .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-center);
        object-position: var(--video-banner-media-object-position-center)
    }
}

@media(max-width:767.98px) {

    .m-video-banner-media-xs-top .a-video__player-source,
    .m-video-banner-media-xs-top .vjs-tech,
    .m-video-banner-media-xs-top .limelight-player,
    .m-video-banner-media-xs-top .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-top);
        object-position: var(--video-banner-media-object-position-top)
    }
}

@media(max-width:767.98px) {

    .m-video-banner-media-xs-right .a-video__player-source,
    .m-video-banner-media-xs-right .vjs-tech,
    .m-video-banner-media-xs-right .limelight-player,
    .m-video-banner-media-xs-right .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-right);
        object-position: var(--video-banner-media-object-position-right)
    }
}

@media(max-width:767.98px) {

    .m-video-banner-media-xs-bottom .a-video__player-source,
    .m-video-banner-media-xs-bottom .vjs-tech,
    .m-video-banner-media-xs-bottom .limelight-player,
    .m-video-banner-media-xs-bottom .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-bottom);
        object-position: var(--video-banner-media-object-position-bottom)
    }
}

@media(max-width:767.98px) {

    .m-video-banner-media-xs-bottom .limelight-player,
    .m-video-banner-media-xs-bottom .vjs-poster {
        bottom: var(--video-banner-limeLight-media-potion-bottom)
    }
}

@media(max-width:767.98px) {

    .m-video-banner-media-xs-left .a-video__player-source,
    .m-video-banner-media-xs-left .vjs-tech,
    .m-video-banner-media-xs-left .limelight-player,
    .m-video-banner-media-xs-left .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-left);
        object-position: var(--video-banner-media-object-position-left)
    }
}

@media(max-width:767.98px) {

    .m-video-banner-media-xs-center .a-video__player-source,
    .m-video-banner-media-xs-center .vjs-tech,
    .m-video-banner-media-xs-center .limelight-player,
    .m-video-banner-media-xs-center .vjs-poster {
        -o-object-position: var(--video-banner-media-object-position-center);
        object-position: var(--video-banner-media-object-position-center)
    }
}

.m-video-banner--full-width .m-video-banner__content__wraper {
    width: var(--video-banner-md-content-full-width)
}

@media(min-width:576px) {
    .m-video-banner--half-width .m-video-banner__content__wraper {
        width: var(--video-banner-md-content-half-width-sm)
    }
}

@media(min-width:1200px) {
    .m-video-banner--half-width .m-video-banner__content__wraper {
        width: var(--video-banner-md-content-half-width-xl)
    }
}

@media(min-width:768px) {
    .m-video-banner--alignment-right .m-video-banner__content * {
        text-align: right
    }

    .m-video-banner--alignment-right .m-video-banner__extras {
        -webkit-box-pack: var(--video-banner-flex-aline-end);
        -ms-flex-pack: var(--video-banner-flex-aline-end);
        justify-content: var(--video-banner-flex-aline-end)
    }
}

@media(min-width:768px) {
    .m-video-banner--alignment-center .m-video-banner__content * {
        text-align: center
    }

    .m-video-banner--alignment-center .m-video-banner__extras {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

@media(min-width:768px) {
    .m-video-banner--alignment-left .m-video-banner__content * {
        text-align: left
    }

    .m-video-banner--alignment-left .m-video-banner__extras {
        -webkit-box-pack: var(--video-banner-flex-aline-start);
        -ms-flex-pack: var(--video-banner-flex-aline-start);
        justify-content: var(--video-banner-flex-aline-start)
    }
}

@media(min-width:768px) {
    .m-video-banner__content-h-center .m-video-banner__content {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .m-video-banner__content-h-right .m-video-banner__content {
        -webkit-box-align: var(--video-banner-flex-aline-end);
        -ms-flex-align: var(--video-banner-flex-aline-end);
        align-items: var(--video-banner-flex-aline-end)
    }
}

@media(min-width:768px) {
    .m-video-banner__content-v-top .m-video-banner__content {
        padding-top: var(--video-banner-tab-vertical-top-padding-top)
    }
}

@media(min-width:1200px) {
    .m-video-banner__content-v-top .m-video-banner__content {
        padding-top: var(--video-banner-desktop-vertical-top-padding-top)
    }
}

@media(min-width:768px) {
    .m-video-banner__content-v-center .m-video-banner__content {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.m-video-banner--gradient-start .m-video-banner__media:after {
    background: -webkit-gradient(linear, left top, right top, from(var(--video-banner-start-color)), to(var(--video-banner-end-color)));
    background: linear-gradient(90deg, var(--video-banner-start-color) var(--video-banner-start-position), var(--video-banner-end-color) var(--video-banner-end-position))
}

.m-video-banner--gradient-end .m-video-banner__media:after {
    background: -webkit-gradient(linear, right top, left top, from(var(--video-banner-start-color)), to(var(--video-banner-end-color)));
    background: linear-gradient(-90deg, var(--video-banner-start-color) var(--video-banner-start-position), var(--video-banner-end-color) var(--video-banner-end-position))
}

.m-video-banner--gradient-center .m-video-banner__media:after {
    background: radial-gradient(circle, var(--video-banner-start-color) var(--video-banner-start-position), var(--video-banner-end-color) var(--video-banner-end-position))
}

@media(max-width:991.98px) {
    .m-video-banner--mobile-tab--bg-primary {
        --video-banner-bg: var(--video-banner-mobile-tab-bg-primary);
        background: var(--video-banner-mobile-tab-bg-primary)
    }

    .m-video-banner--mobile-tab--bg-primary * {
        color: var(--video-banner-mobile-tab-bg-text-white)
    }

    .m-video-banner--mobile-tab--bg-primary .m-video-banner__title,
    .m-video-banner--mobile-tab--bg-primary .m-video-banner__header,
    .m-video-banner--mobile-tab--bg-primary .m-video-banner__body,
    .m-video-banner--mobile-tab--bg-primary .m-video-banner__subtitle {
        color: var(--video-banner-mobile-tab-bg-text-white)
    }

    .m-video-banner--mobile-tab--bg-primary .a-button.a-button--primary {
        --button-primary-bg: var(--video-banner-mobile-tab-button-primary-bg);
        --button-primary-color: var(--video-banner-mobile-tab-button-primary-color)
    }
}

.m-video-banner-ply-lower-left .m-video-banner__icon-btn {
    left: 0;
    right: auto
}

.m-video-banner-ply-lower-right .m-video-banner__icon-btn {
    right: 0
}

.m-video-banner__extras {
    margin-top: var(--video-banner-desktop-extras-top-spacing);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-video-banner__extras .a-button {
    --button-icon-size: var(--video-banner-play-button-icon-size);
    --button-icon-size-lg: var(--video-banner-play-button-icon-size-lg);
    --button-icon-size-sm: var(--video-banner-play-button-icon-size-sm)
}

@media(max-width:991.98px) {
    .m-video-banner__extras .a-button {
        display: inline-block
    }
}

.m-video-banner__extras>.xfpage {
    width: 100%
}

.m-video-banner__extras .btn {
    font-size: var(--video-banner-extras-btn-font-size);
    font-weight: var(--video-banner-extras-btn-font-weight);
    line-height: var(--video-banner-extras-btn-line-height);
    letter-spacing: var(--video-banner-extras-btn-letter-spacing)
}

@media(max-width:991.98px) {
    .m-video-banner__extras {
        margin-top: var(--video-banner-tablet-extras-top-spacing)
    }

    .m-video-banner__extras .a-button {
        margin-top: 0
    }
}

@media(max-width:575.98px) {
    .m-video-banner__extras {
        margin-top: var(--video-banner-mobile-extras-top-spacing);
        display: block
    }

    .m-video-banner__extras .a-button {
        width: 100%;
        display: block
    }

    .m-video-banner__extras .a-button .a-link {
        width: 100%
    }

    .m-video-banner__extras .a-button .a-button {
        width: 100%;
        text-align: center
    }

    .m-video-banner__extras .a-button+.a-button {
        margin-top: var(--video-banner-mobile-extras-top-spacing);
        margin-left: 0 !important
    }
}

.m-video-banner__extras .a-button .a-button {
    margin: 0
}

.m-video-banner__extras .a-button+.a-button {
    margin-left: var(--video-banner-extras-between-spacing)
}

.m-video-banner__extras .a-button.a-button--primary span {
    color: inherit
}

.m-video-banner__extras .a-button.a-button--primary-v1 span {
    color: inherit
}

.tooltips.inline-tooltip {
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    line-height: unset
}

.tooltips.inline-tooltip .a-tooltip .abt-icon {
    font-size: 1rem
}

.cmp-title__align,
.form-label__align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.tooltip__inline {
    margin-left: 5px
}

.cq-Editable-dom .tooltip__inline {
    display: block
}

.a-tooltip .tooltip {
    margin: 10px
}

.a-tooltip .tooltip-inner {
    padding: var(--tooltip-padding-y) var(--tooltip-padding-x);
    width: auto;
    text-align: left;
    -webkit-box-shadow: var(--tooltip-box-shadow);
    box-shadow: var(--tooltip-box-shadow)
}

.a-tooltip .tooltip-inner h5 {
    font-size: var(--tooltip-h5-font-size);
    line-height: var(--tooltip-line-height)
}

.a-tooltip .tooltip-inner p,
.a-tooltip .tooltip-inner span {
    font-family: var(--tooltip-content-font-family);
    font-size: var(--tooltip-font-size);
    line-height: var(--tooltip-line-height)
}

.a-tooltip .tooltip-arrow {
    -webkit-box-shadow: var(--tooltip-box-shadow);
    box-shadow: var(--tooltip-box-shadow)
}

.a-tooltip .tooltip.show {
    opacity: 1
}

.a-tooltip--large.a-tooltip--dark .tooltip-inner {
    max-width: 377px;
    background-color: var(--tooltip-dark-bg);
    color: var(--tooltip-bg)
}

.a-tooltip--large.a-tooltip--light .tooltip-inner {
    max-width: 220px;
    background-color: var(--tooltip-bg);
    color: var(--tooltip-dark-bg)
}

.a-tooltip--small.a-tooltip--dark .tooltip-inner {
    max-width: 149px;
    background-color: var(--tooltip-dark-bg);
    color: var(--tooltip-bg)
}

.a-tooltip--small.a-tooltip--light .tooltip-inner {
    max-width: 151px;
    background-color: var(--tooltip-bg);
    color: var(--tooltip-dark-bg)
}

.a-tooltip--dark .tooltip-inner h5 {
    color: var(--tooltip-bg)
}

.a-tooltip--dark .tooltip.bs-tooltip-right .arrow::before {
    border-right-color: var(--tooltip-dark-bg)
}

.a-tooltip--dark .tooltip.bs-tooltip-left .arrow::before {
    border-left-color: var(--tooltip-dark-bg)
}

.a-tooltip--dark .tooltip.bs-tooltip-bottom .arrow::before {
    border-bottom-color: var(--tooltip-dark-bg)
}

.a-tooltip--dark .tooltip.bs-tooltip-top .arrow::before {
    border-top-color: var(--tooltip-dark-bg)
}

.a-tooltip--light .tooltip.bs-tooltip-right .arrow::before {
    border-right-color: var(--tooltip-bg)
}

.a-tooltip--light .tooltip.bs-tooltip-left .arrow::before {
    border-left-color: var(--tooltip-bg)
}

.a-tooltip--light .tooltip.bs-tooltip-bottom .arrow::before {
    border-bottom-color: var(--tooltip-bg)
}

.a-tooltip--light .tooltip.bs-tooltip-top .arrow::before {
    border-top-color: var(--tooltip-bg)
}

.o-tiles {
    position: relative;
    padding: var(--o-tiles-bg-padding);
    height: var(--o-tiles-height);
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media(max-width:767.98px) {
    .o-tiles {
        padding: var(--o-tiles-bg-padding-mob);
        height: auto
    }

    .o-tiles .m-tiles-list__container {
        padding: 0
    }

    .o-tiles .m-tiles-list__column {
        padding: 0;
        max-width: 100%;
        width: 100%
    }
}

.o-tiles__bg {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1
}

@media(max-width:767.98px) {
    .o-tiles__bg {
        display: none
    }
}

.o-tiles__image {
    max-width: 100%;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center
}

.o-tiles__heading .a-title {
    margin-bottom: var(--o-tiles-heading-margin)
}

@media(max-width:767.98px) {
    .o-tiles__heading .a-title {
        margin-bottom: var(--o-tiles-heading-margin-mob)
    }
}

.responsivegrid .aem-Grid>.normal-padding.aem-GridColumn:not(.experiencefragment) {
    padding-bottom: 200px !important
}

.responsivegrid .aem-Grid>.normal-padding.aem-GridColumn:not(.experiencefragment) .o-tiles {
    padding-bottom: 0;
    height: auto
}

.responsivegrid .aem-Grid>.normal-padding.aem-GridColumn:not(.experiencefragment) .o-tiles__bg {
    height: calc(100% + 200px)
}

.responsivegrid .aem-Grid>.normal-padding.aem-GridColumn:not(.experiencefragment) .m-tile-list {
    padding-bottom: 0 !important
}

.responsivegrid .aem-Grid>.normal-padding.aem-GridColumn:not(.experiencefragment) .m-tile-list .a-tile {
    margin-bottom: 0 !important
}

.responsivegrid .aem-Grid>.extra-padding.aem-GridColumn:not(.experiencefragment) {
    padding-bottom: 416px !important
}

.responsivegrid .aem-Grid>.extra-padding.aem-GridColumn:not(.experiencefragment) .o-tiles {
    padding-bottom: 0;
    height: auto
}

.responsivegrid .aem-Grid>.extra-padding.aem-GridColumn:not(.experiencefragment) .o-tiles__bg {
    height: calc(100% + 416px)
}

.responsivegrid .aem-Grid>.extra-padding.aem-GridColumn:not(.experiencefragment) .o-tiles .m-tile-list {
    padding-bottom: 0 !important
}

.responsivegrid .aem-Grid>.extra-padding.aem-GridColumn:not(.experiencefragment) .o-tiles .m-tile-list .a-tile {
    margin-bottom: 0 !important
}

.a-tiles--background--gradient-start .o-tiles {
    background: -webkit-gradient(linear, left top, right top, from(var(--tiles-start-color)), to(var(--tiles-end-color)));
    background: linear-gradient(90deg, var(--tiles-start-color) var(--tiles-start-position), var(--tiles-end-color) var(--tiles-end-position))
}

.a-tiles--background--gradient-end .o-tiles {
    background: -webkit-gradient(linear, right top, left top, from(var(--tiles-start-color)), to(var(--tiles-end-color)));
    background: linear-gradient(-90deg, var(--tiles-start-color) var(--tiles-start-position), var(--tiles-end-color) var(--tiles-end-position))
}

.a-tiles--background--gradient-center .o-tiles {
    background: radial-gradient(circle, var(--tiles-start-color) var(--tiles-start-position), var(--tiles-end-color) var(--tiles-end-position))
}

.a-text--fg {
    --text-color-default: #000;
    --text-color-reversed: #fff;
    --text-color-primary: #001489;
    --text-color-alternate: #979797
}

.a-read--more-less {
    --text-color-read-more: #004f71;
    --text-bg-color-read-more: none;
    --text-border-read-more: 0;
    --text-spacer-read-more: 0
}

.a-text--table-dots-green div p::before {
    content: "";
    width: var(--products-compare-dot-size);
    height: var(--products-compare-dot-size);
    margin-right: var(--products-compare-dot-size);
    border-radius: 50%;
    background-color: var(--products-compare-dots-green);
    vertical-align: middle;
    display: inline-block
}

.a-text--table-dots-yellow div p::before {
    content: "";
    width: var(--products-compare-dot-size);
    height: var(--products-compare-dot-size);
    margin-right: var(--products-compare-dot-size);
    border-radius: 50%;
    background-color: var(--products-compare-dots-yellow);
    vertical-align: middle;
    display: inline-block
}

.a-text--table-dots-red div p::before {
    content: "";
    width: var(--products-compare-dot-size);
    height: var(--products-compare-dot-size);
    margin-right: var(--products-compare-dot-size);
    border-radius: 50%;
    background-color: var(--products-compare-dots-red);
    vertical-align: middle;
    display: inline-block
}

.a-text--gradient-start p,
.a-text--gradient-start h1,
.a-text--gradient-start h2,
.a-text--gradient-start h3,
.a-text--gradient-start h4,
.a-text--gradient-start h5,
.a-text--gradient-start h6,
.a-text--gradient-start blockquote,
.a-text--gradient-start pre {
    background: -webkit-gradient(linear, left top, right top, from(var(--text-start-color)), to(var(--text-end-color)));
    background: linear-gradient(90deg, var(--text-start-color) var(--text-start-position), var(--text-end-color) var(--text-end-position))
}

.a-text--gradient-center p,
.a-text--gradient-center h1,
.a-text--gradient-center h2,
.a-text--gradient-center h3,
.a-text--gradient-center h4,
.a-text--gradient-center h5,
.a-text--gradient-center h6,
.a-text--gradient-center blockquote,
.a-text--gradient-center pre {
    background: -webkit-gradient(linear, right top, left top, from(var(--text-start-color)), to(var(--text-end-color)));
    background: linear-gradient(-90deg, var(--text-start-color) var(--text-start-position), var(--text-end-color) var(--text-end-position))
}

.a-text--gradient-end p,
.a-text--gradient-end h1,
.a-text--gradient-end h2,
.a-text--gradient-end h3,
.a-text--gradient-end h4,
.a-text--gradient-end h5,
.a-text--gradient-end h6,
.a-text--gradient-end blockquote,
.a-text--gradient-end pre {
    background: radial-gradient(circle, var(--text-start-color) var(--text-start-position), var(--text-end-color) var(--text-end-position))
}

.a-text--fg-default .a-text--fg__text,
.a-text--fg-default h1,
.a-text--fg-default h2,
.a-text--fg-default h3,
.a-text--fg-default h4,
.a-text--fg-default h5,
.a-text--fg-default h6,
.a-text--fg-default blockquote,
.a-text--fg-default pre,
.a-text--fg-default p {
    color: var(--text-color-default)
}

.a-text--fg-reversed .a-text--fg__text,
.a-text--fg-reversed h1,
.a-text--fg-reversed h2,
.a-text--fg-reversed h3,
.a-text--fg-reversed h4,
.a-text--fg-reversed h5,
.a-text--fg-reversed h6,
.a-text--fg-reversed blockquote,
.a-text--fg-reversed pre,
.a-text--fg-reversed p {
    color: var(--text-color-reversed)
}

.a-text--fg-primary .a-text--fg__text,
.a-text--fg-primary h1,
.a-text--fg-primary h2,
.a-text--fg-primary h3,
.a-text--fg-primary h4,
.a-text--fg-primary h5,
.a-text--fg-primary h6,
.a-text--fg-primary blockquote,
.a-text--fg-primary pre,
.a-text--fg-primary p {
    color: var(--text-color-primary)
}

.a-text--fg-alternate .a-text--fg__text,
.a-text--fg-alternate h1,
.a-text--fg-alternate h2,
.a-text--fg-alternate h3,
.a-text--fg-alternate h4,
.a-text--fg-alternate h5,
.a-text--fg-alternate h6,
.a-text--fg-alternate blockquote,
.a-text--fg-alternate pre,
.a-text--fg-alternate p {
    color: var(--text-color-alternate)
}

.a-short {
    max-height: none;
    overflow: hidden
}

.a-read--more-less {
    border: var(--text-border-read-more);
    background: var(--text-bg-color-read-more);
    color: var(--text-color-read-more);
    padding: var(--text-spacer-read-more)
}

.a-text-banner {
    padding: 1.5rem .9375rem;
    margin-bottom: 0;
    background-color: var(--text-banner-bg-color)
}

@media(max-width:991.98px) {
    .a-text-banner {
        text-align: center
    }
}

@media(min-width:992px) {
    .a-text-banner {
        padding: 2rem 1.875rem 2.5rem
    }
}

.a-text-banner--title {
    margin-bottom: 0;
    color: var(--text-banner-title-color)
}

.a-text--banner--gradient-start .a-text-banner {
    background: -webkit-gradient(linear, left top, right top, from(var(--textBanner-start-color)), to(var(--textBanner-end-color)));
    background: linear-gradient(90deg, var(--textBanner-start-color) var(--textBanner-start-position), var(--textBanner-end-color) var(--textBanner-end-position))
}

.a-text--banner--gradient-end .a-text-banner {
    background: -webkit-gradient(linear, right top, left top, from(var(--textBanner-start-color)), to(var(--textBanner-end-color)));
    background: linear-gradient(-90deg, var(--textBanner-start-color) var(--textBanner-start-position), var(--textBanner-end-color) var(--textBanner-end-position))
}

.a-text--banner--gradient-center .a-text-banner {
    background: radial-gradient(circle, var(--textBanner-start-color) var(--textBanner-start-position), var(--textBanner-end-color) var(--textBanner-end-position))
}

.m-terms-section.a-container {
    padding: var(--terms-container-padding);
    margin: var(--terms-container-margin)
}

.m-terms-section.a-container span,
.m-terms-section.a-container p:first-of-type {
    display: inline;
    font-size: var(--terms-font-size);
    line-height: var(--terms-line-height);
    color: var(--terms-font-color);
    text-transform: none;
    font-weight: normal;
    letter-spacing: normal
}

.m-terms-section.a-container p {
    font-size: var(--terms-font-size);
    line-height: var(--terms-line-height);
    color: var(--terms-font-color);
    text-transform: none;
    font-weight: normal;
    letter-spacing: normal;
    padding: var(--terms-para-margin)
}

.m-terms-section.a-container ol li,
.m-terms-section.a-container ul li {
    font-size: var(--terms-font-size);
    line-height: var(--terms-line-height);
    color: var(--terms-font-color);
    text-transform: none;
    font-weight: normal;
    letter-spacing: normal
}

@media(max-width:767.98px) {
    .a-tabs {
        padding: 0
    }
}

.a-tabs__nav {
    border: 0;
    margin: 0;
    padding-bottom: var(--tabs-nav-padding)
}

.a-tabs__nav-link {
    padding: var(--tabs-nav-link-padding);
    color: var(--color-medium-gray);
    font-size: var(--tabs-nav-font-size);
    letter-spacing: var(--tabs-nav-link-letter-spacing);
    line-height: var(--tabs-nav-line-height);
    text-align: center;
    border-bottom: 1px solid;
    border-color: var(--tabs-nav-link-border-bottom-color);
    width: auto
}

.a-tabs__nav-link:hover {
    background-color: var(--tabs-nav-link-hover-bg);
    color: var(--tabs-nav-link-border-bottom-color-active);
    text-decoration: none
}

.a-tabs__nav-link:hover .a-tabs__icon {
    color: var(--tabs-icon-active-color)
}

.a-tabs__nav-text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

@media(max-width:767.98px) {
    .a-tabs__nav-text {
        display: block
    }
}

.a-tabs__nav .active {
    border: 0;
    border-radius: 0;
    color: var(--tabs-nav-link-border-bottom-color-active);
    font-weight: bold;
    border-bottom: 3px solid var(--tabs-nav-link-color-active)
}

.a-tabs__nav .active .a-tabs__icon {
    color: var(--tabs-icon-active-color)
}

.a-tabs__nav .active .a-tabs__icon-active {
    display: block
}

.a-tabs__nav .active .a-tabs__icon-inactive {
    display: none
}

.a-tabs__icon {
    font-size: var(--tabs-icon-size);
    margin: 0 var(--tabs-icon-margin);
    display: none;
    color: var(--tabs-icon-color)
}

.a-tabs__icon-inactive {
    display: block
}

@media(max-width:767.98px) {
    .a-tabs__icon {
        margin-bottom: var(--tabs-icon-margin)
    }
}

.a-tabs__tab-pane,
.a-tabs .cmp-tabs__tabpanel--active {
    outline: 0
}

.a-tabs--equal-width .a-tabs__nav-link {
    width: auto
}

.a-tabs--fixed-width .a-tabs__nav-link {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

.a-tabs--two-in-row .a-tabs__nav-link {
    overflow-wrap: break-word;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    width: auto
}

.a-tabs--three-in-row .a-tabs__nav-link {
    overflow-wrap: break-word;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.a-tabs--five-in-row .a-tabs__nav-link {
    overflow-wrap: break-word;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%
}

.a-tabs--five-in-row .a-tabs__nav-link:hover {
    font-weight: bold
}

.a-tabs--five-in-row .a-tabs__nav-text {
    text-transform: uppercase;
    word-break: break-word
}

@media(max-width:991.98px) {
    .a-tabs--five-in-row .a-tabs__nav-link {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%
    }
}

.a-tabs--warning .active .a-tabs__icon,
.a-tabs--warning .active:hover .a-tabs__icon,
.a-tabs--warning .a-tabs__icon {
    color: var(--tabs-icon-warning)
}

.a-tabs--errorMessage {
    color: var(--tabs-icon-danger);
    font-size: var(--tabs-vertical-error-font-size);
    position: relative;
    top: -14px;
    font-weight: normal
}

.a-tabs--success .active .a-tabs__icon,
.a-tabs--success .active:hover .a-tabs__icon,
.a-tabs--success .a-tabs__icon {
    color: var(--tabs-icon-success)
}

.a-tabs--danger .active .a-tabs__icon,
.a-tabs--danger .active:hover .a-tabs__icon,
.a-tabs--danger .a-tabs__icon {
    color: var(--tabs-icon-danger)
}

.a-tabs--hide .active .a-tabs__icon,
.a-tabs--hide .a-tabs__icon {
    display: none
}

.a-tabs-vertical__title {
    padding: var(--tabs-vertical-spacing-xl) 0;
    word-break: break-word
}

.a-tabs-vertical .a-tabs__nav-link {
    display: block;
    font-size: var(--tabs-vertical-nav-font-size);
    line-height: var(--tabs-vertical-nav-list-line-height);
    color: var(--tabs-vertical-nav-list-color);
    text-align: left;
    border-bottom: 0;
    padding: var(--tabs-vertical-spacing-m) 0;
    letter-spacing: 0
}

.a-tabs-vertical .a-tabs__nav-link:hover {
    background-color: transparent;
    text-decoration: underline;
    color: var(--tabs-vertical-nav-color-active);
    font-weight: bold
}

.a-tabs-vertical .a-tabs__nav .active {
    color: var(--tabs-vertical-nav-color-active);
    font-weight: bold
}

.a-tabs-vertical__nav-mobile_list-item-link {
    display: block;
    padding: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    color: var(--tabs-vertical-nav-list-color)
}

.a-tabs-vertical__nav-mobile_list-item-link.active {
    font-weight: bold;
    color: var(--tabs-vertical-nav-color-active)
}

.m-table-component tbody tr td {
    word-break: break-word
}

.m-table-component tbody tr th {
    word-break: break-word
}

.m-table-component colgroup col[class*="col-"] {
    display: table-cell
}

.m-table-component .table-legends .table-legend-wrapper {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px
}

.m-table-component .table-legends .table-legend-wrapper .color-box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 15px;
    width: 15px
}

.m-table-component caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: var(--table-lightWhite);
    text-align: left;
    display: block;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--table-button-font)
}

.m-table-component .new-btn {
    font-family: var(--table-headings-font-brondon);
    max-width: 200px;
    min-width: auto;
    min-height: 35px;
    max-height: unset;
    text-transform: uppercase;
    font-size: 1rem;
    border: 0;
    cursor: pointer;
    line-height: 18px;
    padding: 10px 20px 5px 20px;
    white-space: normal;
    text-align: center;
    outline: 0;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    word-wrap: break-word;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.m-table-component__table {
    width: 100%;
    margin-bottom: 1rem
}

.m-table-component__table td {
    border-bottom: 1px solid var(--table-gray);
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid var(--table-gray)
}

.m-table-component__table th {
    border-bottom: 1px solid var(--table-gray);
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid var(--table-gray)
}

.m-table-component__table.with-border tbody tr th {
    border: 1px solid var(--table-light-gray);
    padding: 15.5px 15px !important
}

.m-table-component__table.with-border tbody tr td {
    border: 1px solid var(--table-light-gray);
    padding: 15.5px 15px !important
}

.m-table-component__table.product-specific tbody tr th {
    border: 1px solid var(--table-medium-gray);
    padding: 10px !important
}

.m-table-component__table.product-specific tbody tr th * {
    margin: 0
}

.m-table-component__table.product-specific tbody tr td {
    border: 1px solid var(--table-medium-gray);
    padding: 10px !important
}

.m-table-component__table.product-specific tbody tr td * {
    margin: 0
}

.m-table-component .table-border--bottom tbody tr th {
    padding: 15.5px 15px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    font-size: 1.125rem
}

.m-table-component .table-border--bottom tbody tr th p {
    margin-bottom: 0 !important
}

.m-table-component .table-border--bottom tbody tr td {
    padding: 15.5px 15px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    font-size: 1.125rem
}

.m-table-component .table-border--bottom tbody tr td p {
    margin-bottom: 0 !important
}

.a-table--gradient-start .table-responsive {
    background: -webkit-gradient(linear, left top, right top, from(var(--table-start-color)), to(var(--table-end-color)));
    background: linear-gradient(90deg, var(--table-start-color) var(--table-start-position), var(--table-end-color) var(--table-end-position))
}

.a-table--gradient-end .table-responsive {
    background: -webkit-gradient(linear, right top, left top, from(var(--table-start-color)), to(var(--table-end-color)));
    background: linear-gradient(-90deg, var(--table-start-color) var(--table-start-position), var(--table-end-color) var(--table-end-position))
}

.a-table--gradient-center .table-responsive {
    background: radial-gradient(circle, var(--table-start-color) var(--table-start-position), var(--table-end-color) var(--table-end-position))
}

.a-switcher .custom-switch .custom-control-input:checked~.custom-control-label::before {
    border: 0;
    background-color: var(--switcher-on-bg-color)
}

.a-switcher .custom-switch .custom-control-input:not(:disabled):active~.custom-control-label::before {
    background-color: var(--switcher-off-bg-color)
}

.a-switcher .custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: var(--switcher-button-bg-color);
    -webkit-transform: translateX(18px);
    transform: translateX(18px)
}

.a-switcher .custom-switch .custom-control-input:not(:disabled):active~.custom-control-label::before,
.a-switcher .custom-switch .custom-control-input:focus:not(:checked)~.custom-control-label::before,
.a-switcher .custom-switch .custom-control-input:focus~.custom-control-label::before {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.a-switcher .custom-switch .custom-control-label {
    font-size: var(--switcher-font-size);
    line-height: var(--switcher-line-height);
    color: var(--switcher-color);
    text-transform: none;
    font-weight: normal;
    letter-spacing: normal;
    text-indent: 12px
}

.a-switcher .custom-switch .custom-control-label::before {
    border: 0;
    background-color: var(--switcher-off-bg-color);
    top: 0rem;
    height: 1.25rem;
    width: 2.25rem;
    border-radius: 12px
}

.a-switcher .custom-switch .custom-control-label::after {
    background-color: var(--switcher-button-bg-color);
    left: calc(-2.25rem + 3px);
    top: calc(0.12rem + 2px);
    height: .75rem;
    width: .75rem;
    border-radius: 12px
}

.m-subscriptionhistory__table {
    width: 100%
}

.m-subscriptionhistory__table tr {
    border-bottom: var(--subscriptionhistory-tr-border-bottom)
}

.m-subscriptionhistory__table tr:last-child {
    border-bottom: 0
}

.m-subscriptionhistory__table--titles {
    font-weight: bold;
    font-size: var(--subscriptionhistory-titles-size);
    text-transform: capitalize
}

.m-subscriptionhistory__table--total {
    font-weight: bold
}

.m-subscriptionhistory__table--actions {
    color: var(--subscriptionhistory-action-color);
    font-weight: bold
}

.m-subscriptionhistory__table--subscription-status {
    display: none;
    text-transform: capitalize
}

.m-subscriptionhistory__table--subscription-status .badge {
    width: var(--subscriptionhistory-badge-width);
    height: var(--subscriptionhistory-badge-height);
    border-radius: 50%;
    margin-right: var(--subscriptionhistory-badge-margin-right)
}

.m-subscriptionhistory__table--subscription-status .badge.active {
    background-color: var(--subscriptionhistory-badge-active-color)
}

.m-subscriptionhistory__table--subscription-status .badge.suspended {
    background-color: var(--subscriptionhistory-badge-suspended-color)
}

.m-subscriptionhistory__table--subscription-status .badge.cancelled {
    background-color: var(--subscriptionhistory-badge-cancelled-color)
}

.m-subscriptionhistory__table--subscription-status .badge.expired {
    background-color: var(--subscriptionhistory-badge-expired-color)
}

#m-subscriptionhistory--header__actions {
    margin-bottom: var(--subscriptionhistory-badge-margin-bottom)
}

#m-subscriptionhistory--header__actions .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#m-subscriptionhistory--header__actions .cmp-title__text {
    margin: 0
}

#m-subscriptionhistory--header__actions .a-button {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media(max-width:768px) {
    #m-subscriptionhistory--header__actions .a-button {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.m-subscriptiondetails-datadisplay {
    font-size: var(--subscriptiondetails-datadisplay-font-size18);
    font-style: normal;
    font-weight: var(--subscriptiondetails-datadisplay-font-weight-bold);
    line-height: var(--subscriptiondetails-datadisplay-line-height24)
}

.m-subscriptiondetails-datadisplay__list {
    white-space: pre-wrap;
    font-size: var(--subscriptiondetails-datadisplay-font-size14);
    line-height: var(--subscriptiondetails-datadisplay-line-height20);
    font-weight: var(--subscriptiondetails-datadisplay-font-weight-normal)
}

.m-subscriptiondetails-datadisplay__list p {
    margin: 0 0 8px
}

.stickyMenu {
    background: #fff;
    position: sticky;
    top: -1px;
    z-index: 99;
    width: 100%
}

.stickyMenu .cq-placeholder {
    display: none
}

.stickyMenu .m-link-stack__container {
    padding-right: 0;
    max-width: 960px;
    margin: auto
}

.stickyMenu nav {
    background: #ececea;
    margin-bottom: 0
}

.stickyMenu nav a {
    color: #004f71;
    display: block;
    text-decoration: none
}

.stickyMenu nav a:hover {
    color: #009cde !important
}

.stickyMenu nav a:focus {
    color: #009cde !important
}

.stickyMenu .m-link-stack__dropdown-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none
}

.stickyMenu .m-link-stack__dropdown-wrapper .m-link-stack__list li {
    padding: 0;
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

@media(max-width:767px) {
    .stickyMenu .m-link-stack__dropdown-wrapper .m-link-stack__list li {
        text-align: left;
        min-width: 100%
    }
}

.stickyMenu .m-link-stack__dropdown-wrapper .m-link-stack__list li:hover {
    background-color: transparent
}

.stickyMenu .m-link-stack__dropdown-wrapper .m-link-stack__list a {
    color: #004f71;
    display: block;
    text-decoration: none;
    font-size: 16px
}

.stickyMenu .m-link-stack__dropdown-wrapper .m-link-stack__list a:hover {
    color: #009cde !important;
    background-color: transparent
}

.stickyMenu .product-title {
    padding-top: 10px;
    padding-bottom: 10px
}

@media(max-width:767px) {
    .stickyMenu .product-title {
        padding-left: 5px;
        padding-right: 5px
    }
}

.stickyMenu .product-title h1,
.stickyMenu .product-title h2 {
    margin-bottom: 0;
    padding-top: 9px;
    text-transform: none
}

.stickyMenu.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: auto;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.4);
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.4)
}

.stickyMenu.non-sticky {
    position: static
}

.sticky-menu-content .section-title-holder {
    padding: 50px 0 40px 0
}

.sticky-menu-content .section-title-holder .section-title-rule {
    border: 1px solid #222731;
    top: 18px;
    position: relative
}

.sticky-menu-content .section-title-holder .sectioncomp-title {
    text-transform: uppercase;
    max-width: 350px;
    padding: 7px 10px 7px 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 0;
    font-family: "brandon_grotesquebold", Arial, sans-serif;
    min-height: 30px;
    height: auto;
    color: #fff;
    background-color: #222731;
    text-align: center;
    position: relative;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1rem;
    line-height: 1.25
}

.sticky-menu-content .section-title-holder .section-title-desc {
    padding-top: 30px
}

.sticky-menu-content.section-title-holder .sectioncomp-title .sectioncomp-txt {
    font-size: 1.125rem
}

.stickymenu.linkstack {
    margin-top: 0 !important
}

.stickyMenu.jsOpen {
    position: fixed;
    left: 0;
    right: 0;
    padding-left: 0;
    padding-right: 0;
    top: 0;
    width: auto;
    z-index: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-box-shadow: 0 6px 6px rgba(0, 0, 0, 0.4);
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.4)
}

.android .stickyMenu.jsOpen {
    position: fixed
}

.stickyMenuHolder.jsOpen .stickyMenu {
    -webkit-box-shadow: 1px 8px 8px rgba(0, 0, 0, 0.4);
    box-shadow: 1px 8px 8px rgba(0, 0, 0, 0.4)
}

.banner-tab.non-edit .hidden-section {
    display: none
}

.banner-tab.non-edit .hidden-section.active {
    display: block
}

.product-sticky-menu {
    min-height: 30px
}

.product-sticky-menu .stickyMenu .stickyEnquiry #product-title {
    display: none;
    padding: 10px 0
}

.product-sticky-menu .stickyMenu .stickyEnquiry #product-title h1 {
    padding: 0;
    margin: 0
}

.product-sticky-menu .stickyMenu .stickyEnquiry #product-title .icons-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.product-sticky-menu .stickyMenu .stickyEnquiry #product-title .icons-section .product-support-button {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2
}

.product-sticky-menu .stickyMenu .stickyEnquiry #product-title .icons-section .print-share {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    margin: 0;
    padding: 0
}

.product-sticky-menu .stickyMenu .stickyEnquiry #product-title .icons-section .print-share .share {
    display: block;
    width: auto
}

.product-sticky-menu .stickyMenu .stickyEnquiry #product-title .icons-section .print-share .share ul {
    right: 33%
}

.product-sticky-menu .stickyMenu.jsOpen #product-title {
    display: block
}

.product-sticky-menu .sticky-menu-content>section {
    margin-bottom: 30px
}

.product-sticky-menu .sticky-menu-content>section:last-child {
    margin-bottom: 0
}

@media(min-width:768px) {
    .stickyMenu .m-link-stack__link {
        display: none
    }

    .stickyMenu .m-link-stack__dropdown-wrapper {
        display: block !important;
        width: 100%;
        margin: 0 !important;
        position: static;
        background: #ececea
    }

    .stickyMenu .m-link-stack__dropdown-wrapper:before {
        display: none
    }

    .stickyMenu .m-link-stack__dropdown-wrapper .m-link-stack__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: #ececea;
        margin-bottom: 0;
        padding: 12px 0 11px 0;
        position: relative;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        z-index: 11;
        margin-top: 0
    }

    .stickyMenu .m-link-stack__dropdown-wrapper.d-none {
        display: block !important;
        width: 100%;
        margin: 0 !important;
        position: static
    }
}

@media(max-width:991px) {
    .stickyMenu .m-link-stack__dropdown-wrapper .m-link-stack__list {
        padding-left: 20px;
        padding-right: 20px
    }

    .stickyMenu .m-link-stack__dropdown-wrapper .m-link-stack__list li {
        min-width: 100px
    }

    .stickyMenu .m-link-stack__container {
        padding-right: 0
    }
}

@media(max-width:767px) {
    .stickyMenu .m-link-stack {
        background: #ececea;
        padding: 5px 15px
    }

    .stickyMenu .m-link-stack__link .a-link a {
        display: block;
        font-size: 1rem;
        border: 0;
        padding: 0;
        position: relative;
        text-align: left;
        width: 100%;
        margin-bottom: 0;
        text-transform: uppercase;
        line-height: 2rem;
        font-family: "brandon_grotesquebold", Arial, sans-serif;
        font-weight: 700
    }

    .stickyMenu .m-link-stack__link .a-link .abt-icon {
        right: 0;
        top: 7px
    }

    .stickyMenu .m-link-stack__link .a-link a.active {
        font-weight: 700
    }

    .stickyMenu .m-link-stack__dropdown-wrapper li {
        font-size: 1rem;
        font-family: "brandon_grotesqueregular", Arial, sans-serif;
        font-weight: normal;
        text-transform: uppercase;
        padding: 0 0 10px 0
    }

    .stickyMenu .m-link-stack__dropdown-wrapper li:last-child {
        padding-bottom: 0
    }

    .stickyMenu .m-link-stack__dropdown-wrapper a:hover {
        color: #009cde !important
    }

    .stickyMenu .m-link-stack__dropdown-wrapper a:focus {
        color: #009cde !important
    }

    .stickyMenu .m-link-stack__dropdown-wrapper .m-link-stack__list {
        padding-left: 0;
        padding-right: 0
    }

    .stickyMenu .m-link-stack__dropdown-wrapper .m-link-stack__list li {
        margin-bottom: 15px
    }

    .stickyMenu .m-link-stack__dropdown-wrapper .m-link-stack__list li:last-child {
        margin-bottom: 10px
    }

    .stickyMenu .m-link-stack__list {
        margin-bottom: 0;
        margin-top: 5px
    }

    .stickyMenu .m-link-stack__list li .a-link a {
        color: #004f71;
        display: block;
        text-decoration: none
    }

    .stickyMenu .m-link-stack--border::before {
        display: none
    }
}

.a-stepper__input-wrapper {
    border: var(--stepper-border);
    border-collapse: collapse;
    display: inline-block;
    border-radius: 4px
}

.a-stepper__input-grp-btn {
    display: inline-block;
    border-collapse: collapse;
    width: 55px;
    height: 48px;
    vertical-align: middle;
    position: relative;
    cursor: pointer
}

.a-stepper__input-grp-btn:first-child {
    border: 1px solid transparent;
    background-color: var(--stepper-button-primary-color)
}

.a-stepper__input-grp-btn:first-child:hover {
    border-right: var(--stepper-border)
}

.a-stepper__input-grp-btn:first-child:active,
.a-stepper__input-grp-btn:first-child:focus {
    background-color: var(--stepper-button-bg-color);
    border-right: 1px solid var(--stepper-button-bg-color);
    outline: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.a-stepper__input-grp-btn:last-child {
    border: 1px solid transparent;
    background-color: var(--stepper-button-primary-color)
}

.a-stepper__input-grp-btn:last-child:hover {
    border-left: var(--stepper-border)
}

.a-stepper__input-grp-btn:last-child:active,
.a-stepper__input-grp-btn:last-child:focus {
    background-color: var(--stepper-button-bg-color);
    border-left: 1px solid var(--stepper-button-bg-color);
    outline: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.a-stepper--btn {
    outline: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    color: var(--stepper-button-color);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.a-stepper--btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none
}

.a-stepper--btn:hover {
    text-decoration: none
}

.a-stepper__number {
    border: 0;
    font-size: var(--stepper-font-size);
    line-height: var(--stepper-line-height);
    color: var(--stepper-button-color);
    text-transform: none;
    font-weight: normal;
    letter-spacing: normal;
    display: inline-block;
    height: 47px;
    vertical-align: middle;
    width: auto;
    min-width: 55px;
    text-align: center;
    padding: 0;
    background-color: var(--stepper-input-bg-color)
}

.a-stepper__number:focus {
    -webkit-box-shadow: none;
    box-shadow: none
}

.a-stepper__min-error {
    color: var(--stepper-errormessage-color);
    font-size: var(--stepper-errormessage-font-size);
    line-height: var(--stepper-errormessage-text-line-height);
    margin-top: var(--stepper-errormessage-text-margin-top);
    display: none;
    text-transform: none;
    font-weight: normal
}

.a-stepper__max-error {
    color: var(--stepper-errormessage-color);
    font-size: var(--stepper-errormessage-font-size);
    line-height: var(--stepper-errormessage-text-line-height);
    margin-top: var(--stepper-errormessage-text-margin-top);
    display: none;
    text-transform: none;
    font-weight: normal
}

.move-stepper {
    position: relative;
    top: -110px;
    height: 0
}

.a-spinner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    z-index: 999;
    background-color: var(--spinner-bg)
}

.a-spinner .spinner-border {
    height: var(--spinner-width);
    width: var(--spinner-height);
    color: var(--spinner-border-color);
    position: absolute
}

.a-spinner--static {
    position: static
}

.a-spinner--static .spinner-border {
    position: static
}

.a-spinner--white .spinner-border {
    color: #fff
}

.m-signup .a-link {
    font-weight: normal
}

.m-shipping-methods {
    margin: var(--shipping-methods-margin)
}

.m-shipping-methods__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: var(--shipping-methods-list-item-padding);
    border-bottom: var(--shipping-methods-list-item-border)
}

.m-shipping-methods__list-item:first-child {
    border-top: var(--shipping-methods-list-item-border)
}

.m-shipping-methods__radio-btn,
.m-shipping-methods__radio-btn .a-radio__label {
    margin-bottom: 0
}

.m-shipping-methods__price {
    font-size: var(--shipping-methods-price-font-size);
    margin-left: auto
}

.m-shipping-methods__delivery {
    margin: 7px 0 0;
    width: 100%;
    font-style: italic
}

.o-section-panel {
    max-height: var(--section-panel-max-height);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative
}

@media(max-width:767.98px) {
    .o-section-panel {
        max-height: inherit
    }

    .o-section-panel .m-tiles-list__column {
        max-width: 100%
    }
}

.o-section-panel__wrapper {
    padding: var(--section-panel-padding)
}

@media(max-width:767.98px) {
    .o-section-panel__wrapper {
        padding: var(--section-panel-padding-mobile)
    }
}

.o-section-panel__heading .a-title {
    margin-bottom: var(--section-panel-heading-margin-bottom)
}

.o-section-panel__container {
    position: relative
}

@media(max-width:767.98px) {
    .o-section-panel__container {
        padding: 0
    }
}

.o-section-panel__title h1,
.o-section-panel__title h2,
.o-section-panel__title h3,
.o-section-panel__title h4,
.o-section-panel__title h5,
.o-section-panel__title h6 {
    margin-bottom: var(--section-panel-title-margin-bottom)
}

.o-section-panel__logo .a-logo-comp {
    margin-bottom: var(--section-panel-logo-margin-bottom)
}

.o-section-panel__logo .a-logo-comp--image {
    max-height: var(--section-panel-logo-height)
}

@media(min-width:768px) {
    .o-section-panel__logo .a-logo-comp--image {
        max-height: var(--section-panel-logo-height)
    }
}

@media(max-width:991.98px) {
    .o-section-panel__logo .a-logo-comp--image {
        max-height: var(--section-panel-logo-height)
    }
}

@media(max-width:767.98px) {
    .o-section-panel__logo .a-logo-comp--image {
        max-height: var(--section-panel-logo-height)
    }
}

.o-section-panel__btn-wrap .a-button {
    display: inline-block
}

@media(max-width:767.98px) {
    .o-section-panel__btn-wrap .a-button {
        display: block;
        width: 100%
    }

    .o-section-panel__btn-wrap .a-button .a-button {
        display: block;
        width: 100%
    }
}

.o-section-panel__para {
    margin-bottom: var(--section-panel-para-margin-bottom)
}

.o-section-panel .m-tiles-list__container {
    max-width: inherit;
    padding: 0
}

.o-section-panel .m-tiles-list {
    margin-top: var(--section-panel-tiles-margin-top)
}

.o-section-panel__tiles {
    margin: 0 -10px
}

.o-section-panel--start .o-section-panel__tiles .m-tiles-list {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start
}

.o-section-panel--start .row {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.o-section-panel--center .o-section-panel__logo,
.o-section-panel--center .o-section-panel__btn-wrap,
.o-section-panel--center .o-section-panel__title,
.o-section-panel--center .o-section-panel__para {
    text-align: center
}

.o-section-panel--center .o-section-panel__tiles .m-tiles-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.o-section-panel--center .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.o-section-panel--light {
    background-color: var(--section-panel-light-color)
}

.o-section-panel--dark {
    background-color: var(--section-panel-dark)
}

.o-section-panel--dark .a-title__text {
    color: var(--section-panel-dark-color);
    border-color: var(--section-panel-dark-border-color)
}

.o-section-panel--dark .a-title__text:after,
.o-section-panel--dark .a-title__text:before {
    border-top-color: var(--section-panel-dark-border-color)
}

.o-section-panel--dark h1,
.o-section-panel--dark h2,
.o-section-panel--dark h3,
.o-section-panel--dark h4,
.o-section-panel--dark h5,
.o-section-panel--dark h6,
.o-section-panel--dark p {
    color: var(--section-panel-dark-color)
}

.o-section-panel .a-bg-img {
    z-index: -1
}

.o-section-panel--gradient-start .o-section-panel__wrapper {
    background: -webkit-gradient(linear, left top, right top, from(var(--sectionPanel-start-color)), to(var(--sectionPanel-end-color)));
    background: linear-gradient(90deg, var(--sectionPanel-start-color) var(--sectionPanel-start-position), var(--sectionPanel-end-color) var(--sectionPanel-end-position))
}

.o-section-panel--gradient-center .o-section-panel__wrapper {
    background: radial-gradient(circle, var(--sectionPanel-start-color) var(--sectionPanel-start-position), var(--sectionPanel-end-color) var(--sectionPanel-end-position))
}

.o-section-panel--gradient-end .o-section-panel__wrapper {
    background: -webkit-gradient(linear, right top, left top, from(var(--sectionPanel-start-color)), to(var(--sectionPanel-end-color)));
    background: linear-gradient(-90deg, var(--sectionPanel-start-color) var(--sectionPanel-start-position), var(--sectionPanel-end-color) var(--sectionPanel-end-position))
}

.a-search {
    padding: 2px 0 0;
    position: relative;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    color: var(--search-input-color)
}

.a-search form {
    -webkit-margin-after: 0;
    margin-block-end: 0
}

@media(max-width:1199.98px) {
    .a-search {
        left: 0 !important
    }
}

.a-search__input {
    background-color: transparent;
    width: 125px;
    -webkit-appearance: textfield;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: var(--search-input-font-size);
    line-height: var(--search-input-line-height);
    padding: var(--search-input-padding);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    border: 0;
    border-radius: var(--search-input-border-radius);
    outline: 0;
    cursor: pointer
}

.a-search__input::-webkit-search-decoration,
.a-search__input::-webkit-search-cancel-button,
.a-search__input::-webkit-search-results-button,
.a-search__input::-webkit-search-results-decoration {
    display: none
}

.a-search__input::-ms-clear,
.a-search__input::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

.a-search__input::-webkit-input-placeholder {
    color: var(--search-input-color);
    opacity: 1
}

.a-search__input::-moz-placeholder {
    color: var(--search-input-color);
    opacity: 1
}

.a-search__input:-ms-input-placeholder {
    color: var(--search-input-color);
    opacity: 1
}

.a-search__input::-ms-input-placeholder {
    color: var(--search-input-color);
    opacity: 1
}

.a-search__input::placeholder {
    color: var(--search-input-color);
    opacity: 1
}

@media(max-width:1199.98px) {
    .a-search__input {
        width: 34px !important
    }
}

.a-search--icon-left {
    position: absolute;
    top: 12px;
    left: 12px
}

.a-search--icon-left .abt-icon {
    font-size: var(--search-input-icon-font-size)
}

.a-search--icon-right {
    display: none;
    position: absolute;
    top: 12px;
    right: 10px;
    cursor: pointer
}

.a-search--expand {
    display: block;
    z-index: 999;
    left: 0 !important
}

.a-search--expand .a-search__input {
    background-color: var(--search-input-bg);
    width: 100%;
    cursor: text
}

.a-search--expand .a-search__input::-webkit-input-placeholder {
    color: transparent;
    opacity: 1
}

.a-search--expand .a-search__input::-moz-placeholder {
    color: transparent;
    opacity: 1
}

.a-search--expand .a-search__input:-ms-input-placeholder {
    color: transparent;
    opacity: 1
}

.a-search--expand .a-search__input::-ms-input-placeholder {
    color: transparent;
    opacity: 1
}

.a-search--expand .a-search__input::placeholder {
    color: transparent;
    opacity: 1
}

.a-search--expand .a-search--icon-left {
    cursor: text
}

.a-search--expand .a-search--icon-right {
    display: block;
    top: 4px;
    padding: 6px
}

.a-search--expand .a-search--icon-right:focus {
    outline: 2px solid
}

.a-search--expand .a-search--icon-right em {
    vertical-align: middle
}

.o-search-res {
    background-color: var(--search-results-background-color)
}

.o-search-res .mobile-carousel {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1px;
    overflow-x: scroll;
    overflow-y: hidden
}

.o-search-res .mobile-carousel [data-js-component="carousel"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2px 4px 2px 2px
}

.o-search-res .mobile-carousel .o-features-card {
    width: 100%;
    scroll-snap-align: start
}

.o-search-res[data-results="0"] .o-search-res__no-results {
    display: block
}

.o-search-res[data-results="0"] .o-search-res__header,
.o-search-res[data-results="0"] .o-search-res__results,
.o-search-res[data-results="0"] .a-pagination {
    display: none
}

.o-search-res:not([data-results-header="true"]) .o-search-res__header {
    display: none
}

.o-search-res__no-results {
    display: none
}

.o-search-res .a-tabs__content {
    position: absolute;
    left: -9999px;
    top: -9999px
}

.o-search-res__header {
    padding-bottom: var(--search-results-header-bottom);
    border-bottom: var(--search-results-border-bottom)
}

@media(max-width:991.98px) {
    .o-search-res__header-title {
        font-size: var(--search-results-mobile-title-font-size);
        line-height: var(--search-results-mobile-title-line-height)
    }
}

@media(min-width:768px) {
    .o-search-res__header-title {
        line-height: var(--search-results-header-title-line-height)
    }
}

.o-search-res__result {
    border-bottom: var(--search-results-border-bottom)
}

@media(max-width:991.98px) {
    .o-search-res__result {
        padding: var(--search-results-mobile-result-padding)
    }
}

@media(min-width:768px) {
    .o-search-res__result {
        padding: var(--search-results-result-padding)
    }
}

.o-search-res__result-title-link {
    color: var(--search-results-title-color)
}

@media(max-width:991.98px) {
    .o-search-res__result-title-link {
        font-size: var(--search-results-result-mobile-font-size);
        font-weight: 400
    }
}

@media(max-width:991.98px) {
    .o-search-res__result-desc {
        margin-top: var(--search-results-mobile-desc-space-top)
    }
}

@media(min-width:768px) {
    .o-search-res__result-desc {
        margin-top: var(--search-results-desc-space-top)
    }
}

.o-search-res .m-search-bar {
    margin: var(--search-results-search-bar-spacing)
}

.o-search-res .a-pagination {
    margin: var(--search-results-pagination-spacing)
}

@media(max-width:767.98px) {
    .o-search-res__container .o-cards-carousel .slick-slide {
        text-align: center
    }
}

.o-search-res__container .o-cards-carousel .m-card {
    width: auto
}

.o-search-res__container .o-cards-carousel .m-card:before {
    -webkit-box-shadow: none;
    box-shadow: none
}

.o-search-res__container .o-cards-carousel .m-card .cmp-image__image {
    -o-object-fit: contain;
    object-fit: contain
}

.o-search-res .chipslist {
    position: relative
}

.o-search-results-filter div[data-is-primary="true"].primaryActive .a-checkbox__text span {
    display: none
}

.o-search-results-filter div[data-is-primary="true"].primaryActive .a-link__text--active .a-checkbox__text span {
    display: inline-block
}

.o-search-results-filter .filter-text {
    margin-bottom: 0
}

.o-search-results-filter .filter-text h4 {
    font-weight: normal
}

.o-search-results-filter .o-search-res__no-results {
    margin-top: 30px
}

@media(max-width:767.98px) {
    .o-search-results-filter {
        padding: 0
    }
}

.o-search-results-filter hr {
    border-width: var(--search-results-with-filter-border-width)
}

.o-search-results-filter a {
    color: inherit;
    text-decoration: none;
    font-size: var(--search-results-with-filter-font-size)
}

.o-search-results-filter .text-end {
    font-size: var(--search-results-with-filter-text-end-font-size);
    z-index: 9
}

@media(max-width:767.98px) {
    .o-search-results-filter .text-end {
        text-align: right
    }
}

.o-search-results-filter .sort-dropdown {
    position: absolute;
    right: 35px
}

.o-search-results-filter .dropdown-toggle {
    position: relative;
    left: var(--search-results-with-filter-dropdown-toggle-left);
    font-size: var(--search-results-with-filter-dropdown-toggle-a-font-size);
    border-bottom: var(--search-results-with-filter-border-bottom)
}

.o-search-results-filter .dropdown-toggle span {
    border-bottom: var(--search-results-with-filter-dropdown-toggle-border-bottom)
}

.o-search-results-filter .dropdown-toggle span .abt-icon {
    font-size: var(--search-results-with-filter-dropdown-toggle-icon-font-size);
    vertical-align: middle;
    padding-left: 7px
}

@media(max-width:767.98px) {
    .o-search-results-filter .dropdown-toggle span {
        border-bottom: var(--search-results-with-filter-dropdown-toggle-mobile-border-bottom)
    }
}

@media(max-width:991.98px) {
    .o-search-results-filter .dropdown-toggle span {
        border-bottom: var(--search-results-with-filter-dropdown-toggle-mobile-border-bottom)
    }
}

.o-search-results-filter .dropdown-toggle::after {
    display: none
}

.o-search-results-filter img {
    cursor: pointer
}

.o-search-results-filter .dropdown-item:active,
.o-search-results-filter .dropdown-item:hover {
    background-color: var(--search-results-with-filter-dropdown-hover-font-size)
}

.o-search-results-filter .dropdown-menu {
    border: var(--search-results-with-filter-dropdown-menu-border);
    border-radius: 0;
    z-index: 110
}

.o-search-results-filter .dropdown-menu li:hover {
    background-color: var(--search-results-with-filter-dropdown-menu-li-background-color)
}

.o-search-results-filter .dropdown-menu a {
    border-bottom: 0;
    padding: 8px
}

.o-search-results-filter .dropdown-menu a .abt-icon {
    padding-left: 5px
}

.o-search-results-filter .filter {
    margin-top: -25px;
    z-index: 10
}

@media(max-width:767.98px) {
    .o-search-results-filter .filter {
        margin-top: 0
    }
}

.o-search-results-filter .filter button {
    margin-bottom: var(--search-results-with-filter-margin-bottom);
    background-color: var(--search-results-with-filter-background-color)
}

.o-search-results-filter .filter button .abt-icon {
    padding-left: var(--search-results-with-filter-button-icon-padding-left);
    font-size: var(--search-results-with-filter-button-icon-font-size);
    vertical-align: middle
}

@media(max-width:767.98px) {
    .o-search-results-filter--row {
        padding-right: 0
    }
}

@media(max-width:767.98px) {
    .o-search-results-filter .dropdown {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .o-search-results-filter .mob-filter {
        padding-left: 0
    }

    .o-search-results-filter .mob-filter .abt-icon {
        vertical-align: middle;
        margin-right: 15px
    }

    .o-search-results-filter .result-counts {
        margin-bottom: 20px
    }

    .o-search-results-filter .filter-text {
        display: none
    }
}

.o-search-results-filter .sticky-menu__filter .a-list-result__listview {
    margin-left: 0;
    margin-right: 0
}

.o-search-results-filter .sticky-menu__filter .d-flex.search-results-container {
    display: none !important
}

.o-search-results-filter .sticky-menu__filter .row.o-search-res__container>div {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    display: block !important
}

.o-search-results-filter .sticky-menu__filter .m-search-category {
    margin: 0
}

.o-search-results-filter .sticky-menu__filter .m-search-category__header {
    display: none
}

.o-search-results-filter .sticky-menu__filter .m-search-category__form {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    padding: 0;
    margin: 10px 0
}

.o-search-results-filter .sticky-menu__filter .m-search-category__content {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.o-search-results-filter .sticky-menu__filter .m-search-category__content .a-link__text {
    font-size: 15px
}

.o-search-results-filter .sticky-menu__filter .m-search-category__content .a-link__text span {
    display: none
}

.o-search-results-filter .sticky-menu__filter .m-search-category__content.category-parent .a-link__text {
    display: none
}

.o-search-results-filter .sticky-menu__filter .m-search-category__content.category-parent .a-link__text--active {
    display: block
}

.o-search-results-filter .sticky-menu__filter .m-search-category__item {
    margin: 0;
    border: 0
}

.o-search-results-filter .sticky-menu__filter .faq-link .a-link {
    padding: 0 !important
}

.o-search-results-filter .sticky-menu__filter .faq-link .a-link__text {
    margin-right: 10px;
    color: var(--search-result-with-sticky-link-color) !important;
    font-weight: normal !important;
    cursor: pointer
}

.o-search-results-filter .sticky-menu__filter .faq-link .a-link__text:hover,
.o-search-results-filter .sticky-menu__filter .faq-link .a-link__text:focus {
    text-decoration: none !important;
    color: var(--search-result-with-sticky-link-color-active) !important
}

.o-search-results-filter .sticky-menu__filter .faq-link .a-link__text--active {
    color: var(--search-result-with-sticky-facet-link-color-active) !important;
    display: block
}

.o-search-results-filter .sticky-menu__filter .faq-link:last-of-type .a-link__text {
    margin: 0 !important
}

.o-search-results-filter .sticky-menu__filter .stickyMenu .faq-link .a-link__text--active {
    color: var(--search-result-with-sticky-link-color-active) !important
}

.o-search-results-filter .sticky-menu__filter .m-link-stack__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.o-search-results-filter .sticky-menu__filter .m-link-stack__title h4 {
    padding-top: 0;
    margin: 0;
    color: var(--search-result-with-sticky-facet-link-color-active);
    font-weight: normal !important;
    font-size: 16px !important;
    text-transform: uppercase;
    font-family: var(--search-result-with-sticky-link-font);
    line-height: 24px !important
}

.o-search-results-filter .sticky-menu__filter .m-link-stack__list {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.o-search-results-filter .sticky-menu__filter .m-link-stack__list.d-none {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.o-search-results-filter .sticky-menu__filter .m-link-stack__list a {
    font-size: 16px;
    text-transform: uppercase
}

.o-search-results-filter .sticky-menu__filter .searchfacet {
    margin: 0
}

.o-search-results-filter .sticky-menu__filter .filter {
    display: none
}

.o-search-results-filter .sticky-menu__filter .o-search-res__results--view.d-flex.flex-wrap.pt-3 {
    padding-top: 0 !important
}

.o-search-results-filter .sticky-menu__filter .a-card-result__cardrow {
    border: 1px solid var(--search-result-with-sticky-card-border-color);
    padding-bottom: 15px
}

.o-search-results-filter .sticky-menu__filter .a-card-result__cardrow a {
    color: var(--search-result-with-sticky-link-color);
    font-size: 1rem;
    font-family: var(--search-result-with-sticky-text-font);
    font-weight: normal;
    text-decoration: none
}

.o-search-results-filter .sticky-menu__filter .a-card-result__cardrow:hover {
    background: var(--search-result-with-sticky-card-border-hover-color);
    cursor: pointer
}

.o-search-results-filter .sticky-menu__filter .a-card-result__cardrow:hover .a-card-result__title,
.o-search-results-filter .sticky-menu__filter .a-card-result__cardrow:hover a {
    color: var(--search-result-with-sticky-link-color-active);
    text-decoration: none
}

@media(min-width:576px) {
    .o-search-results-filter .sticky-menu__filter .a-card-result__cardrow {
        max-width: calc(33.33% - 30px);
        margin: 15px
    }
}

@media(max-width:767.98px) {
    .o-search-results-filter .sticky-menu__filter .a-card-result__cardrow {
        margin: 7.5px
    }
}

.o-search-results-filter .sticky-menu__filter .a-card-result__image {
    margin: 0 -15px
}

.o-search-results-filter .sticky-menu__filter .a-card-result__title {
    font-size: 1.125rem !important;
    line-height: 24px !important;
    color: var(--search-result-with-sticky-link-color);
    text-transform: uppercase
}

@media(max-width:767.98px) {
    .o-search-results-filter .sticky-menu__filter .a-card-result__title {
        font-size: 1rem !important;
        line-height: 22px !important
    }
}

.o-search-results-filter .sticky-menu__filter .a-card-result__description {
    color: var(--search-result-with-sticky-facet-link-color-active);
    font-size: 1rem;
    font-family: var(--search-result-with-sticky-text-font)
}

.o-search-results-filter .sticky-menu__filter .container[data-js-component="search-results-with-filters"] {
    max-width: 100% !important;
    padding: 0 !important
}

.o-search-results-filter .sticky-menu__filter .container[data-js-component="search-results-with-filters"] .row.o-search-res__container {
    margin: 0
}

.o-search-results-filter .sticky-menu__filter+.columncontrol {
    padding-top: 15px
}

.o-search-results-filter .sticky-menu__filter+.columncontrol .container {
    position: relative
}

.o-search-results-filter .sticky-menu__filter+.columncontrol .container:before {
    content: "";
    position: absolute;
    width: calc(100% - 30px);
    height: 1px;
    background: var(--search-result-with-sticky-splitter-color);
    top: 0;
    left: 15px
}

.o-search-results-filter .sticky-menu__filter+.columncontrol .container:after {
    content: "";
    position: absolute;
    width: calc(100% - 30px);
    height: 1px;
    background: var(--search-result-with-sticky-splitter-color);
    bottom: 0;
    left: 15px
}

.o-search-results-filter .sticky-menu__filter+.columncontrol .container #stickyFilterCount {
    margin: 10px 0
}

.o-search-results-filter .sticky-menu__filter+.columncontrol .container .a-backtotop {
    position: static;
    opacity: 1;
    float: right;
    margin: 10px 0
}

.o-search-results-filter .sticky-menu__filter+.columncontrol .container .a-backtotop .btn {
    color: var(--search-result-with-sticky-link-color);
    padding: 0;
    font-family: var(--search-result-with-sticky-text-font);
    font-weight: normal;
    text-transform: capitalize
}

.o-search-results-filter .sticky-menu__filter+.columncontrol .container .a-backtotop .btn:hover,
.o-search-results-filter .sticky-menu__filter+.columncontrol .container .a-backtotop .btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none
}

.a-list-result {
    --list-result-font-family: Helvetica, Arial, sans-serif;
    --list-result-margin: .9375rem;
    --list-result-padding: 0 .9375rem;
    --list-result-title-font-size: 1.5rem;
    --list-result-title-line-height: 2rem;
    --list-result-title-margin: 1rem 0;
    --list-result-desc-margin-bottom: 1rem;
    --list-result-desc-font-size: .875rem;
    --list-result-desc-line-height: 1.25rem;
    --list-result-text-color: #000;
    --list-result-title-decoration: none
}

.a-card-result {
    color: var(--card-result-text-color);
    border-bottom: var(--card-result-border-bottom)
}

.a-card-result__image {
    margin-bottom: 0
}

.a-card-result__image img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.a-card-result__cardrow {
    margin: var(--card-result-margin)
}

.a-card-result__cardrow .a-checkbox__custom {
    border-radius: 0 !important
}

.a-card-result__cardrow.aboveImage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.a-card-result__cardrow.aboveImage .m-search-results__card-item-detail-category-tag {
    margin-bottom: 16px
}

.a-card-result__cardrow.belowImage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.a-card-result__cardrow.belowImage .m-search-results__card-item-detail-category-tag {
    margin-bottom: 0
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: var(--card-result-font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    color: var(--white-color);
    padding: 4px 0
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag[data-category-pin="false"] i {
    display: none
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag.none {
    border-radius: 0
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag.medium {
    border-radius: 6px
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag.pill {
    border-radius: 500px
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag .abt-icon {
    font-size: 16px;
    position: absolute
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag .abt-icon.none {
    display: none
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag .abt-icon.left {
    padding-left: 5px;
    left: 0
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag .abt-icon.left+span.left {
    padding-left: 25px
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag .abt-icon.right {
    padding-right: 5px;
    right: 0
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag .abt-icon.right+span.right {
    padding-right: 25px
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag span {
    width: 100%;
    text-align: center
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag span.left {
    text-align: left;
    padding-left: 5px
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag span.right {
    text-align: right;
    padding-right: 5px
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag.regal-blue {
    background-color: var(--card-result-category-bar-medium-blue)
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag.cv-link-blue {
    background-color: var(--card-result-category-cv-blue)
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag.magenta {
    background-color: var(--card-result-category-magenta)
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag.gold {
    background-color: var(--card-result-category-gold);
    color: var(--card-result-category-charcoal)
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag.purple {
    background-color: var(--card-result-category-purple)
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag.red {
    background-color: var(--card-result-category-red)
}

.a-card-result__cardrow .m-search-results__card-item-detail-category-tag.shuttle-gray {
    background-color: var(--card-result-category-dark-gray)
}

.a-card-result__cardrow .m-search-results__card-item-detail--main-image {
    margin-bottom: 16px
}

.a-card-result__cardrow .m-search-results__card-item-detail--main-image.none {
    display: none
}

.a-card-result__cardrow .m-search-results__card-item-detail--main-image.aboveImage {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 4px
}

.a-card-result__cardrow .m-search-results__card-item-detail--main-image.belowImage {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
}

.a-card-result__title {
    font-family: var(--card-result-font-family);
    font-size: var(--card-result-title-font-size);
    font-weight: 700;
    line-height: var(--card-result-title-line-height);
    margin: var(--card-result-title-margin)
}

.a-card-result__link {
    text-decoration: underline;
    cursor: pointer;
    font-size: var(--card-result-desc-font-size);
    line-height: var(--card-result-desc-line-height);
    letter-spacing: 0;
    font-weight: 700
}

.a-card-result__description {
    font-family: var(--card-result-font-family);
    font-size: var(--card-result-desc-font-size);
    line-height: var(--card-result-desc-line-height);
    margin-bottom: var(--card-result-desc-margin-bottom);
    font-weight: normal
}

.a-list-result {
    color: var(--list-result-text-color)
}

.a-list-result__listview {
    border-bottom: var(--list-result-border-bottom);
    margin: var(--list-result-margin);
    padding: var(--list-result-padding);
    width: 100% !important
}

.a-list-result__img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.a-list-result__title {
    font-family: var(--list-result-font-family);
    font-size: var(--list-result-title-font-size);
    font-weight: 700;
    line-height: var(--list-result-title-line-height);
    margin: var(--list-result-title-margin)
}

.a-list-result__link {
    text-decoration: underline;
    cursor: pointer;
    font-size: var(--list-result-desc-font-size);
    line-height: var(--list-result-desc-line-height);
    letter-spacing: 0;
    font-weight: 700
}

.a-list-result__description {
    font-family: var(--list-result-font-family);
    font-size: var(--list-result-desc-font-size);
    line-height: var(--list-result-desc-line-height);
    margin-bottom: var(--list-result-desc-margin-bottom);
    font-weight: normal
}

.searchfacet {
    --searchfacet-overlay-padding: .75rem;
    --searchfacet-overlay-background: #fff;
    --search-facet-m-link-stack-color: #495057
}

.m-searchfacet__clear-all {
    --searchfacet-m-clear-all-font-size: .875rem;
    --searchfacet-m-clear-all-color: #000;
    --searchfacet-m-clear-all-letter-spacing: .5px;
    --searchfacet-m-clear-line-height: 1.25rem
}

.m-searchfacet__filter-back {
    --searchfacet-m-filter-back-font-size: .875rem;
    --searchfacet-m-filter-back-color: #000;
    --searchfacet-m-filter-back-letter-spacing: .81px;
    --searchfacet-m-filter-back-line-height: 1.25rem;
    --search-facet-m-back-icon-font-size: 1rem;
    --search-facet-m-back-icon-top: .125rem;
    --search-facet-m-back-icon-right: .5rem
}

.filter-title {
    --search-facet-with-filter-title-padding: .9375rem;
    --search-facet-with-filter-title-margin-top: 1.5rem;
    --search-facet-with-filter-title-border-bottom: .625rem solid #eee;
    --search-facet-with-filter-title-padding-bottom: 1rem
}

.o-search-results-filter .searchfacet {
    margin-top: -25px
}

@media(max-width:767.98px) {
    .o-search-results-filter .searchfacet {
        display: none;
        opacity: 1;
        background: var(--searchfacet-overlay-background);
        width: 100%;
        height: 100%;
        z-index: 9999;
        top: 0;
        left: 0;
        position: fixed;
        padding: var(--searchfacet-overlay-padding);
        overflow-y: scroll;
        margin-top: 0
    }
}

.o-search-results-filter .searchfacet .m-link-stack a {
    color: var(--search-facet-m-link-stack-color)
}

.o-search-results-filter .searchfacet .m-link-stack a:hover,
.o-search-results-filter .searchfacet .m-link-stack a:active,
.o-search-results-filter .searchfacet .m-link-stack a:focus {
    color: var(--search-facet-m-link-stack-color)
}

.o-search-results-filter .searchfacet .m-link-stack-faq .faq-link.facet-link:nth-of-type(1n + 4) {
    display: none
}

.o-search-results-filter .m-searchfacet__clear-all {
    display: none
}

@media(max-width:767.98px) {
    .o-search-results-filter .m-searchfacet__clear-all {
        display: block;
        text-align: right;
        font-size: var(--searchfacet-m-clear-all-font-size);
        color: var(--searchfacet-m-clear-all-color);
        text-decoration: underline;
        letter-spacing: var(--searchfacet-m-clear-all-letter-spacing);
        line-height: var(--searchfacet-m-clear-line-height);
        cursor: pointer
    }
}

.o-search-results-filter .m-searchfacet__filter-back {
    display: none
}

@media(max-width:767.98px) {
    .o-search-results-filter .m-searchfacet__filter-back {
        display: block;
        font-size: var(--searchfacet-m-filter-back-font-size);
        color: var(--searchfacet-m-filter-back-color);
        letter-spacing: var(--searchfacet-m-filter-back-letter-spacing);
        line-height: var(--searchfacet-m-filter-back-line-height);
        cursor: pointer;
        text-transform: uppercase
    }
}

@media(max-width:767.98px) {
    .o-search-results-filter .m-searchfacet__filter-back .m-searchfacet__back-icon {
        font-size: var(--search-facet-m-back-icon-font-size);
        position: relative;
        top: var(--search-facet-m-back-icon-top);
        right: var(--search-facet-m-back-icon-right)
    }
}

.o-search-results-filter .filter-title {
    display: none
}

@media(max-width:767.98px) {
    .o-search-results-filter .filter-title {
        display: block;
        width: 100%;
        text-align: center;
        padding: var(--search-facet-with-filter-title-padding);
        margin-top: var(--search-facet-with-filter-title-margin-top)
    }

    .o-search-results-filter .filter-title h4 {
        font-weight: normal
    }
}

.o-search-results-filter .m-search-category {
    margin-bottom: var(--search-category-margin-bottom)
}

@media(max-width:767.98px) {
    .o-search-results-filter .m-search-category {
        margin-top: var(--search-facet-m-search-category-marign-top)
    }
}

.o-search-results-filter .m-search-category__item {
    border-bottom: var(--search-category-item-border-bottom);
    margin-bottom: var(--search-category-item-margin-bottom)
}

.o-search-results-filter .m-search-category__item .a-checkbox__custom {
    border-radius: 0 !important
}

.o-search-results-filter .m-search-category__item .a-checkbox__custom:after {
    content: "";
    position: absolute;
    display: none;
    left: var(--search-category-checkbox-left);
    top: var(--search-category-checkbox-top);
    width: var(--search-category-checkbox-width);
    height: var(--search-category-checkbox-height);
    border: solid var(--checkbox-tick-color);
    border-width: var(--search-category-checkbox-border-width);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg)
}

.o-search-results-filter .m-search-category__item .a-link__text--active .a-checkbox__custom {
    background-color: var(--checkbox-checked-bg)
}

.o-search-results-filter .m-search-category__item .a-link__text--active .a-checkbox__custom:after {
    display: block
}

@media(max-width:767.98px) {
    .o-search-results-filter .m-search-category__item:nth-of-type(1n + 4) {
        display: none
    }

    .o-search-results-filter .m-search-category__item .a-checkbox__custom {
        height: var(--search-facet-a-checkbox-custom-height);
        width: var(--search-facet-a-checkbox-custom-width);
        border-radius: 0;
        left: var(--search-facet-a-checkbox-custom-left)
    }
}

.o-search-results-filter .m-search-category__data {
    margin-bottom: 0
}

@media(max-width:767.98px) {
    .o-search-results-filter .m-search-category__data {
        padding-left: var(--search-facet-m-search-data)
    }
}

.o-search-results-filter .m-search-category__section-heading {
    font-size: var(--section-heading-font);
    border-bottom: var(--section-heading-border-bottom);
    margin: var(--section-heading-margin)
}

.o-search-results-filter .m-search-category__section-heading h5 {
    font-weight: normal;
    margin-bottom: var(--section-heading-margin-bottom)
}

.o-search-results-filter .m-search-category .search-icon {
    font-size: var(--search-facet-search-icon-font-size);
    position: absolute;
    top: var(--search-facet-search-icon-top);
    right: var(--search-facet-search-icon-right)
}

.o-search-results-filter .m-search-category__form {
    display: block;
    padding-bottom: var(--section-heading-padding-bottom);
    padding-top: var(--section-heading-padding-top);
    margin-bottom: 0
}

@media(max-width:767.98px) {
    .o-search-results-filter .m-search-category__form {
        border: 0 !important
    }
}

.o-search-results-filter .m-search-category__content {
    width: 100%
}

.o-search-results-filter .m-search-category__view-all {
    margin: var(--search-facet-margin);
    display: none
}

.o-search-results-filter .m-search-category__view-all a {
    font-size: var(--section-facet-font-size);
    color: var(--section-facet-link-color)
}

.o-search-results-filter .m-search-category__view-all a:focus,
.o-search-results-filter .m-search-category__view-all a:active,
.o-search-results-filter .m-search-category__view-all a:hover {
    color: var(--section-facet-link-color)
}

.o-search-results-filter .m-search-category__search-heading {
    padding: var(--section-heading-padding)
}

@media(max-width:767.98px) {
    .o-search-results-filter .m-search-category__search-heading {
        display: none
    }
}

.o-search-results-filter .m-search-category__search-filter {
    margin: var(--search-filter-margin);
    position: relative
}

.o-search-results-filter .m-search-category__search-filter input {
    width: 100%;
    padding: var(--search-filter-input-padding);
    border: var(--search-filter-border);
    border-radius: var(--search-filter-input-border-radius);
    padding-right: var(--search-filter-input-padding-right)
}

@media(max-width:767.98px) {
    .o-search-results-filter .m-search-category__search-filter input::-webkit-input-placeholder {
        font-size: var(--searchfacet-filter-input-placeholder-font-size);
        color: var(--searchfacet-filter-input-placeholder-color)
    }

    .o-search-results-filter .m-search-category__search-filter input::-moz-placeholder {
        font-size: var(--searchfacet-filter-input-placeholder-font-size);
        color: var(--searchfacet-filter-input-placeholder-color)
    }

    .o-search-results-filter .m-search-category__search-filter input:-ms-input-placeholder {
        font-size: var(--searchfacet-filter-input-placeholder-font-size);
        color: var(--searchfacet-filter-input-placeholder-color)
    }

    .o-search-results-filter .m-search-category__search-filter input::-ms-input-placeholder {
        font-size: var(--searchfacet-filter-input-placeholder-font-size);
        color: var(--searchfacet-filter-input-placeholder-color)
    }

    .o-search-results-filter .m-search-category__search-filter input::placeholder {
        font-size: var(--searchfacet-filter-input-placeholder-font-size);
        color: var(--searchfacet-filter-input-placeholder-color)
    }
}

.o-search-results-filter .m-search-category__apply-button {
    text-align: center
}

@media(max-width:767.98px) {
    .o-search-results-filter .m-search-category__apply-button {
        position: relative;
        top: var(--searchfacet-apply-button-mobile-top)
    }
}

.o-search-results-filter .m-search-category__apply-button button {
    width: 90%;
    text-transform: uppercase;
    background: var(--search-apply-button-background-color);
    font-size: var(--search-apply-button-font-size)
}

.o-search-results-filter .m-search-category .m-down-icon {
    position: relative;
    left: var(--search-facet-m-down-icon-left);
    top: var(--search-facet-m-down-icon-top);
    font-size: var(--search-facet-m-down-icon-font-size)
}

@media(max-width:767.98px) {
    .o-search-results-filter .m-link-stack-faq .m-link-stack--content {
        display: block !important;
        -webkit-box-shadow: none;
        box-shadow: none !important;
        max-height: 234px;
        top: .75rem !important;
        z-index: 0 !important;
        position: static !important
    }

    .o-search-results-filter .m-link-stack-faq .m-link-stack--dropdown-value {
        display: none !important
    }
}

.o-search-results-filter a.list-collapsed {
    position: relative;
    border: 0
}

.o-search-results-filter a.list-collapsed::before {
    content: "";
    border-bottom: 1px solid #212121;
    position: absolute;
    width: 80%;
    top: 1.125rem
}

.o-search-results-filter a.list-expand {
    position: relative;
    border: 0
}

.o-search-results-filter a.list-expand::before {
    content: "";
    border-bottom: 1px solid #212121;
    position: absolute;
    width: 80%;
    top: 1.125rem
}

.scrollinteractionscontainer {
    width: 100%;
    max-width: none;
    position: relative;
    padding: 0;
    overflow: hidden
}

.scrollinteractionscontainer.cq-Editable-dom {
    background: var(--scroll-interactions-author-color)
}

.scrollinteractionscontainer__background {
    width: 100%;
    height: 100%;
    position: absolute
}

.scrollinteractionscontainer__wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto
}

.scrollinteractionscontainer__title {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: var(--scroll-interactions-margin-lg) 0;
    position: relative;
    z-index: 10
}

@media(max-width:991.98px) {
    .scrollinteractionscontainer__title {
        padding: var(--scroll-interactions-margin-sm) 0
    }
}

.scrollinteractionscontainer__title h3 {
    color: var(--scroll-interactions-text-color);
    font-size: var(--scroll-interactions-title-size);
    line-height: var(--scroll-interactions-title-size);
    margin: 0
}

.scrollinteractionscontainer__media {
    position: absolute;
    width: 100%;
    max-width: 1200px;
    top: 0;
    left: 0
}

.scrollinteractionscontainer__media .media__wrapper {
    position: relative;
    max-width: 60%
}

@media(max-width:991.98px) {
    .scrollinteractionscontainer__media .media__wrapper {
        margin: 32vh auto 0;
        max-width: 80%
    }
}

.scrollinteractionscontainer__media .media__layer {
    position: absolute;
    top: 0;
    left: 0
}

.scrollinteractionscontainer__media .media__layer img {
    width: 100%;
    height: auto
}

.scrollinteractionscontainer__media .media__layer--layer-data-point {
    z-index: 10
}

@media(max-width:991.98px) {
    .scrollinteractionscontainer__media .media__layer--layer-data-point {
        display: none
    }
}

.scrollinteractionscontainer__media .media__layer--layer-zoom {
    z-index: 8
}

.scrollinteractionscontainer__media .media__layer--layer-parallax {
    z-index: 5
}

@media(min-width:992px) {
    .scrollinteractionscontainer__media .media__layer--layer-parallax img {
        position: relative;
        width: auto;
        left: -33%
    }
}

.scrollinteractionscontainer__media .media__layer--layer-fade {
    z-index: 1
}

.scrollinteractionscontainer__media .media__layer--data-right {
    top: 20%;
    left: 500px;
    opacity: 0
}

.scrollinteractionscontainer__media .media__layer--data-right img {
    width: 140px;
    height: auto
}

.scrollinteractionscontainer__media .media__layer--data-bottom {
    top: 55%;
    left: 100px;
    opacity: 0
}

.scrollinteractionscontainer__media .media__layer--data-bottom img {
    width: 380px;
    height: auto
}

.scrollinteractionscontainer .m-scroll-interactions {
    width: 100%;
    color: var(--scroll-interactions-text-color);
    position: relative;
    z-index: 20
}

.scrollinteractionscontainer .m-scroll-interactions.cq-Editable-dom {
    height: 600px
}

.scrollinteractionscontainer .m-scroll-interactions .container {
    height: 100%
}

.scrollinteractionscontainer .m-scroll-interactions__row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%
}

@media(max-width:991.98px) {
    .scrollinteractionscontainer .m-scroll-interactions__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}

.scrollinteractionscontainer .m-scroll-interactions__media .media__target {
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.scrollinteractionscontainer .m-scroll-interactions__media .media__target.visible {
    opacity: 1
}

@media(max-width:991.98px) {
    .scrollinteractionscontainer .m-scroll-interactions__text {
        padding-top: 18vh
    }
}

.scrollinteractionscontainer .m-scroll-interactions__text * {
    color: var(--scroll-interactions-text-color)
}

.scrollinteractionscontainer .m-scroll-interactions__text img {
    max-width: 100%
}

.scrollinteractionscontainer .m-scroll-interactions__text .columncontrol__column {
    padding-left: 0;
    padding-right: 0
}

.scrollinteractionscontainer .m-scroll-interactions__text .button {
    margin-bottom: var(--scroll-interactions-margin-sm)
}

.font-12 {
    font-size: var(--rte-font-12-size);
    line-height: var(--rte-font-12-line-height)
}

.font-14 {
    font-size: var(--rte-font-14-size);
    line-height: var(--rte-font-14-line-height)
}

.disclaimer-text {
    font-size: var(--rte-font-14-size);
    line-height: var(--rte-font-14-line-height);
    color: var(--rte-color)
}

.color-text-gray {
    color: var(--rte-color)
}

.xxxl {
    font-size: var(--rte-xxxl-font-size);
    line-height: var(--rte-xxxl-line-height);
    letter-spacing: var(--rte-text-letter-spacing)
}

@media(min-width:768px) and (max-width:991.98px) {
    .xxxl {
        font-size: var(--rte-xxxl-md-font-size)
    }
}

@media(max-width:767.98px) {
    .xxxl {
        font-size: var(--rte-xxxl-sm-font-size)
    }
}

.xxl {
    font-size: var(--rte-xxl-font-size);
    line-height: var(--rte-xxl-line-height);
    letter-spacing: var(--rte-text-letter-spacing)
}

@media(min-width:768px) and (max-width:991.98px) {
    .xxl {
        font-size: var(--rte-xxl-md-font-size)
    }
}

@media(max-width:767.98px) {
    .xxl {
        font-size: var(--rte-xxl-sm-font-size)
    }
}

.xl {
    font-size: var(--rte-xl-font-size);
    line-height: var(--rte-xl-line-height)
}

@media(min-width:768px) and (max-width:991.98px) {
    .xl {
        font-size: var(--rte-xl-md-font-size)
    }
}

@media(max-width:767.98px) {
    .xl {
        font-size: var(--rte-xl-sm-font-size)
    }
}

.large {
    font-size: var(--rte-large-font-size);
    line-height: var(--rte-large-line-height)
}

@media(min-width:768px) and (max-width:991.98px) {
    .large {
        font-size: var(--rte-large-md-font-size)
    }
}

@media(max-width:767.98px) {
    .large {
        font-size: var(--rte-large-sm-font-size)
    }
}

.medium {
    font-size: var(--rte-medium-font-size);
    line-height: var(--rte-medium-line-height)
}

@media(min-width:768px) and (max-width:991.98px) {
    .medium {
        font-size: var(--rte-medium-md-font-size)
    }
}

@media(max-width:767.98px) {
    .medium {
        font-size: var(--rte-medium-sm-font-size)
    }
}

.small {
    font-size: var(--rte-small-font-size);
    line-height: var(--rte-small-line-height)
}

@media(min-width:768px) and (max-width:991.98px) {
    .small {
        font-size: var(--rte-small-md-font-size)
    }
}

@media(max-width:767.98px) {
    .small {
        font-size: var(--rte-small-sm-font-size)
    }
}

.xs {
    font-size: var(--rte-xs-font-size);
    line-height: var(--rte-xs-line-height)
}

.body-default {
    font-size: var(--rte-body-default-font-size);
    line-height: var(--rte-body-default-line-height)
}

.body-large {
    font-size: var(--rte-body-large-font-size);
    line-height: var(--rte-body-large-line-height)
}

.body-small {
    font-size: var(--rte-body-small-font-size);
    line-height: var(--rte-body-small-line-height)
}

.caption {
    font-size: var(--rte-caption-font-size);
    line-height: var(--rte-caption-line-height)
}

.caption-Title {
    font-size: var(--rte-caption-title-font-size);
    line-height: var(--rte-caption-title-line-height)
}

.upper-case {
    text-transform: var(--rte-text-upper-case)
}

.lower-case {
    text-transform: var(--rte-text-lower-case)
}

.capitalize {
    text-transform: var(--rte-text-capitalize)
}

.a-result {
    color: var(--result-text-color)
}

.a-result--border-bottom {
    border-bottom: var(--result-border-bottom)
}

.a-result__title {
    font-family: var(--result-font-family);
    font-size: var(--result-title-font-size);
    font-weight: 700;
    line-height: var(--result-title-line-height);
    margin: var(--result-title-margin)
}

.a-result__title--link {
    color: var(--result-text-color)
}

.a-result__title--link:hover {
    color: var(--result-text-color);
    -webkit-text-decoration: var(--result-title-decoration);
    text-decoration: var(--result-title-decoration)
}

.a-result__description {
    font-family: var(--result-font-family);
    font-size: var(--result-desc-font-size);
    line-height: var(--result-desc-line-height);
    margin-bottom: var(--result-desc-margin-bottom);
    font-weight: normal
}

.a-result-faq .a-result__description {
    font-size: 1rem
}

.o-promo {
    text-align: center
}

@media(max-width:767.98px) {
    .o-promo .a-button img {
        width: 100%
    }
}

.o-promo__badge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.o-promo__badge-top-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.o-promo__badge-top-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.o-promo__logo {
    padding: var(--promo-section-logo-padding)
}

@media(min-width:768px) {
    .o-promo__logo {
        padding: var(--promo-section-logo-padding-md)
    }
}

@media(min-width:1200px) {
    .o-promo__logo {
        padding: var(--promo-section-logo-padding-xl)
    }
}

.o-promo__title {
    padding: var(--promo-section-title-padding)
}

@media(min-width:768px) {
    .o-promo__title {
        padding: var(--promo-section-title-padding-md)
    }
}

@media(min-width:1200px) {
    .o-promo__title {
        padding: var(--promo-section-title-padding-xl)
    }
}

.o-promo__text {
    padding: var(--promo-section-text-padding)
}

.o-promo__wrapper {
    padding: var(--promo-section-btn-wrapper-padding)
}

.o-promo__wrapper .o-promo__btn {
    padding: var(--promo-section-btn-padding)
}

@media(min-width:768px) {
    .o-promo__wrapper .o-promo__btn {
        display: inline-block;
        padding: var(--promo-section-btn-padding-lg)
    }
}

@media(max-width:767.98px) {
    .o-promo__wrapper .o-promo__btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.promosection-badge-top-start .o-promo__badge {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.promosection-badge-top-end .o-promo__badge {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.a-progressbar {
    height: var(--progress-height-sm);
    border-radius: var(--progress-border-radius);
    border: var(--progress-bar-border);
    background-color: var(--progress-bar-color);
    -webkit-box-shadow: none;
    box-shadow: none
}

.a-progressbar>div {
    width: 100%
}

.a-progressbar__status {
    height: var(--progress-height-sm);
    background-color: var(--progress-bar-bg)
}

.a-progressbar--large {
    height: var(--progress-height)
}

.a-progressbar--large .a-progressbar__status {
    height: var(--progress-height)
}

.o-products-compare {
    background: var(--products-compare-bg-color)
}

.o-products-compare__container {
    position: relative;
    overflow: hidden
}

.o-products-compare__container .o-products-compare__wrapper {
    width: var(--products-compare-wrapper-width-lg);
    overflow-x: auto;
    margin-left: var(--products-compare-wrapper-left-margin-lg);
    padding-bottom: var(--products-compare-wrapper-padding-bottom)
}

@media(max-width:991.98px) {
    .o-products-compare__container .o-products-compare__wrapper {
        width: var(--products-compare-wrapper-width-sm);
        margin-left: var(--products-compare-wrapper-left-margin-sm)
    }
}

.o-products-compare__container ::-webkit-scrollbar {
    width: 10px;
    max-height: .5rem
}

@media(max-width:1199.98px) {
    .o-products-compare__container::-webkit-scrollbar {
        width: 0 !important
    }
}

@media(min-width:992px) {
    .o-products-compare__container::-webkit-scrollbar-track {
        border: var(--products-compare-wrapper-scroll-border);
        border-radius: var(--products-compare-wrapper-scroll-border-radius)
    }
}

@media(min-width:992px) {
    .o-products-compare__container::-webkit-scrollbar-thumb {
        background: var(--products-compare-wrapper-scroll-bg-color);
        border-radius: 10px
    }
}

.o-products-compare__container .o-products-compare__table {
    width: 100%;
    margin: auto;
    border-collapse: separate;
    border-spacing: 0
}

.o-products-compare__container .o-products-compare__table thead th {
    vertical-align: bottom;
    position: relative;
    background: var(--products-compare-table-bg-color)
}

.o-products-compare__container .o-products-compare__table thead th .o-products-compare__badge {
    display: inline-block
}

.o-products-compare__container .o-products-compare__table thead th .o-products-compare__badge--top-start {
    float: left
}

.o-products-compare__container .o-products-compare__table thead th .o-products-compare__badge--top-end {
    float: right
}

.o-products-compare__container .o-products-compare__table th,
.o-products-compare__container .o-products-compare__table td {
    padding: var(--products-compare-td-padding-sm);
    border: var(--products-compare-td-border);
    vertical-align: top;
    min-width: 124px;
    word-wrap: break-word
}

@media(min-width:768px) {

    .o-products-compare__container .o-products-compare__table th,
    .o-products-compare__container .o-products-compare__table td {
        min-width: 139px
    }
}

@media(min-width:992px) {

    .o-products-compare__container .o-products-compare__table th,
    .o-products-compare__container .o-products-compare__table td {
        padding: var(--products-compare-td-padding-lg);
        min-width: 220px
    }
}

.o-products-compare__container .o-products-compare__table th img,
.o-products-compare__container .o-products-compare__table td img {
    max-height: 110px;
    width: auto
}

.o-products-compare__container .o-products-compare__table tbody th,
.o-products-compare__container .o-products-compare__table tbody td {
    background: var(--products-compare-table-bg-color)
}

.o-products-compare__container .o-products-compare__table tbody tr:nth-child(even) th,
.o-products-compare__container .o-products-compare__table tbody tr:nth-child(even) td {
    background-color: var(--products-compare-table-even-row-bg-color)
}

.o-products-compare__container .o-products-compare__table tbody tr:nth-child(odd) th,
.o-products-compare__container .o-products-compare__table tbody tr:nth-child(odd) td {
    background-color: var(--products-compare-table-odd-row-bg-color)
}

.o-products-compare__container .o-products-compare__table td {
    font-size: var(--products-compare-td-font-size);
    line-height: var(--products-compare-td-line-height);
    color: var(--products-compare-td-color);
    text-transform: none;
    font-weight: normal;
    letter-spacing: normal
}

.o-products-compare__container .o-products-compare__table tfoot {
    background: transparent
}

.o-products-compare__container .o-products-compare__table tfoot .o-products-compare__fixed-side {
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.o-products-compare__container .o-products-compare__table tfoot td {
    text-align: center;
    font-size: var(--products-compare-td-h5-font-size);
    line-height: var(--products-compare-td-line-height);
    color: inherit;
    text-transform: none;
    font-weight: bold;
    letter-spacing: normal
}

.o-products-compare__container .o-products-compare__table .o-products-compare__fixed-side {
    -webkit-box-shadow: var(--products-compare-thead-box-shadow);
    box-shadow: var(--products-compare-thead-box-shadow);
    position: absolute;
    width: 14rem;
    min-height: var(--products-compare-table-fixed-col-height);
    left: 0;
    top: auto
}

@media(max-width:767.98px) {
    .o-products-compare__container .o-products-compare__table .o-products-compare__fixed-side {
        width: 10rem;
        min-height: var(--products-compare-table-fixed-col-mobile-height)
    }
}

@media(min-width:576px) and (max-width:1199.98px) {
    .o-products-compare__container .o-products-compare__table .o-products-compare__fixed-side {
        width: 9rem;
        min-height: var(--products-compare-table-fixed-col-mobile-height)
    }
}

.o-products-compare__container .o-products-compare__table .o-products-compare__fixed-side span {
    font-size: var(--products-compare-td-h5-font-size);
    line-height: var(--products-compare-td-line-height);
    color: var(--products-compare-td-color);
    text-transform: none;
    font-weight: normal;
    letter-spacing: normal;
    margin-top: 0
}

@media(min-width:992px) {
    .o-products-compare__container .o-products-compare__table .o-products-compare__fixed-side span {
        font-size: var(--products-compare-td-h4-font-size);
        line-height: var(--products-compare-td-h4-line-height);
        color: var(--products-compare-td-color);
        text-transform: none;
        font-weight: bold;
        letter-spacing: normal
    }
}

.o-products-compare__container .o-products-compare__table .o-products-compare__blank-col {
    background: transparent;
    -webkit-box-shadow: var(--products-compare-thead-blank-col-box-shadow);
    box-shadow: var(--products-compare-thead-blank-col-box-shadow)
}

.o-products-compare__container .o-products-compare__table-link {
    margin-top: var(--products-compare-table-link-margin-top-sm);
    text-align: right
}

@media(min-width:992px) {
    .o-products-compare__container .o-products-compare__table-link {
        margin-top: var(--products-compare-table-link-margin-top-lg)
    }
}

.a-productcomparison--gradient-start .o-products-compare {
    background: -webkit-gradient(linear, left top, right top, from(var(--product-start-color)), to(var(--product-end-color)));
    background: linear-gradient(90deg, var(--product-start-color) var(--product-start-position), var(--product-end-color) var(--product-end-position))
}

.a-productcomparison--gradient-end .o-products-compare {
    background: -webkit-gradient(linear, right top, left top, from(var(--product-start-color)), to(var(--product-end-color)));
    background: linear-gradient(-90deg, var(--product-start-color) var(--product-start-position), var(--product-end-color) var(--product-end-position))
}

.a-productcomparison--gradient-center .o-products-compare {
    background: radial-gradient(circle, var(--product-start-color) var(--product-start-position), var(--product-end-color) var(--product-end-position))
}

.productsCompare-badge-top-start .o-products-compare__badge {
    float: left
}

.productsCompare-badge-top-end .o-products-compare__badge {
    float: right
}

.check-green {
    color: var(--products-compare-icon-success-color)
}

.o-product-comparison--border-solid .o-products-compare__container .o-products-compare__table td,
.o-product-comparison--border-solid .o-products-compare__container .o-products-compare__table th {
    border-color: var(--product-border-color);
    border-width: var(--product-border-width)
}

.o-product-comparison--border-none .o-products-compare__container .o-products-compare__table {
    border-spacing: 4px
}

.o-product-comparison--border-none .o-products-compare__container .o-products-compare__table .o-products-compare__fixed-side {
    min-height: auto;
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.o-product-comparison--border-none .o-products-compare__container .o-products-compare__table th,
.o-product-comparison--border-none .o-products-compare__container .o-products-compare__table td {
    border: none !important
}

.o-products-compare__blank-col {
    border: hidden !important
}

.product-tile {
    width: 350px;
    max-width: 100%;
    border-radius: var(--product-tile-border-radius);
    -webkit-box-shadow: var(--product-tile-box-shadow);
    box-shadow: var(--product-tile-box-shadow)
}

.product-tile__badge {
    background: var(--product-tile-badge-bg-gradient);
    border-radius: 6px 6px 0 0;
    min-height: 8px;
    text-align: center;
    color: var(--product-tile-badge-color);
    text-transform: uppercase;
    font-size: var(-product-tile-badge-font-size);
    line-height: var(--product-tile-badge-line-height)
}

.product-tile__badge:not(:empty) {
    padding: 14px 30px
}

.product-tile__header {
    background-color: var(--product-tile-name-bg-color)
}

.product-tile__name {
    padding: var(--product-tile-name-padding);
    text-align: center;
    color: var(--product-tile-name-color);
    text-transform: uppercase;
    background-color: var(--product-tile-name-bg-color);
    font-size: var(--product-tile-name-font-size);
    line-height: var(--product-tile-name-line-height)
}

.product-tile__name>h3 {
    border-bottom: var(--product-tile-name-border-bottom);
    padding-bottom: var(--product-tile-name-child-padding-bottom)
}

.product-tile__description-title {
    background-color: var(--product-tile-cta-bg-color);
    color: var(--product-tile-cta-color);
    text-align: center;
    padding-top: 52px;
    margin-bottom: 0;
    font-size: var(--product-tile-cta-title-font-size);
    line-height: var(--product-tile-cta-title-line-height)
}

.product-tile__description {
    background-color: var(--product-tile-cta-bg-color);
    color: var(--product-tile-cta-color);
    padding: 0 31px 32px 29px;
    text-align: center;
    font-size: var(--product-tile-cta-p-font-size);
    line-height: var(--product-tile-cta-p-line-height)
}

.product-tile .a-product-tile-details {
    color: var(--product-tile-details-color);
    list-style-type: none;
    background-color: var(--product-tile-details-bg-color);
    padding: var(--product-tile-details-padding);
    margin-bottom: 15px
}

.product-tile .a-product-tile-details__title {
    color: var(--product-tile-details-title-color);
    text-align: center;
    margin-bottom: var(--product-tile-details-title-margin-bottom);
    font-size: var(--product-tile-details-title-font-size);
    line-height: var(--product-tile-details-title-line-height)
}

.product-tile .a-product-tile-details__list {
    padding: 0;
    margin: 0
}

.product-tile .a-product-tile-details__list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: var(--product-tile-details-li-align-items);
    -ms-flex-align: var(--product-tile-details-li-align-items);
    align-items: var(--product-tile-details-li-align-items);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: var(--product-tile-details-li-color);
    text-align: var(--product-tile-details-li-text-align);
    margin-bottom: var(--product-tile-details-li-margin-bottom)
}

.product-tile .a-product-tile-details__list-item:last-child {
    margin-bottom: 0
}

.product-tile .a-product-tile-details__image-container {
    text-align: center;
    width: var(--product-tile-details-image-width);
    height: var(--product-tile-details-image-height);
    margin-right: var(--product-tile-details-image-margin-right)
}

.product-tile .a-product-tile-details__image {
    max-width: 100%;
    max-height: 100%
}

.product-tile .a-product-tile-details__text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: var(--product-tile-details-li-label-font-size);
    line-height: var(--product-tile-details-li-label-line-height)
}

.product-tile--single .product-tile {
    margin: 0 auto
}

.commerce-disabled .product-tile {
    display: none
}

.o-product-section__container {
    position: relative
}

@media(max-width:767.98px) {
    .o-product-section__container {
        max-width: 100%
    }
}

.o-product-section__row {
    position: relative
}

.o-product-section__title {
    padding-bottom: var(--product-section-title-padding)
}

.o-product-section__para {
    color: var(--product-section-para-color);
    font-size: var(--product-section-para-font-size);
    line-height: var(--product-section-para-line-height)
}

.o-product-section__image-wrapper {
    margin-top: var(--product-section-image-margin-top);
    text-align: center
}

@media(max-width:991.98px) {
    .o-product-section__image-wrapper {
        text-align: center;
        padding: 0;
        margin: 0
    }

    .o-product-section__image-wrapper img {
        max-width: 100%
    }
}

.o-product-section__image-caption,
.o-product-section .cmp-image__title {
    padding-top: var(--product-section-padding);
    color: var(--product-section-image-caption-color);
    font-size: var(--product-section-image-caption-font-size);
    line-height: var(--product-section-image-caption-line-height);
    text-align: center;
    display: block
}

.o-product-section__badge {
    position: absolute;
    z-index: 1;
    left: 0
}

.o-product-section__content {
    padding-left: var(--product-section-content-padding);
    padding-right: var(--product-section-content-padding)
}

@media(max-width:991.98px) {
    .o-product-section__content {
        padding: var(--product-section-content-padding-top) var(--product-section-content-padding-mobile);
        margin: 0
    }
}

.o-product-section__button-wrapper {
    padding-top: var(--product-section-btn-wrapper-padding)
}

.o-product-section__button-wrapper .a-button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.o-product-section__button-wrapper .a-button:not(:only-child) {
    margin-right: var(--product-section-btn-margin-right);
    margin-bottom: var(--product-section-btn-margin-bottom)
}

@media(max-width:767.98px) {
    .o-product-section__button-wrapper .a-button:not(:only-child) {
        margin-right: 0
    }
}

@media(max-width:767.98px) {
    .o-product-section__button-wrapper {
        padding-top: 0
    }

    .o-product-section__button-wrapper .a-button {
        display: block
    }

    .o-product-section__button-wrapper .a-button .btn {
        width: 100%
    }
}

.o-product-section__video-wrapper {
    max-width: none;
    position: relative;
    margin-top: var(--product-section-image-margin-top)
}

@media(max-width:991.98px) {
    .o-product-section__video-wrapper {
        padding: 0;
        margin: 0;
        width: var(--product-section-image-wrapper-width)
    }
}

.o-product-section__video-wrapper .product-section-video,
.o-product-section__video-wrapper .video {
    padding: 0 !important
}

.o-product-section__video-wrapper .a-video {
    margin: 0 auto
}

.o-product-section__video-wrapper .a-video__caption {
    text-align: center
}

.o-product-section--text-right .o-product-section__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

@media(max-width:991.98px) {
    .o-product-section--text-right .o-product-section__content {
        padding-bottom: 0
    }
}

.o-product-section--text-right .o-product-section__image-wrapper {
    padding-left: 0
}

.o-product-section--text-left .o-product-section__badge {
    left: 0
}

.o-product-section--text-left .o-product-section__content {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
}

@media(max-width:991.98px) {
    .o-product-section--text-left .o-product-section__content {
        padding-top: 0
    }
}

.o-product-section--text-left .o-product-section__image-wrapper {
    padding-right: 0
}

.o-product-section--top-right .o-product-section__badge {
    right: 0;
    left: inherit
}

@media(max-width:991.98px) {
    .o-product-section--top-right .o-product-section__badge {
        position: relative;
        left: inherit;
        right: inherit;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

@media(max-width:991.98px) {
    .o-product-section--top-left .o-product-section__badge {
        position: relative;
        left: inherit;
        right: inherit;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start
    }
}

.o-product-section--large .cmp-image__image,
.o-product-section--large img {
    max-width: 100%;
    max-height: var(--product-section-image-max-height);
    width: auto
}

@media(min-width:992px) {

    .o-product-section--large .cmp-image__image,
    .o-product-section--large img {
        max-width: 100%
    }
}

.o-product-section--small .cmp-image__image,
.o-product-section--small img {
    max-width: var(--product-section-image-max-width)
}

@media(max-width:991.98px) {

    .o-product-section--small .cmp-image__image,
    .o-product-section--small img {
        max-width: 100%
    }
}

.o-product-section--remove-imagespace .o-product-section__image-wrapper,
.o-product-section--remove-imagespace .o-product-section__video-wrapper {
    margin-top: 0
}

.o-product-section--dark-bg {
    background: var(--product-section-dark-bg)
}

.o-product-section--rounded-corners {
    border-radius: var(--product-section-rounded-corners)
}

.o-product-section--title-default .o-product-section__title {
    color: var(--product-section-title-color-default)
}

.o-product-section--title-default .o-product-section__title h1,
.o-product-section--title-default .o-product-section__title h2,
.o-product-section--title-default .o-product-section__title h3,
.o-product-section--title-default .o-product-section__title h4,
.o-product-section--title-default .o-product-section__title h5,
.o-product-section--title-default .o-product-section__title h6,
.o-product-section--title-default .o-product-section__title p {
    color: var(--product-section-title-color-default)
}

.o-product-section--title-reversed .o-product-section__title {
    color: var(--product-section-title-color-reversed)
}

.o-product-section--title-reversed .o-product-section__title h1,
.o-product-section--title-reversed .o-product-section__title h2,
.o-product-section--title-reversed .o-product-section__title h3,
.o-product-section--title-reversed .o-product-section__title h4,
.o-product-section--title-reversed .o-product-section__title h5,
.o-product-section--title-reversed .o-product-section__title h6,
.o-product-section--title-reversed .o-product-section__title p {
    color: var(--product-section-title-color-reversed)
}

.o-product-section--title-primary .o-product-section__title {
    color: var(--product-section-title-color-primary)
}

.o-product-section--title-primary .o-product-section__title h1,
.o-product-section--title-primary .o-product-section__title h2,
.o-product-section--title-primary .o-product-section__title h3,
.o-product-section--title-primary .o-product-section__title h4,
.o-product-section--title-primary .o-product-section__title h5,
.o-product-section--title-primary .o-product-section__title h6,
.o-product-section--title-primary .o-product-section__title p {
    color: var(--product-section-title-color-primary)
}

.o-product-section--title-alternate .o-product-section__title {
    color: var(--product-section-title-color-alternate)
}

.o-product-section--title-alternate .o-product-section__title h1,
.o-product-section--title-alternate .o-product-section__title h2,
.o-product-section--title-alternate .o-product-section__title h3,
.o-product-section--title-alternate .o-product-section__title h4,
.o-product-section--title-alternate .o-product-section__title h5,
.o-product-section--title-alternate .o-product-section__title h6,
.o-product-section--title-alternate .o-product-section__title p {
    color: var(--product-section-title-color-alternate)
}

.o-product-section--description-reversed .o-product-section__para h1,
.o-product-section--description-reversed .o-product-section__para h2,
.o-product-section--description-reversed .o-product-section__para h3,
.o-product-section--description-reversed .o-product-section__para h4,
.o-product-section--description-reversed .o-product-section__para h5,
.o-product-section--description-reversed .o-product-section__para h6,
.o-product-section--description-reversed .o-product-section__para p {
    color: var(--product-section-description-color-reversed)
}

.o-product-section--description-default .o-product-section__para h1,
.o-product-section--description-default .o-product-section__para h2,
.o-product-section--description-default .o-product-section__para h3,
.o-product-section--description-default .o-product-section__para h4,
.o-product-section--description-default .o-product-section__para h5,
.o-product-section--description-default .o-product-section__para h6,
.o-product-section--description-default .o-product-section__para p {
    color: var(--product-section-description-color-default)
}

.o-product-section--description-primary .o-product-section__para h1,
.o-product-section--description-primary .o-product-section__para h2,
.o-product-section--description-primary .o-product-section__para h3,
.o-product-section--description-primary .o-product-section__para h4,
.o-product-section--description-primary .o-product-section__para h5,
.o-product-section--description-primary .o-product-section__para h6,
.o-product-section--description-primary .o-product-section__para p {
    color: var(--product-section-description-color-primary)
}

.o-product-section--description-alternate .o-product-section__para h1,
.o-product-section--description-alternate .o-product-section__para h2,
.o-product-section--description-alternate .o-product-section__para h3,
.o-product-section--description-alternate .o-product-section__para h4,
.o-product-section--description-alternate .o-product-section__para h5,
.o-product-section--description-alternate .o-product-section__para h6,
.o-product-section--description-alternate .o-product-section__para p {
    color: var(--product-section-description-color-alternate)
}

.o-product-section .parallax-wrapper {
    z-index: 0
}

.o-product-section .parallax-wrapper .cmp-image__image {
    z-index: 1
}

.o-product-section .parallax-wrapper__parallax-image {
    max-height: unset
}

.o-product-section--gradient-start .o-product-section__container {
    background: -webkit-gradient(linear, left top, right top, from(var(--productSection-start-color)), to(var(--productSection-end-color)));
    background: linear-gradient(90deg, var(--productSection-start-color) var(--productSection-start-position), var(--productSection-end-color) var(--productSection-end-position))
}

.o-product-section--gradient-end .o-product-section__container {
    background: -webkit-gradient(linear, right top, left top, from(var(--productSection-start-color)), to(var(--productSection-end-color)));
    background: linear-gradient(-90deg, var(--productSection-start-color) var(--productSection-start-position), var(--productSection-end-color) var(--productSection-end-position))
}

.o-product-section--gradient-center .o-product-section__container {
    background: radial-gradient(circle, var(--productSection-start-color) var(--productSection-start-position), var(--productSection-end-color) var(--productSection-end-position))
}

.m-popover {
    display: inline-block;
    max-width: var(--popover-edit-max-width)
}

.m-popover .popover {
    border-radius: var(--popover-border-radius);
    -webkit-box-shadow: var(--popover-box-shadow);
    box-shadow: var(--popover-box-shadow);
    display: block !important;
    border: 0
}

.m-popover__content {
    display: none
}

.m-popover__image-img {
    max-width: 100%
}

.m-popover__heading,
.m-popover__text,
.m-popover__action {
    padding: var(--popover-padding-x) var(--popover-padding-y)
}

.m-popover .popover-body {
    border: 0;
    padding: 0
}

.m-popover .popover-body .a-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.m-popover .popover-body p {
    font-size: var(--popover-para-font-size);
    line-height: var(--popover-para-line-height);
    color: var(--popover-para-color);
    text-transform: none;
    font-weight: normal;
    padding-top: var(--popover-padding-x)
}

.m-popover--edit {
    display: block;
    max-width: var(--popover-edit-max-width);
    -webkit-box-shadow: var(--popover-edit-box-shadow);
    box-shadow: var(--popover-edit-box-shadow)
}

.generic-modal {
    border-radius: var(--modal-border-radius);
    -webkit-box-shadow: var(--modal-box-shadow);
    box-shadow: var(--modal-box-shadow)
}

.generic-modal__header,
.generic-modal__header.modal-header {
    padding: 0;
    border: 0
}

.generic-modal--close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--modal-close-icon-color);
    z-index: 1;
    cursor: pointer
}

.generic-modal__content {
    -webkit-box-shadow: var(--modal-box-shadow);
    box-shadow: var(--modal-box-shadow)
}

.generic-modal__content-body,
.generic-modal__content-body.modal-body {
    padding: var(--modal-body-padding-y) var(--modal-body-padding-x) 0 var(--modal-body-padding-x);
    border: 0
}

.generic-modal__content-body .abt-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    float: left;
    margin-right: var(--modal-body-margin-x)
}

.generic-modal__content-body .a-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.generic-modal__content-body p {
    font-size: var(--modal-para-font-size);
    line-height: var(--modal-para-line-height);
    color: var(--modal-para-color);
    text-transform: none;
    font-weight: normal;
    padding-top: 8px
}

.generic-modal__content-body .a-container,
.generic-modal__content-body .container,
.generic-modal__content-body .xf-content-height,
.generic-modal__content-body .m-layout-container {
    margin: 0;
    padding: 0
}

.generic-modal__content-body .section-info {
    padding: 0
}

.generic-modal__content-footer {
    padding: var(--modal-footer-padding-y) var(--modal-footer-padding-x)
}

.generic-modal__content-footer,
.generic-modal__content-footer.modal-footer {
    border: 0
}

.generic-modal__content-footer .a-btn--link,
.generic-modal__content-footer .a-button {
    margin: 0 0 0 var(--modal-body-margin-xx)
}

.generic-modal__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.generic-modal__image-link {
    width: 100%;
    position: relative;
    border-radius: var(--modal-border-radius) var(--modal-border-radius) 0 0
}

.generic-modal--image .generic-modal__image {
    position: relative;
    margin: var(--modal-image-margin)
}

.modal-backdrop+.modal-backdrop {
    opacity: 0
}

.o-poi-locator__error {
    text-align: left
}

.m-poi-locator-search-bar__wrap {
    border-bottom: 1px solid var(--poi-locator-search-bar-border-bottom-color);
    margin-bottom: .625rem;
    padding-bottom: 1.875rem
}

@media(min-width:992px) {
    .m-poi-locator-search-bar__wrap {
        margin-bottom: 3.125rem;
        padding-bottom: 2.5rem
    }
}

.m-poi-locator-search-bar__title {
    font-size: var(--poi-locator-search-bar-title-font-size);
    line-height: var(--poi-locator-search-bar-title-line-height);
    margin-bottom: 1.875rem
}

.m-poi-locator-search-bar__error {
    color: var(--poi-locator-search-bar-error-color);
    font-size: var(--poi-locator-search-bar-error-font-size)
}

.m-poi-locator-search-bar__input .a-input-field .form-group .a-input-label {
    font-size: var(--poi-locator-search-bar-input-font-size);
    margin-bottom: .9375rem;
    color: var(--poi-locator-search-bar-input-label-color);
    font-weight: 600
}

.m-poi-locator-search-bar__input-field {
    width: 380px;
    height: 48px
}

.m-poi-locator-search-bar__input-field:focus {
    outline-offset: 0;
    border-color: var(--poi-locator-search-bar-input-focus-border-color)
}

.m-poi-locator-search-bar__button {
    margin-top: var(--poi-locator-search-bar-btn-margin-top)
}

.m-poi-locator-search-bar__button .a-button .btn {
    padding: .8125rem 1.25rem;
    width: 100%
}

.m-poi-locator-search-bar__button .a-button .abt-icon {
    display: block;
    position: static
}

@media(min-width:992px) {
    .m-poi-locator-search-bar__button .a-button .abt-icon {
        display: none
    }
}

.m-poi-locator-search-bar__button .a-button span {
    display: none
}

@media(min-width:992px) {
    .m-poi-locator-search-bar__button .a-button span {
        display: block
    }
}

.m-poi-locator-search-bar__use-location {
    margin-top: 0;
    margin-bottom: 1.25rem
}

.m-poi-locator-search-bar__use-location .a-button .abt-icon {
    line-height: 1.25rem
}

@media(min-width:992px) {
    .m-poi-locator-search-bar__use-location {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: var(--poi-locator-search-bar-btn-margin-top)
    }
}

.m-poi-locator-search-bar__use-location .or-text {
    font-size: var(--poi-locator-search-bar-or-text-font-size);
    line-height: var(--poi-locator-search-bar-or-text-line-height);
    font-weight: bold;
    color: var(--poi-locator-search-bar-or-text-color);
    display: block;
    margin: 0 0 1.25rem
}

@media(min-width:992px) {
    .m-poi-locator-search-bar__use-location .or-text {
        margin: 0 1.875rem 0 0
    }
}

.m-poi-locator-results__no-resultfound {
    font-size: var(--poi-locator-results-resultfound-font-size);
    line-height: var(--poi-locator-results-resultfound-line-height);
    font-weight: bold;
    margin-bottom: 1.875rem;
    margin-top: 1.875rem
}

@media(min-width:992px) {
    .m-poi-locator-results__no-resultfound {
        margin-top: 0
    }
}

.m-poi-locator-results__count {
    color: var(--poi-locator-results-count-color);
    font-size: var(--poi-locator-results-count-font-size);
    font-weight: bold;
    letter-spacing: 0;
    line-height: var(--poi-locator-results-count-line-height);
    margin-bottom: 1.875rem
}

.m-poi-locator-results__list {
    list-style: none;
    padding: 0;
    overflow-y: scroll;
    height: var(--poi-locator-results-list-mobile-height);
    counter-reset: my-list
}

@media(min-width:992px) {
    .m-poi-locator-results__list {
        height: var(--poi-locator-results-list-desktop-height)
    }
}

.m-poi-locator-results__list::-webkit-scrollbar {
    width: 8px
}

.m-poi-locator-results__list::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px var(--poi-locator-results-list-scrollbar-border-color);
    box-shadow: inset 0 0 5px var(--poi-locator-results-list-scrollbar-border-color);
    border-radius: 10px
}

.m-poi-locator-results__list::-webkit-scrollbar-thumb {
    background: var(--poi-locator-results-list-scrollbar-tracker-color);
    border-radius: 10px
}

.m-poi-locator-results__list-item {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--poi-locator-results-list-border-bottom-color);
    position: relative;
    padding-left: 2.5rem;
    margin-right: .9375rem
}

.m-poi-locator-results__list-item:last-child {
    border: 0
}

.m-poi-locator-results__list-item-number {
    position: absolute;
    left: 0;
    top: .31rem;
    background: var(--poi-locator-results-list-item-circle-bg);
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    border: 1px solid transparent;
    color: var(--poi-locator-results-list-item-circle-text-color)
}

.m-poi-locator-results__list-item.active::before {
    background: var(--poi-locator-results-list-item-circle-text-color);
    color: var(--poi-locator-results-list-item-circle-bg);
    border: 1px solid var(--poi-locator-results-list-item-circle-bg)
}

.m-poi-locator-results__list-item-detail--store-name {
    font-size: var(--poi-locator-results-list-item-store-font-size);
    color: var(--poi-locator-results-list-item-store-name-text-color);
    margin-bottom: 0;
    cursor: pointer
}

.m-poi-locator-results__list-item-detail--store-miles {
    font-size: var(--poi-locator-results-list-item-store-detail-font-size);
    font-weight: 600
}

.m-poi-locator-results__list-item-detail--store-address,
.m-poi-locator-results__list-item-detail__name {
    font-size: var(--poi-locator-results-list-item-store-detail-font-size);
    margin-bottom: 1.25rem
}

.m-poi-locator-results__list-item-detail__label {
    font-size: var(--poi-locator-results-list-item-store-detail-font-size);
    font-weight: bold
}

.m-poi-locator-results__list-item-detail--store-contact {
    font-size: var(--poi-locator-results-list-item-store-detail-font-size);
    margin-bottom: 1.25rem;
    color: var(--poi-locator-results-list-item-store-name-text-color)
}

.m-poi-locator-results__list-item-detail--get-direction,
.m-poi-locator-results__list-item-detail--visit-website {
    font-size: var(--poi-locator-results-list-item-store-detail-font-size);
    font-weight: 600;
    color: var(--poi-locator-results-list-item-store-name-text-color)
}

.m-poi-locator-results__list-item-detail--get-direction a,
.m-poi-locator-results__list-item-detail--visit-website a {
    padding-left: 1.5625rem
}

.m-poi-locator-results__list-item-detail--get-direction a .abt-icon,
.m-poi-locator-results__list-item-detail--visit-website a .abt-icon {
    color: var(--poi-locator-results-list-item-circle-bg)
}

.m-poi-locator-results__list-item-detail--get-direction.a-link,
.m-poi-locator-results__list-item-detail--visit-website.a-link {
    display: block
}

.m-poi-locator-results__list-item-detail--store-contact-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-poi-locator-results__list.no-pagination {
    overflow-x: hidden;
    padding: inherit;
    height: var(--poi-locator-results-list-desktop-height)
}

.m-poi-locator-results__map {
    margin-bottom: 3.75rem;
    margin-top: 1.25rem
}

@media(min-width:992px) {
    .m-poi-locator-results__map {
        margin-top: 3.125rem;
        margin-bottom: 0
    }
}

.m-poi-locator-results__map #map {
    width: 100%;
    height: 300px
}

@media(min-width:992px) {
    .m-poi-locator-results__map #map {
        height: 600px
    }
}

.m-poi-locator-results__map #map .gm-style .gm-style-iw-c {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 1.25rem !important
}

.m-poi-locator-results .row-result-map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
}

@media(min-width:992px) {
    .m-poi-locator-results .row-result-map--horizontal {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

@media(min-width:992px) {
    .m-poi-locator-results .row-result-map--vertical .m-poi-locator-results__map {
        margin-bottom: 3.75rem
    }
}

.m-poi-locator-results .row-result-map--vertical .m-poi-locator-results__list {
    height: auto;
    overflow: visible
}

.videoplaylist .hide {
    display: none
}

.videoplaylist .wistia-playlist {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 0;
    padding-left: 0
}

.videoplaylist .wistia-playlist .wistia-playlist__main-title {
    width: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    font-family: var(--m-videoplaylist-font-basic);
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px
}

.videoplaylist .wistia-playlist .wistia-playlist__main-container {
    width: 67.118%;
    -ms-flex-preferred-size: 67.118%;
    flex-basis: 67.118%;
    padding-right: 15px
}

.videoplaylist .wistia-playlist .wistia-playlist__list-container {
    width: 32.882%;
    -ms-flex-preferred-size: 32.882%;
    flex-basis: 32.882%;
    padding-left: 15px
}

.videoplaylist .wistia-playlist .wistia-playlist__list-container .wistia-playlist__video-icon {
    width: 30.65%;
    margin-bottom: 0
}

.videoplaylist .wistia-playlist .wistia-playlist__list-container .wistia-playlist__video-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 8px 0;
    margin-bottom: 8px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content
}

.videoplaylist .wistia-playlist .wistia-playlist__list-container .wistia-playlist__video-item:focus {
    border: 2px solid #000
}

.videoplaylist img {
    width: 100%
}

.videoplaylist .wistia-playlist__list-descHide .wistia-playlist__video-copy {
    display: none
}

.videoplaylist .wistia-playlist__video-item {
    width: 45%;
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
    font-family: var(--m-videoplaylist-font-basic);
    font-weight: 700;
    font-size: 16px;
    line-height: 20px
}

.videoplaylist .wistia-playlist__video-item:link {
    text-decoration: none !important
}

.videoplaylist .wistia-playlist__video-item:hover .wistia-playlist__video-copy p {
    color: var(--m-videoplaylist-color-play-black)
}

.videoplaylist .wistia-playlist__video-item:hover .wistia-playlist__video-title {
    color: var(--m-videoplaylist-color-play-black)
}

.videoplaylist .wistia-playlist__video-content {
    width: 66%
}

.videoplaylist .wistia_responsive_wrapper {
    position: relative
}

.videoplaylist .wistia-playlist__list-items {
    overflow-y: auto
}

.videoplaylist .wistia-playlist__video-copy p {
    color: var(--m-videoplaylist-color-play-title);
    margin-bottom: 0;
    font-family: var(--m-videoplaylist-font-basic);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px
}

.videoplaylist .wistia-playlist__video-copy p:hover {
    color: var(--m-videoplaylist-color-play-black)
}

.videoplaylist .wistia-playlist__main-video-image {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.videoplaylist .wistia-playlist__main-video-image::before {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("../../abbott-platform/clientlibs/clientlib-site/resources/images/play-button-12043.svg");
    content: "";
    width: 50px;
    height: 50px;
    background-position: center;
    margin: auto
}

.videoplaylist .wistia-playlist__video-icon--hasImage {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    color: var(--m-videoplaylist-color-play-inherit)
}

.videoplaylist .wistia-playlist__video-icon--hasImage::after {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("../../abbott-platform/clientlibs/clientlib-site/resources/images/play-button-v1.svg");
    content: "";
    width: 32px;
    height: 32px;
    background-position: center;
    margin: auto
}

.videoplaylist .wistia-playlist__video-icon--hasImage img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover
}

.videoplaylist .wistia-playlist__main-description p {
    margin-top: 24px !important;
    font-family: var(--m-videoplaylist-font-basic);
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px
}

.videoplaylist .w-big-play-button {
    background-color: var(--m-videoplaylist-bg-color-play-trensparent);
    height: 83%;
    left: 28px;
    position: absolute;
    top: 7px;
    -webkit-transition: background-color 150ms ease 0;
    transition: background-color 150ms ease 0;
    width: 54%;
    border-radius: 50%;
    border: 5px solid
}

.videoplaylist .wistia-playlist__video-title {
    color: var(--m-videoplaylist-color-play-title);
    font-family: var(--m-videoplaylist-font-basic);
    font-size: 16px
}

.videoplaylist .wistia-playlist__video-title:hover {
    color: var(--m-videoplaylist-color-play-black)
}

.videoplaylist .wistia-playlist__button-text {
    padding: 6px 25px;
    background-color: var(--m-videoplaylist-color-play-black) !important;
    color: var(--m-videoplaylist-color-play-white)
}

.videoplaylist .wistia-playlist__video-item.active {
    background-color: var(--m-videoplaylist-bg-color-play-blue-active)
}

.videoplaylist .wistia-playlist__video-item.active .wistia-playlist__video-copy p {
    color: var(--m-videoplaylist-color-play-black)
}

.videoplaylist .wistia-playlist__video-item.active .wistia-playlist__video-title {
    color: var(--m-videoplaylist-color-play-black)
}

.videoplaylist [data-video-type="html5Videos"] .wistia-playlist__video-content {
    width: 100% !important
}

.videoplaylist [data-video-type="html5Videos"] .wistia-playlist__video-item,
.videoplaylist [data-video-type="html5Videos"] .wistia-playlist__video-item.active {
    padding: 7px !important
}

.videoplaylist [data-video-type="html5Videos"] .wistia-playlist__video-item:hover,
.videoplaylist [data-video-type="html5Videos"] .wistia-playlist__video-item.active:hover {
    text-decoration: none;
    cursor: pointer
}

.videoplaylist [data-video-type="html5Videos"] .wistia-playlist__main-button a {
    text-transform: uppercase
}

@media(max-width:767.98px) {
    .videoplaylist [data-video-type="html5Videos"] .wistia-playlist__list-items {
        max-height: 351px !important;
        overflow-y: auto
    }
}

@media(min-width:576px) and (max-width:1199.98px) {
    .videoplaylist .wistia-playlist__main-video-image {
        position: absolute;
        width: 647px;
        height: 330px !important;
        z-index: -1;
        top: 0
    }

    .videoplaylist .wistia-playlist__main-video-image img {
        height: 100% !important;
        width: 100%
    }

    .videoplaylist .wistia-playlist__button-text {
        padding: 6px 25px;
        display: inline-block;
        margin-bottom: 15px;
        background-color: var(--m-videoplaylist-color-play-black) !important;
        color: var(--m-videoplaylist-color-play-white)
    }

    .videoplaylist .wistia-playlist {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .videoplaylist .wistia-playlist .wistia-playlist__main-container {
        width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        padding-right: 0
    }

    .videoplaylist .wistia-playlist .wistia-playlist__main-title {
        width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }

    .videoplaylist .wistia-playlist .wistia-playlist__list-container {
        padding-left: 0
    }

    .videoplaylist .wistia-playlist .wistia-playlist__list-container .wistia-playlist__video-icon {
        width: 100px !important;
        margin-bottom: 0
    }

    .videoplaylist .wistia-playlist .wistia-playlist__list-container .wistia-playlist__video-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 6px;
        min-width: 330px
    }

    .videoplaylist .wistia-playlist__list-container {
        width: 100% !important;
        -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important;
        margin-top: 24px
    }

    .videoplaylist .wistia-playlist__list-items {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        overflow-y: auto
    }

    .videoplaylist img {
        width: 100%
    }

    .videoplaylist .wistia-playlist__video-item {
        width: 45%;
        -ms-flex-preferred-size: 45%;
        flex-basis: 45%
    }

    .videoplaylist .wistia-playlist__video-copy p {
        margin-bottom: 0
    }
}

@media(max-width:767.98px) {
    .videoplaylist .wistia-playlist__main-video-image {
        width: 100%
    }

    .videoplaylist .wistia-playlist__main-video-image img {
        width: 91%;
        height: 44% !important
    }

    .videoplaylist .wistia-playlist__list-container {
        width: 100% !important;
        -ms-flex-preferred-size: 100% !important;
        flex-basis: 100% !important
    }

    .videoplaylist .wistia-playlist__list-items {
        overflow-y: hidden
    }

    .videoplaylist .wistia-playlist__video-copy p {
        margin-bottom: 0
    }

    .videoplaylist .wistia-playlist .wistia-playlist__main-container {
        width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        padding-right: 0 !important
    }

    .videoplaylist .wistia-playlist .wistia-playlist__list-container {
        width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        padding-left: 0 !important
    }

    .videoplaylist .wistia-playlist .h3 {
        font-size: 21px;
        line-height: 27px
    }

    .videoplaylist .wistia-playlist__main-description {
        padding: 25px 0 27px 0
    }

    .videoplaylist .wistia-playlist__button-text {
        padding: 6px 25px;
        background-color: var(--m-videoplaylist-color-play-black) !important;
        color: var(--m-videoplaylist-color-play-white);
        display: inline-block;
        margin-bottom: 14px
    }
}

.a-pin-icon-popup__item-box .store-name {
    font-weight: bold;
    font-size: var(--a-pin-icon-popup-store-font-size);
    line-height: var(--a-pin-icon-popup-store-line-height);
    color: var(--a-pin-icon-popup-store-text-color);
    margin-bottom: 0
}

.a-pin-icon-popup__item-box .get-direction {
    font-weight: bold;
    color: var(--a-pin-icon-popup-getdirection-text-color);
    font-size: var(--a-pin-icon-popup-getdirection-font-size);
    line-height: var(--a-pin-icon-popup-getdirection-line-height);
    text-decoration: underline
}

.a-pin-icon-popup__item-box .miles {
    font-weight: bold;
    font-size: var(--a-pin-icon-popup-miles-font-size);
    line-height: var(--a-pin-icon-popup-miles-line-height);
    color: var(--a-pin-icon-popup-miles-text-color)
}

.a-pin-icon-popup__label {
    margin-bottom: .31rem;
    font-weight: bold
}

.a-pan-zoom img {
    width: 100%
}

.a-pan-zoom .modal-header {
    min-height: 50px
}

.a-pan-zoom__image {
    cursor: pointer
}

.a-pan-zoom__pan-container {
    position: relative
}

.a-pan-zoom__pan-container--m-top {
    margin-top: 48px
}

.a-pan-zoom__pan-container--m-bottom {
    margin-bottom: 48px
}

.a-pan-zoom__pan-container__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.a-pan-zoom__pan-container__content .caption-content {
    width: 100%
}

.a-pan-zoom__pan-container__content .abt-zoom {
    color: var(--panandzoom-primary-dark-blue)
}

.a-pan-zoom__pan-container__content .abt-zoom:hover {
    color: var(--panandzoom-primary-blue)
}

.a-pan-zoom__pan-container__content .abt-zoom:active {
    color: var(--panandzoom-primary-blue)
}

.a-pan-zoom__pan-container__caption-title-top {
    margin-bottom: 16px;
    min-height: 20px
}

.a-pan-zoom__pan-container__caption-title-bottom {
    margin-top: 16px;
    min-height: 20px
}

.a-pan-zoom__pan-container__caption {
    margin: 4px 0 0 0
}

.a-pan-zoom__pan-container__caption p {
    padding-right: 16px
}

.a-pan-zoom__pan-container__caption--align-left {
    text-align: left;
    padding-right: 34px
}

.a-pan-zoom__pan-container__caption--align-center {
    text-align: center;
    padding-right: 34px
}

.a-pan-zoom__pan-container__caption--align-right {
    text-align: right;
    padding-right: 34px
}

.a-pan-zoom__pan-container--img-align-right {
    display: table;
    margin-left: auto
}

.a-pan-zoom__pan-container--img-align-center {
    display: table;
    margin-left: auto;
    margin-right: auto
}

.a-pan-zoom__pan-container--img-align-left {
    display: table;
    margin-right: auto
}

.a-pan-zoom__pan-container--defaultratio {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.a-pan-zoom__icon {
    position: absolute;
    right: 0
}

.a-pan-zoom .model-controls {
    position: absolute;
    right: 20px
}

.a-pan-zoom .modal .abt-icon-cancel {
    cursor: pointer
}

.a-pan-zoom .modal-dialog {
    margin-top: 10%
}

@media(min-width:992px) {
    .a-pan-zoom .modal-dialog {
        max-width: 960px
    }
}

.a-pan-zoom .modal-dialog .img-block {
    height: 70vh;
    overflow: hidden;
    cursor: grab;
    cursor: -o-grab;
    cursor: -webkit-grab
}

.a-pan-zoom .modal-dialog .img-block img {
    height: auto
}

.a-pan-zoom .modal-dialog .dragscroll {
    overflow: auto;
    max-height: 500px
}

.a-pan-zoom .modal-dialog .dragscroll .a-pan-zoom__image-popup {
    cursor: -webkit-grab;
    cursor: grab
}

.a-pan-zoom .modal-heading {
    width: 85%
}

.a-pan-zoom .modal-heading p {
    margin: 0
}

.a-pan-zoom .modal-body {
    padding: 0
}

.a-pan-zoom .modal-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.a-pan-zoom .modal .pan-zoom-in {
    margin-right: 16px;
    cursor: pointer;
    color: var(--panandzoom-primary-dark-blue)
}

.a-pan-zoom .modal .pan-zoom-in:hover {
    margin-right: 16px;
    color: var(--panandzoom-primary-blue)
}

.a-pan-zoom .modal .pan-zoom-in:active {
    margin-right: 16px;
    color: var(--panandzoom-primary-blue)
}

.a-pan-zoom .modal .pan-zoom-out {
    margin-right: 16px;
    cursor: pointer;
    color: var(--panandzoom-primary-dark-blue)
}

.a-pan-zoom .modal .pan-zoom-out:hover {
    margin-right: 16px;
    color: var(--panandzoom-primary-blue)
}

.a-pan-zoom .modal .pan-zoom-out:active {
    margin-right: 16px;
    color: var(--panandzoom-primary-blue)
}

.pan-zoom-popup .modal-backdrop.show {
    opacity: 0;
    display: none !important
}

@media(max-width:1199.98px) {
    .a-pan-zoom .modal-dialog {
        max-width: 690px;
        margin-top: 16%
    }
}

@media(max-width:767.98px) {
    .a-pan-zoom__pan-container__content .caption-content {
        width: 95%
    }

    .a-pan-zoom .modal-dialog {
        max-width: 345px;
        margin-top: 30%;
        margin-right: auto;
        margin-left: auto
    }

    .a-pan-zoom .modal-heading p {
        margin-top: 32px !important;
        width: 100%
    }

    .a-pan-zoom .modal-controls .pan-zoom-in {
        margin-right: 24px;
        color: var(--panandzoom-primary-dark-blue)
    }

    .a-pan-zoom .modal-controls .pan-zoom-out {
        margin-right: 24px;
        color: var(--panandzoom-primary-dark-blue)
    }

    .a-pan-zoom .modal .dragscroll {
        overflow: auto;
        max-height: 300px
    }
}

.m-pagination-static__links .paginationjs {
    text-align: center
}

.m-pagination-static__links .paginationjs-pages ul {
    margin: 0;
    padding: 0;
    border: var(--pagination-border);
    border-radius: var(--pagination-border-radius);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    list-style: none
}

.m-pagination-static__links .paginationjs-pages ul li a {
    display: block;
    color: var(--pagination-link-color);
    -webkit-text-decoration: var(--pagination-text-decoration);
    text-decoration: var(--pagination-text-decoration);
    font-size: var(--pagination-link-font-size);
    line-height: var(--pagination-link-line-height);
    padding: var(--pagination-link-padding);
    border-left: var(--pagination-border-width) solid var(--pagination-border-color);
    border-right: var(--pagination-border-width) solid var(--pagination-border-color)
}

.m-pagination-static__links .paginationjs-pages ul li a:hover {
    font-weight: bold;
    -webkit-text-decoration: var(--pagination-text-decoration);
    text-decoration: var(--pagination-text-decoration);
    color: var(--pagination-hover-link-color);
    background-color: var(--pagination-active-bg-color)
}

.m-pagination-static__links .paginationjs-pages ul li a:active,
.m-pagination-static__links .paginationjs-pages ul li a:focus {
    background-color: var(--pagination-active-bg-color);
    border-color: var(--pagination-active-border-color);
    border-left: 1px solid #222731;
    border-right: 1px solid #222731;
    font-weight: bold
}

.m-pagination-static__links .paginationjs-pages ul li a .abt-icon {
    display: block;
    padding-top: 3px;
    padding-bottom: 3px
}

.m-pagination-static__links .paginationjs-pages ul li .m-pagination-static__links .paginationjs-prev a {
    border-top-left-radius: var(--pagination-border-radius);
    border-bottom-left-radius: var(--pagination-border-radius)
}

.m-pagination-static__links .paginationjs-pages ul li .m-pagination-static__links .paginationjs-prev a:hover {
    border-left-color: var(--pagination-border-color);
    background-color: var(--pagination-active-bg-color)
}

.m-pagination-static__links .paginationjs-pages ul li .m-pagination-static__links .paginationjs-next a {
    border-top-right-radius: var(--pagination-border-radius);
    border-bottom-right-radius: var(--pagination-border-radius)
}

.m-pagination-static__links .paginationjs-pages ul li .m-pagination-static__links .paginationjs-next a:hover {
    border-right-color: var(--pagination-border-color);
    background-color: var(--pagination-active-bg-color)
}

.m-pagination-static__links .paginationjs-pages ul li.active {
    position: relative
}

.m-pagination-static__links .paginationjs-pages ul li.active:after {
    content: "";
    position: absolute;
    height: var(--pagination-active-link-width);
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--pagination-link-color)
}

.return-products_container {
    display: block
}

.return-products_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 26px
}

.return-products_block label {
    color: #63666a;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    display: block;
    margin-bottom: 4px
}

.return-products_block input,
.return-products_block select {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    border: 1px solid #222731;
    border-radius: 4px;
    padding: 15px 16px;
    width: 100%
}

.return-products_name {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 62%;
    flex: 0 0 62%
}

@media(max-width:1037px) {
    .return-products_name {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
        flex: 0 0 55%
    }
}

.return-products_name input {
    pointer-events: none;
    overflow: hidden;
    text-overflow: ellipsis
}

.return-products_qty {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 34%;
    flex: 0 0 34%;
    position: relative
}

@media(max-width:1037px) {
    .return-products_qty {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41%;
        flex: 0 0 41%
    }
}

.return-products_qty select {
    -webkit-appearance: none;
    -moz-appearance: none
}

.return-products_qty .dropdown-arrow:after {
    content: "\e907";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 67%;
    right: 1rem;
    left: auto;
    font-family: "ABBOTT-ICON", sans-serif
}

.return-products_comment-block label {
    color: #63666a;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    display: block;
    margin-bottom: 4px
}

.return-products_comment-block textarea {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 20px;
    border: 1px solid #222731;
    border-radius: 4px;
    padding: 15px 16px;
    width: 100%;
    resize: none
}

.m-orderhistory__table {
    width: 100%
}

.m-orderhistory__table tr {
    height: var(--orderhistory-tr-height);
    border-bottom: var(--orderhistory-tr-border-bottom)
}

.m-orderhistory__table tr:last-child {
    border-bottom: 0
}

.m-orderhistory__table--titles {
    font-weight: bold;
    font-size: var(--orderhistory-titles-size);
    text-transform: uppercase
}

.m-orderhistory__table--total {
    font-weight: bold
}

.m-orderhistory__table--actions {
    color: var(--orderhistory-action-color);
    font-weight: bold
}

.m-orderhistory__table--actions a:focus-visible {
    outline: 2px solid var(--gray-darkest-color);
    outline-offset: 2px;
    border-radius: 1px
}

.m-orderhistory__table--date-formatted {
    display: none
}

#m-orderhistory--header__actions {
    margin-bottom: 20px
}

#m-orderhistory--header__actions .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

#m-orderhistory--header__actions .cmp-title__text {
    margin: 0
}

#m-orderhistory--header__actions .a-button {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media(max-width:768px) {
    #m-orderhistory--header__actions .a-button {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }
}

.m-orderdetailssummary__group,
.m-orderdetailssummary__group-bold {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: var(--orderdetailssummary-group-padding)
}

.m-orderdetailssummary__group-bold .m-orderdetailssummary__title {
    font-weight: bold;
    font-size: var(--orderdetailssummary-group-bold-title-size)
}

.m-orderdetailssummary__group-bold .m-orderdetailssummary__value {
    font-size: var(--orderdetailssummary-group-bold-value-size)
}

.m-orderdetailssummary__title {
    font-size: var(--orderdetailssummary-title-size)
}

.m-orderdetailssummary__value {
    font-size: var(--orderdetailssummary-value-size)
}

.m-order-details-shipment-tracking__container {
    padding-left: var(--orderdetailsshipmenttracking-padding);
    padding-bottom: var(--orderdetailsshipmenttracking-margin);
    width: 100%;
    font-size: var(--orderdetailsshipmenttracking-font-size);
    border-bottom: 1px solid var(--orderdetailsshipmenttracking-border);
    margin-bottom: var(--orderdetailsshipmenttracking-margin)
}

.m-order-details-shipment-tracking__tracking {
    margin: 8px 0 0
}

.m-orderdetailsitemlist__list {
    list-style: none;
    padding-left: 0
}

.m-orderdetailsitemlist__item {
    border-top: 1px solid var(--orderdetailsitemlist-item-border-color);
    padding: var(--orderdetailsitemlist-item-padding);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.m-orderdetailsitemlist__item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 20px
}

.m-orderdetailsitemlist__item-title {
    font-size: var(--orderdetailsitemlist-title-size);
    font-weight: bold;
    padding-bottom: 8px
}

.m-orderdetailsitemlist__item-number {
    border-radius: 50%;
    background-color: var(--orderdetailsitemlist-number-bg-color);
    color: white;
    height: var(--orderdetailsitemlist-number-bg-size);
    width: var(--orderdetailsitemlist-number-bg-size);
    text-align: center;
    font-size: var(--orderdetailsitemlist-number-font-size)
}

.m-orderdetails-datadisplay__list {
    white-space: pre-wrap
}

.m-orderdetails-datadisplay__list p {
    margin: 0 0 8px
}

.m-orderdetailscontainer__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: 1px solid var(--orderdetailscontainer-border);
    padding-bottom: 20px;
    margin-bottom: var(--orderdetailscontainer-margin)
}

@media(max-width:720px) {
    .m-orderdetailscontainer__header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.m-orderdetailscontainer__button--credit-memo.a-button,
.m-orderdetailscontainer__button--invoice.a-button {
    display: inline-block;
    margin: 5px;
    font-size: var(--orderdetailscontainer-button-font-size);
    visibility: hidden
}

.m-orderdetailscontainer__button--credit-memo.a-button .abt-icon-print,
.m-orderdetailscontainer__button--invoice.a-button .abt-icon-print {
    margin-right: 10px;
    font-size: 20px
}

.m-subscriptions {
    margin-top: var(--m-subscriptions-margin-top)
}

.m-subscriptions__table {
    border: var(--m-subscriptions-table-border);
    border-radius: var(--m-subscriptions-table-border-radius);
    padding: var(--m-subscriptions-table-padding);
    margin-bottom: var(--m-subscriptions-table-margin-bottom)
}

@media(min-width:768px) {
    .m-subscriptions__table {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

.m-subscriptions__table-item {
    padding: var(--m-subscriptions-table-item-padding);
    margin-bottom: var(--m-subscriptions-table-item-margin-bottom)
}

.m-subscriptions__address-link {
    font-weight: bold
}

.m-subscriptions__address-link:hover {
    text-decoration: none
}

.m-subscriptions__address-link em {
    vertical-align: middle
}

.m-subscriptions__card-logo {
    max-width: var(--m-subscriptions-card-logo-max-width);
    max-height: var(--m-subscriptions-card-logo-max-height)
}

.m-subscriptions__cancel {
    border-radius: var(--m-subscriptions-cancel-border-radius);
    background-color: var(--m-subscriptions-cancel-background);
    -webkit-box-shadow: var(--m-subscriptions-cancel-box-shadow);
    box-shadow: var(--m-subscriptions-cancel-box-shadow);
    padding: var(--m-subscriptions-cancel-padding);
    margin-bottom: var(--m-subscriptions-cancel-margin-bottom)
}

@media(min-width:768px) {
    .m-subscriptions__cancel {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media(min-width:768px) {
    .m-subscriptions__cancel-content {
        width: 50%
    }

    .m-subscriptions__cancel-content p {
        margin-bottom: 0
    }
}

.m-subscriptions__cancel-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end
}

.m-my-cards--card-logo {
    background: var(--my-cards-logo-background);
    border-radius: var(--my-cards-logo-border-radius);
    max-width: var(--my-cards-logo-max-width);
    max-height: var(--my-cards-logo-max-height);
    margin-right: var(--my-cards-logo-margin-right);
    padding: var(--my-cards-logo-padding)
}

.m-minicart {
    --minicart-btn-color: var(--primary-color);
    --minicart-btn-count-color: var(--white-color);
    --minicart-btn-count-bg-color: var(--primary-color);
    --minicart-btn-count-font-size: .75rem;
    --minicart-mask-bg-color: var(--white-color);
    --minicart-content-border-color: var(--black-color);
    --minicart-header-bg-color: var(--white-color);
    --minicart-heading-font-size: 1.5rem;
    --minicart-heading-line-height: 2rem;
    --minicart-heading-color: var(--primary-color);
    --minicart-icon-button-color: var(--primary-color);
    --minicart-items-bg-color: var(--white-color);
    --minicart-header-padding: 32px 45px 24px 30px;
    --minicart-header-padding-mb: 25px 15px;
    --minicart-heading-font-size-mb: 1.125rem;
    --minicart-heading-line-height-mb: 1.5rem;
    --minicart-items-padding: 0 45px 0 30px;
    --minicart-items-padding-mb: 0 15px;
    --minicart-items-image-margin: 0 1rem 0 .5rem;
    --minicart-items-image-margin-mb: 0 .5rem;
    --minicart-items-image-width: 76px;
    --minicart-items-image-width-mb: 55px;
    --minicart-items-divider-color: #c9c9cc;
    --minicart-items-sku-detail-font-size: .875rem;
    --minicart-items-sku-detail-line-height: 1.25rem;
    --minicart-items-sku-detail-color: #333;
    --minicart-items-sku-margin-bottom: .5rem;
    --minicart-items-price-color: var(--primary-color);
    --minicart-items-price-font-size: 1.5rem;
    --minicart-items-price-line-height: 2rem;
    --minicart-items-original-price-color: #c9c9cc;
    --minicart-items-original-price-font-size: .875rem;
    --minicart-items-original-price-line-height: 1.25rem;
    --minicart-items-price-disclaimer-color: var(--primary-color);
    --minicart-items-price-disclaimer-font-size: .75rem;
    --minicart-items-price-disclaimer-line-height: 1rem;
    --minicart-totals-bg-color: var(--primary-color);
    --minicart-totals-padding-mb: 33px 15px;
    --minicart-totals-padding: 24px 44px 24px 30px;
    --minicart-subtotal-label-color: #333;
    --minicart-subtotal-label-font-size: .875rem;
    --minicart-subtotal-label-line-height: 1.25rem;
    --minicart-subtotal-value-color: var(--primary-color);
    --minicart-subtotal-value-font-size: 1.125rem;
    --minicart-subtotal-value-line-height: 1.5rem;
    --minicart-subtotal-value-subtext-color: var(--primary-color);
    --minicart-subtotal-value-subtext-font-size: .75rem;
    --minicart-subtotal-value-subtext-line-height: 1rem;
    --minicart-delivery-label-color: #333;
    --minicart-delivery-label-font-size: .875rem;
    --minicart-delivery-label-line-height: 1.25rem;
    --minicart-delivery-heading-color: #333;
    --minicart-delivery-heading-font-size: 1.125rem;
    --minicart-delivery-heading-line-height: 1.5rem;
    --minicart-delivery-subtext-color: #333;
    --minicart-delivery-subtext-font-size: .875rem;
    --minicart-delivery-subtext-line-height: 1rem;
    --minicart-vat-label-color: #333;
    --minicart-vat-label-font-size: .875rem;
    --minicart-vat-label-line-height: 1.25rem;
    --minicart-vat-value-color: var(--primary-color);
    --minicart-vat-value-font-size: 1.125rem;
    --minicart-vat-value-line-height: 1.5rem;
    --minicart-discount-label-color: #333;
    --minicart-discount-label-font-size: .875rem;
    --minicart-discount-label-line-height: 1.25rem;
    --minicart-discount-value-color: var(--primary-color);
    --minicart-discount-value-font-size: 1.125rem;
    --minicart-discount-value-line-height: 1.5rem;
    --minicart-total-label-color: var(--primary-color);
    --minicart-total-label-font-size: 1.125rem;
    --minicart-total-label-line-height: 1.5rem;
    --minicart-total-value-color: var(--primary-color);
    --minicart-total-value-font-size: 1.5rem;
    --minicart-total-value-line-height: 2rem;
    --minicart-subscription-label-font-size: .875rem;
    --minicart-button-list-margin-bottom: 1.5rem;
    --minicart-promo-code-font-size: 1.5rem;
    --minicart-promo-code-line-height: 2rem;
    --minicart-promo-code-btn-bg-color: var(--primary-color);
    --minicart-promo-code-btn-color: var(--white-color);
    --minicart-promo-code-btn-radius: 4px;
    --minicart-promo-code-btn-width: 32px;
    --minicart-promo-code-btn-height: 32px;
    --minicart-promo-code-label-cont-padding-right: 1rem;
    --minicart-promo-code-input-border: 1px solid #a1a1a4;
    --minicart-promo-code-input-radius: 4px;
    --minicart-promo-code-input-padding: .8125rem 1rem .8125rem 2.5rem;
    --minicart-promo-code-input-margin-right: 1rem;
    --minicart-promo-code-input-placeholder-color: #888;
    --minicart-promo-code-btn-container-padding-bottom: .25rem;
    --minicart-promo-code-btn-container-margin-top: 1.25rem;
    --minicart-promo-code-btn-container-max-width: 100px;
    --minicart-promo-code-tag-font-size: .75rem;
    --minicart-promo-code-tag-line-height: 1rem;
    --minicart-promo-code-tag-letter-spacing: .81px;
    --minicart-promo-code-tag-bg-color: var(--white-color);
    --minicart-promo-code-tag-border: 1px solid #a1a1a4;
    --minicart-promo-code-tag-padding: .5rem 1rem;
    --minicart-promo-code-tag-margin: 0 .31rem .625rem .31rem;
    --minicart-promo-code-tag-bell-icon-color: var(--black-color);
    --minicart-promo-code-tag-bell-icon-margin-right: .5rem;
    --minicart-promo-code-price-tag-icon-top: 15px;
    --minicart-promo-code-price-tag-icon-left: 10px;
    --minicart-promo-code-error-color: var(--danger-color);
    --minicart-promo-code-error-margin-top: .25rem;
    --minicart-promo-code-tag-delete-icon-color: var(--primary-color);
    --minicart-promo-code-tag-delete-icon-margin-left: 1rem;
    --minicart-promo-code-form-margin: 1rem 0;
    --minicart-items-padding: 0 1.5rem;
    --minicart-content-padding-bottom: .625rem;
    --minicart-header-padding-x: 1.5rem;
    --minicart-item-qty-color: var(--white-color);
    --minicart-item-qty-font-size: .875rem;
    --minicart-item-qty-bg-color: var(--primary-color);
    --minicart-item-qty-height: 24px;
    --minicart-item-qty-width: 24px;
    --minicart-margin-bottom: 2rem;
    --minicart-label-font-size: .875rem;
    --minicart-label-line-height: 1.5rem;
    --minicart-label-sm-font-size: .875rem;
    --minicart-label-sm-line-height: 1.25rem;
    --minicart-heading-total-color: var(--white-color);
    --minicart-heading-total-bg: var(--primary-color);
    --minicart-heading-total-radius: 500px;
    --minicart-heading-total-margin-left: 1rem;
    --minicart-heading-total-padding: .125rem .5rem;
    --minicart-heading-toggle-padding-left: .625rem;
    --minicart-promo-heading-color: var(--primary-color);
    --minicart-discounts-margin-bottom: .625rem;
    --minicart-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
    --minicart-bottom-margin-bottom: 1.75rem;
    --minicart-product-section-margin: 0 0 .9375rem;
    --minicart-product-section-image-max-width: 40px;
    --minicart-product-section-para-color: var(--black-color);
    --minicart-product-section-image-padding-right-mb: .5rem;
    --minicart-stepper-input-width-mb: 40px;
    --minicart-stepper-input-width-xmb: 35px;
    --minicart-stepper-number-width-xmb: 15px
}

.minicart {
    margin: 0
}

.allow-symbol-space {
    padding-right: 4px
}

.m-minicart__mask {
    background-color: var(--minicart-mask-bg-color);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 2s, visibility 2s;
    transition: opacity 2s, visibility 2s
}

.m-minicart__mask-active {
    opacity: .8;
    cursor: pointer;
    visibility: visible
}

.m-minicart__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-left: 1px solid var(--minicart-content-border-color);
    width: 520px;
    max-width: 100%;
    height: 100%;
    min-height: 100vh;
    margin-left: auto;
    z-index: 9999
}

.m-minicart__content>div:last-child {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-bottom: 20px
}

.m-minicart__content:before {
    content: "";
    background: var(--minicart-items-bg-color);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5
}

.m-minicart__content-above {
    position: relative;
    margin-bottom: 0;
    z-index: 10
}

.m-minicart__container {
    display: none
}

.m-minicart__container.is-active {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    overflow-y: scroll;
    overflow-x: hidden
}

.m-minicart__main {
    position: relative
}

.m-minicart__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--minicart-btn-color);
    min-height: 48px;
    margin-right: 25px;
    cursor: pointer
}

.m-minicart__btn-icon {
    position: relative
}

.m-minicart__btn-icon .abt-icon {
    margin-right: 3px
}

.m-minicart__btn-text {
    display: none
}

@media(min-width:768px) and (max-width:991.98px) {
    .m-minicart__btn-text {
        display: block;
        margin-left: 6px
    }
}

.m-minicart__btn-count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--minicart-btn-count-bg-color);
    font-size: var(--minicart-btn-count-font-size);
    color: var(--minicart-btn-count-color);
    width: 16px;
    height: 16px;
    position: absolute;
    top: -5px;
    right: -5px;
    border-radius: 50%
}

.m-minicart__header {
    background: var(--minicart-header-bg-color);
    padding: var(--minicart-header-padding);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.m-minicart__header .m-minicart__discount-label {
    font-size: var(--minicart-label-font-size);
    font-weight: bold;
    line-height: var(--minicart-label-line-height)
}

.m-minicart__header .m-minicart__discounts {
    margin-top: var(--minicart-discounts-margin-bottom);
    margin-bottom: 0
}

@media(max-width:767.98px) {
    .m-minicart__header {
        padding: var(--minicart-header-padding-mb)
    }
}

.m-minicart__heading {
    font-size: var(--minicart-heading-font-size);
    font-weight: bold;
    line-height: var(--minicart-heading-line-height);
    text-transform: uppercase
}

@media(max-width:767.98px) {
    .m-minicart__heading {
        font-size: var(--minicart-heading-font-size-mb);
        line-height: var(--minicart-heading-line-height-mb)
    }
}

.m-minicart__heading-total {
    font-size: var(--minicart-label-sm-font-size);
    font-weight: bold;
    line-height: var(--minicart-label-sm-line-height);
    color: var(--minicart-heading-total-color);
    background-color: var(--minicart-heading-total-bg);
    border-radius: var(--minicart-heading-total-radius);
    margin-left: var(--minicart-heading-total-margin-left);
    padding: var(--minicart-heading-total-padding)
}

.m-minicart__heading-toggle {
    margin-left: inherit;
    padding-left: var(--minicart-heading-toggle-padding-left);
    cursor: pointer
}

.m-minicart__heading-toggle:before {
    display: inline-block;
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

@media(min-width:768px) {

    .m-minicart__heading-total,
    .m-minicart__heading-toggle,
    .m-minicart__mb-sub-heading {
        display: none
    }
}

.m-minicart__promo-heading {
    color: var(--minicart-promo-heading-color);
    font-size: var(--minicart-label-sm-font-size);
    font-weight: bold;
    line-height: var(--minicart-label-sm-line-height)
}

.m-minicart__sub-heading {
    font-size: var(--minicart-label-font-size);
    font-weight: bold
}

.m-minicart__close.a-button .btn {
    padding: 0
}

@media(min-width:576px) {
    .m-minicart__close.a-button .btn {
        padding: 10px
    }
}

.m-minicart__close.a-button .btn:hover,
.m-minicart__close.a-button .btn:focus {
    text-decoration: none;
    border-color: transparent
}

.m-minicart__items,
.m-minicart__bottom {
    padding: var(--minicart-items-padding)
}

@media(max-width:767.98px) {

    .m-minicart__items,
    .m-minicart__bottom {
        padding: var(--minicart-items-padding-mb)
    }
}

.m-minicart__bottom {
    margin-top: 1.5rem
}

.m-minicart__bottom>div {
    margin-bottom: var(--minicart-bottom-margin-bottom)
}

.m-minicart__cart-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid rgba(104, 57, 57, 0.41);
    padding-top: 15px;
    padding-bottom: 24px;
    min-height: 116px
}

.m-minicart__delete.a-button .btn {
    padding: 0
}

.m-minicart__image {
    margin: var(--minicart-items-image-margin-mb);
    width: var(--minicart-items-image-width-mb)
}

@media(min-width:576px) {
    .m-minicart__image {
        margin: var(--minicart-items-image-margin);
        width: var(--minicart-items-image-width)
    }
}

.m-minicart__item-details {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: auto
}

.m-minicart__subscription-renewal-info {
    padding: 10px 0
}

.m-minicart__subscription-renewal-info .dynamic-value {
    font-weight: bold
}

.m-minicart__subscription-label {
    margin: 0;
    font-size: var(--minicart-subscription-label-font-size);
    font-weight: bold
}

.m-minicart__sku {
    font-size: var(--minicart-label-sm-font-size);
    font-weight: bold;
    line-height: var(--minicart-label-sm-line-height)
}

@media(min-width:768px) {
    .m-minicart__sku {
        font-size: var(--minicart-label-font-size)
    }
}

.m-minicart__price {
    color: var(--minicart-items-price-color);
    font-size: var(--minicart-label-font-size);
    font-weight: bold;
    line-height: var(--minicart-label-line-height);
    text-align: right
}

@media(min-width:768px) {
    .m-minicart__price {
        font-size: var(--minicart-items-price-font-size);
        line-height: var(--minicart-items-price-line-height)
    }
}

.m-minicart__original-price {
    color: var(--minicart-items-original-price-color);
    font-size: var(--minicart-items-original-price-font-size);
    line-height: var(--minicart-items-original-price-line-height);
    text-align: right;
    text-decoration: line-through
}

.m-minicart__price-disclaimer {
    color: var(--minicart-items-price-disclaimer-color);
    font-size: var(----minicart-items-price-disclaimer-font-size);
    line-height: var(----minicart-items-price-disclaimer-line-height);
    text-align: right
}

.m-minicart__totals {
    background-color: var(--minicart-totals-bg-color);
    padding: var(--minicart-totals-padding-mb)
}

@media(min-width:576px) {
    .m-minicart__totals {
        padding: var(--minicart-totals-padding)
    }
}

.m-minicart__subtotal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 24px
}

.m-minicart__subtotal-label {
    font-size: var(--minicart-subtotal-label-font-size);
    line-height: var(--minicart-subtotal-label-line-height);
    color: var(--minicart-subtotal-label-color)
}

.m-minicart__subtotal-value {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: right
}

.m-minicart__subtotal-amount {
    color: var(--minicart-subtotal-value-color);
    font-size: var(--minicart-subtotal-value-font-size);
    line-height: var(--minicart-subtotal-value-line-height);
    font-weight: bold
}

.m-minicart__heading-amount {
    color: var(--minicart-subtotal-value-color);
    font-size: var(--minicart-subtotal-value-font-size);
    line-height: var(--minicart-subtotal-value-line-height);
    font-weight: bold;
    margin-left: auto
}

.m-minicart__price-vat-label {
    color: var(--minicart-subtotal-value-subtext-color);
    font-size: var(--minicart-subtotal-value-subtext-font-size);
    line-height: var(--minicart-subtotal-value-subtext-line-height);
    font-weight: bold;
    text-transform: uppercase
}

.m-minicart__delivery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 24px
}

.m-minicart__delivery-label {
    font-size: var(--minicart-delivery-label-font-size);
    line-height: var(--minicart-delivery-label-line-height);
    color: var(--minicart-delivery-color)
}

.m-minicart__delivery-value {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: right
}

.m-minicart__delivery-heading {
    color: var(--minicart-delivery-heading-color);
    font-size: var(--minicart-delivery-heading-font-size);
    line-height: var(--minicart-delivery-heading-line-height);
    font-weight: bold
}

.m-minicart__delivery-text {
    color: var(--minicart-delivery-subtext-value-color);
    font-size: var(--minicart-delivery-subtext-value-font-size);
    line-height: var(--minicart-delivery-subtext-value-line-height)
}

.m-minicart__vat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px
}

.m-minicart__vat-label {
    font-size: var(--minicart-vat-label-font-size);
    line-height: var(--minicart-vat-label-line-height);
    color: var(--minicart-vat-label-color)
}

.m-minicart__vat-value {
    text-align: right;
    margin-left: auto;
    font-size: var(--minicart-vat-value-font-size);
    line-height: var(--minicart-vat-value-line-height);
    color: var(--minicart-vat-value-color)
}

.m-minicart__discounts {
    margin-bottom: 24px
}

.m-minicart__discount {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.m-minicart__discount-label {
    font-size: var(--minicart-discount-label-font-size);
    line-height: var(--minicart-discount-label-line-height);
    color: var(--minicart-discount-label-color)
}

.m-minicart__discount-value {
    text-align: right;
    margin-left: auto;
    font-size: var(--minicart-discount-value-font-size);
    font-weight: bold;
    line-height: var(--minicart-discount-value-line-height);
    color: var(--minicart-discount-value-color)
}

.m-minicart__total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-minicart__total-label {
    font-size: var(--minicart-total-label-font-size);
    font-weight: bold;
    line-height: var(--minicart-total-label-line-height);
    color: var(--minicart-total-label-color)
}

.m-minicart__total-value {
    text-align: right;
    margin-left: auto;
    font-size: var(--minicart-total-value-font-size);
    line-height: var(--minicart-total-value-line-height);
    color: var(--minicart-total-value-color);
    font-weight: bold
}

.m-minicart__checkout {
    background-color: var(--minicart-checkout-background-color);
    padding: 24px 45px 0 30px;
    margin-bottom: auto
}

.m-minicart__checkout .a-button {
    padding-bottom: 24px
}

.m-minicart__detail {
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.m-minicart__detail-icon {
    padding: 8px 8px 8px 8px;
    background-color: var(--minicart-total-label-color);
    color: #fff;
    margin: 4px 4px auto 0;
    font-size: 24px;
    border-radius: 6px
}

.m-minicart__detail-text {
    color: black;
    font-size: var(--minicart-label-font-size);
    line-height: var(--minicart-label-line-height);
    margin-left: 4px;
    margin-right: auto
}

.m-minicart__on-edit-mode .m-minicart__content {
    width: 100%;
    height: auto;
    min-height: 0
}

.m-minicart__button-list .a-button {
    margin-bottom: 16px
}

.m-minicart .a-promo-code {
    margin-bottom: var(--minicart-button-list-margin-bottom)
}

.m-minicart .a-promo-code__heading {
    cursor: pointer
}

.m-minicart .a-promo-code__title {
    font-size: var(--minicart-label-font-size);
    font-weight: bold;
    line-height: var(--minicart-label-line-height)
}

@media(min-width:768px) {
    .m-minicart .a-promo-code__title {
        font-size: var(--minicart-promo-code-font-size);
        line-height: var(--minicart-promo-code-line-height)
    }
}

.m-minicart .a-promo-code__btn-expand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--minicart-promo-code-btn-bg-color);
    color: var(--minicart-promo-code-btn-color);
    border-radius: var(--minicart-promo-code-btn-radius);
    margin-left: auto;
    height: var(--minicart-promo-code-btn-height);
    width: var(--minicart-promo-code-btn-width);
    cursor: pointer
}

.m-minicart .a-promo-code__label-container {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: var(--minicart-promo-code-label-cont-padding-right)
}

.m-minicart .a-promo-code__label {
    width: 100%;
    margin: 0
}

.m-minicart .a-promo-code__input {
    display: block;
    border: var(--minicart-promo-code-input-border);
    border-radius: var(--minicart-promo-code-input-radius);
    padding: var(--minicart-promo-code-input-padding);
    margin-right: var(--minicart-promo-code-input-margin-right);
    width: 100%
}

.m-minicart .a-promo-code__input::-webkit-input-placeholder {
    color: var(--minicart-promo-code-input-placeholder-color)
}

.m-minicart .a-promo-code__input::-moz-placeholder {
    color: var(--minicart-promo-code-input-placeholder-color)
}

.m-minicart .a-promo-code__input:-ms-input-placeholder {
    color: var(--minicart-promo-code-input-placeholder-color)
}

.m-minicart .a-promo-code__input::-ms-input-placeholder {
    color: var(--minicart-promo-code-input-placeholder-color)
}

.m-minicart .a-promo-code__input::placeholder {
    color: var(--minicart-promo-code-input-placeholder-color)
}

.m-minicart .a-promo-code .remove-tag-adj {
    padding: .8125rem 1rem .8125rem .5rem
}

.m-minicart .a-promo-code__input-container {
    position: relative
}

.m-minicart .a-promo-code__input-icon {
    color: var(--minicart-promo-code-tag-bell-icon-color);
    position: absolute;
    top: var(--minicart-promo-code-price-tag-icon-top);
    left: var(--minicart-promo-code-price-tag-icon-left)
}

.m-minicart .a-promo-code__btn-container {
    padding-bottom: var(--minicart-promo-code-btn-container-padding-bottom);
    margin-left: auto;
    margin-top: var(--minicart-promo-code-btn-container-margin-top);
    min-width: var(--minicart-promo-code-btn-container-max-width)
}

.m-minicart .a-promo-code__btn-container .a-spinner {
    padding-bottom: 0
}

.m-minicart .a-promo-code .remove-label-adj {
    padding-bottom: inherit;
    margin-top: inherit
}

@media(max-width:991.98px) {
    .m-minicart .a-promo-code .m-minicart .a-promo-code .remove-label-adj {
        margin-top: 20px
    }
}

.m-minicart .a-promo-code__tag {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: var(--minicart-promo-code-tag-font-size);
    letter-spacing: var(--minicart-promo-code-tag-letter-spacing);
    line-height: var(--minicart-promo-code-tag-line-height);
    background: var(--minicart-promo-code-tag-bg-color);
    border: var(--minicart-promo-code-tag-border);
    border-radius: 999px;
    padding: var(--minicart-promo-code-tag-padding);
    margin: var(--minicart-promo-code-tag-margin)
}

.m-minicart .a-promo-code__tag--disabled {
    opacity: .5
}

.m-minicart .a-promo-code__tag-bell-icon {
    color: var(--minicart-promo-code-tag-bell-icon-color);
    margin-right: var(--minicart-promo-code-tag-bell-icon-margin-right)
}

.m-minicart .a-promo-code__tag-delete-icon {
    color: var(--minicart-promo-code-tag-delete-icon-color);
    margin-left: var(--minicart-promo-code-tag-delete-icon-margin-left);
    cursor: pointer
}

.m-minicart .a-promo-code__form {
    margin: var(--minicart-promo-code-form-margin)
}

.m-minicart .a-promo-code--with-error .a-promo-code__label {
    color: var(--minicart-promo-code-error-color)
}

.m-minicart .a-promo-code--with-error .a-promo-code__input {
    border-color: var(--minicart-promo-code-error-color)
}

.m-minicart .a-promo-code__error-msg {
    font-size: var(--minicart-promo-code-tag-font-size);
    line-height: var(--minicart-promo-code-tag-line-height);
    color: var(--minicart-promo-code-error-color);
    margin-top: var(--minicart-promo-code-error-margin-top)
}

.m-minicart #below-cart-msg .a-button--primary {
    margin-bottom: 1.5rem
}

.m-minicart #below-cart-msg .productsection {
    padding: 0;
    margin: var(--minicart-product-section-margin)
}

.m-minicart #below-cart-msg .productsection .o-product-section__container {
    padding: 0
}

.m-minicart #below-cart-msg .productsection .o-product-section__image-wrapper {
    max-width: var(--minicart-product-section-image-max-width);
    margin: 0;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

@media(max-width:991.98px) {
    .m-minicart #below-cart-msg .productsection .o-product-section__image-wrapper {
        padding-right: var(--minicart-product-section-image-padding-right-mb)
    }
}

.m-minicart #below-cart-msg .productsection .o-product-section__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0;
    max-width: none
}

.m-minicart #below-cart-msg .productsection .o-product-section__para {
    color: var(--minicart-product-section-para-color);
    font-size: var(--minicart-label-font-size);
    line-height: var(--minicart-label-line-height)
}

.m-minicart #below-cart-msg .productsection .o-product-section__para>p:last-child {
    margin-bottom: 0
}

.m-minicart #below-cart-msg .productsection .o-product-section__custom-list {
    display: none
}

.m-minicart #below-cart-msg .productsection .o-product-section__row {
    margin: 0
}

.m-minicart .a-spinner {
    padding-bottom: var(--minicart-bottom-margin-bottom)
}

@media(max-width:767.98px) {
    .m-minicart .a-stepper__input-grp-btn {
        width: var(--minicart-stepper-input-width-mb)
    }
}

@media screen and (max-width:369px) {
    .m-minicart .a-stepper__input-grp-btn {
        width: var(--minicart-stepper-input-width-xmb)
    }

    .m-minicart .a-stepper__number {
        width: var(--minicart-stepper-number-width-xmb);
        min-width: 0
    }
}

.m-minicart__request-error {
    display: none
}

.m-minicart__edit-cart {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: underline;
    margin-left: auto
}

@media(max-width:767.98px) {

    .m-ordersummary.is-collapsed .m-minicart__main-content,
    .m-ordersummary.is-collapsed #empty-cart-msg,
    .m-ordersummary.is-collapsed #below-cart-msg {
        display: none !important
    }

    .m-ordersummary.is-collapsed .m-minicart__heading-toggle:before {
        -webkit-transform: rotate(-270deg);
        transform: rotate(-270deg)
    }
}

.m-ordersummary__container {
    background: var(--minicart-items-bg-color);
    -webkit-box-shadow: var(--minicart-box-shadow);
    box-shadow: var(--minicart-box-shadow);
    height: 100%
}

@media(min-width:768px) {
    .m-ordersummary__container>.m-ordersummary__main {
        position: sticky;
        top: 0
    }
}

.m-ordersummary__content {
    padding-bottom: var(--minicart-content-padding-bottom)
}

@media(min-width:768px) and (max-width:991.98px) {
    .m-ordersummary__position-sticky .m-ordersummary__container>.m-ordersummary__main {
        z-index: 100
    }
}

@media(max-width:991.98px) {
    .m-ordersummary__position-sticky .m-ordersummary:not(.is-collapsed) #ordersummary {
        -webkit-box-shadow: var(--minicart-box-shadow);
        box-shadow: var(--minicart-box-shadow)
    }
}

.m-ordersummary__position-sticky #ordersummary {
    background-color: var(--minicart-header-bg-color)
}

@media(max-width:991.98px) {
    .m-ordersummary__position-sticky #ordersummary {
        position: fixed;
        top: 100px;
        width: 100%;
        z-index: 1;
        max-width: 33.75rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        border-bottom: 1px solid rgba(104, 57, 57, 0.41)
    }
}

@media(max-width:991.98px) {
    .m-ordersummary__position-sticky #ordersummary .m-minicart__header .d-flex.align-items-center {
        position: relative;
        padding-bottom: 30px
    }

    .m-ordersummary__position-sticky #ordersummary .m-minicart__header .d-flex.align-items-center>:last-child {
        position: absolute;
        right: 0;
        bottom: 0
    }
}

.m-ordersummary__lightgrey #ordersummary {
    background-color: var(--gray-white-color) !important
}

.m-ordersummary__lightgrey #ordersummary .m-minicart__header {
    background: transparent
}

.m-ordersummary__lightgrey #ordersummary .m-minicart__totals {
    background-color: transparent
}

.m-ordersummary__lightgrey #ordersummary .a-promo-code__btn-expand {
    background-color: transparent;
    color: inherit
}

.m-ordersummary__item-qty-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-ordersummary__item-qty {
    color: var(--minicart-item-qty-color);
    text-align: center;
    font-size: var(--minicart-item-qty-font-size);
    background-color: var(--minicart-item-qty-bg-color);
    height: var(--minicart-item-qty-height);
    width: var(--minicart-item-qty-width);
    border-radius: 50%
}

.m-ordersummary .m-minicart__cart-item:last-child:last-child {
    border-bottom: 1px solid rgba(104, 57, 57, 0.41)
}

.m-ordersummary .m-minicart__header,
.m-ordersummary .m-minicart__totals {
    padding-left: var(--minicart-header-padding-x);
    padding-right: var(--minicart-header-padding-x)
}

.m-ordersummary .m-minicart__items,
.m-ordersummary .m-minicart__bottom {
    padding: var(--minicart-items-padding)
}

@media(max-width:767.98px) {
    .m-ordersummary .m-minicart__heading {
        font-size: 16px;
        line-height: var(--minicart-label-line-height)
    }
}

.m-order-confirmation {
    margin-bottom: var(--minicart-margin-bottom)
}

.m-order-confirmation .m-ordersummary__content {
    padding-bottom: 0
}

.m-order-confirmation .m-minicart__cart-item:last-child:last-child {
    border-bottom: 0
}

.o-header__mini-cart.hide-icon .m-minicart__btn-icon,
.o-header__mini-cart.hide-icon .m-minicart__btn-text {
    display: none
}

.minicartbutton.hide-icon {
    display: none
}

.a-indicator__dot,
.o-media-pagination .slick-dots li button,
.a-indicator__dot-light,
.o-media-pagination--dark.o-media-pagination .slick-dots li button {
    width: var(--indicator-width);
    height: var(--indicator-height);
    border-radius: var(--indicator-border-radius);
    border: var(--indicator-border-width) solid var(--indicator-border-color);
    background-color: var(--indicator-dot);
    display: inline-block;
    margin: var(--indicator-dot-margin);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer
}

.a-indicator__dot:hover,
.o-media-pagination .slick-dots li button:hover,
.a-indicator__dot-light:hover {
    background-color: var(--indicator-dot-hover-color)
}

.a-indicator--dark {
    background-color: var(--indicator-container-dark-bg)
}

.a-indicator__dot--active,
.o-media-pagination .slick-dots li.slick-active button {
    background-color: var(--indicator-dot-active)
}

.a-indicator__dot--active:hover,
.o-media-pagination .slick-dots li.slick-active button:hover {
    background-color: var(--indicator-dot-active)
}

.a-indicator__dot-light,
.o-media-pagination--dark.o-media-pagination .slick-dots li button {
    border-color: var(--indicator-light-dot)
}

.a-indicator__dot-light--active,
.o-media-pagination--dark.o-media-pagination .slick-dots li.slick-active button {
    background-color: var(--indicator-light-dot-active)
}

.a-indicator__dot-light--active:hover,
.o-media-pagination--dark.o-media-pagination .slick-dots li.slick-active button:hover {
    background-color: var(--indicator-light-dot-active)
}

.o-media-pagination {
    height: auto
}

.o-media-pagination .slick-slide {
    height: 680px
}

.o-media-pagination .image {
    position: relative;
    width: 100%;
    height: 680px
}

.o-media-pagination .cmp-image__image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center
}

.o-media-pagination--dark.o-media-pagination .slick-arrow {
    color: var(--hero-carousel-dark-arrow-color);
    background-color: var(--hero-carousel-dark-arrow-bg-color)
}

@media(max-width:991.98px) {
    .o-media-pagination {
        height: 190px;
        width: 100vw;
        margin-left: calc(-1 * (100vw - 100%) / 2)
    }

    .o-media-pagination .slick-slide,
    .o-media-pagination .image {
        height: 190px
    }

    .o-media-pagination .slick-slide .a-video__player {
        height: 190px
    }

    .o-media-pagination .slick-arrow {
        display: none !important
    }

    .o-media-pagination .slick-dots {
        top: 166px
    }
}

@media(min-width:768px) and (max-width:991.98px) {
    .o-media-pagination {
        height: 333px
    }

    .o-media-pagination .slick-dots {
        top: 293px
    }

    .o-media-pagination .slick-slide .a-video__player {
        height: 333px
    }

    .o-media-pagination .slick-slide,
    .o-media-pagination .image {
        height: 333px
    }
}

@media(min-width:992px) {
    .o-media-pagination .slick-dots {
        top: 616px
    }
}

.o-media-pagination.slick-slider {
    margin-bottom: 0
}

.o-media-pagination .video {
    padding: 0 !important
}

.o-media-pagination .a-video__caption {
    display: none
}

.o-media-pagination .a-video__player {
    padding-bottom: 0;
    height: 680px
}

.o-media-pagination[data-no-indicators="true"] .slick-dots {
    display: none !important
}

.o-media-pagination .slick-arrow {
    width: var(--hero-carousel-arrow-width);
    height: var(--hero-carousel-arrow-height);
    border-radius: var(--hero-carousel-arrow-border-radius);
    background-color: var(--hero-carousel-arrow-bg-color);
    color: var(--hero-carousel-arrow-color);
    z-index: 99;
    opacity: .3
}

.o-media-pagination .slick-arrow:hover {
    opacity: 1
}

.o-media-pagination .slick-prev {
    left: 30px
}

.o-media-pagination .slick-next {
    right: 30px
}

.o-media-pagination .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: auto;
    width: 100%;
    left: 0;
    padding: 0
}

.o-media-pagination .slick-dots li {
    list-style-type: none;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0
}

.o-media-pagination .slick-dots li button {
    padding: 0
}

.o-media-pagination .slick-dots li button:before {
    content: none
}

.m-masked-container.masked section {
    max-height: 500px;
    overflow: hidden;
    position: relative
}

.m-masked-container.masked section:after {
    content: "";
    display: block;
    position: absolute;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, #fff), to(#fff));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 50%, #fff 100%);
    width: 100%;
    height: 100%;
    top: 0
}

.m-masked-container.masked .m-masked-container__login-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-masked-container .m-masked-container__login-form {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    top: -250px;
    width: 100%;
    z-index: 1
}

.m-masked-container .m-masked-container__login-form>div {
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px
}

.aem-AuthorLayer-Edit .m-masked-container.masked section {
    max-height: initial;
    overflow: visible
}

.aem-AuthorLayer-Edit .m-masked-container.masked section:after {
    display: none
}

.m-layout-container {
    padding-top: var(--layout-container-padding-top);
    padding-bottom: var(--layout-container-padding-bottom)
}

.m-layout-container .a-container {
    margin: 0;
    padding: 0
}

.m-layout-container--subtitle {
    font-size: var(--layout-container-subtitle-font-size);
    line-height: var(--layout-container-subtitle-line-height);
    color: var(--layout-container-subtitle-color);
    text-transform: none;
    font-weight: normal
}

.o-info-section {
    position: relative;
    padding: var(--info-section-padding);
    height: var(--info-section-height)
}

@media(max-width:767.98px) {
    .o-info-section {
        padding: var(--info-section-padding-mob);
        height: auto
    }
}

.o-info-section__container {
    height: var(--info-section-container-height);
    overflow: hidden
}

@media(max-width:767.98px) {
    .o-info-section__container {
        padding: 0;
        height: auto
    }
}

.o-info-section__heading {
    width: 100%;
    display: block
}

.o-info-section__heading .a-title {
    padding-bottom: var(--info-section-heading-padding-bottom)
}

.o-info-section__title {
    padding-bottom: var(--info-section-title-margin-bottom)
}

.o-info-section__link {
    padding-bottom: var(--info-section-link-margin-bottom)
}

.o-info-section__sub-title {
    padding: var(--info-section-sub-title-padding)
}

.o-info-section__para {
    font-size: var(--info-section-para-font-size);
    line-height: var(--info-section-para-line-height);
    color: var(--info-section-para-color)
}

.o-info-section__para p {
    padding-bottom: var(--info-section-para-padding-bottom);
    font-size: var(--info-section-para-font-size);
    line-height: var(--info-section-para-line-height);
    color: var(--info-section-para-color)
}

.o-info-section__button-wrapper {
    padding-top: var(--info-section-btn-padding-bottom)
}

@media(max-width:767.98px) {
    .o-info-section__button-wrapper .a-button {
        display: block;
        width: 100%
    }
}

.o-info-section--light {
    background-color: var(--info-section-light)
}

.o-info-section--dark {
    background-color: var(--info-section-dark)
}

.o-info-section--dark .a-title__text {
    color: var(--info-section-dark-color);
    border-color: var(--info-section-dark-border-color)
}

.o-info-section--dark .a-title__text:after,
.o-info-section--dark .a-title__text:before {
    border-top-color: var(--info-section-dark-border-color)
}

.o-info-section--dark h1,
.o-info-section--dark h2,
.o-info-section--dark h3,
.o-info-section--dark h4,
.o-info-section--dark h5,
.o-info-section--dark h6,
.o-info-section--dark p {
    color: var(--info-section-dark-color)
}

@media(max-width:767.98px) {
    .o-info-section--show-hide-mobile-image.a-bg-img {
        display: block
    }
}

.a-indicator__dot,
.a-indicator__dot-light {
    width: var(--indicator-width);
    height: var(--indicator-height);
    border-radius: var(--indicator-border-radius);
    border: var(--indicator-border-width) solid var(--indicator-border-color);
    background-color: var(--indicator-dot);
    display: inline-block;
    margin: var(--indicator-dot-margin);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer
}

.a-indicator__dot:hover,
.a-indicator__dot-light:hover {
    background-color: var(--indicator-dot-hover-color)
}

.a-indicator--dark {
    background-color: var(--indicator-container-dark-bg)
}

.a-indicator__dot--active {
    background-color: var(--indicator-dot-active)
}

.a-indicator__dot--active:hover {
    background-color: var(--indicator-dot-active)
}

.a-indicator__dot-light {
    border-color: var(--indicator-light-dot)
}

.a-indicator__dot-light--active {
    background-color: var(--indicator-light-dot-active)
}

.a-indicator__dot-light--active:hover {
    background-color: var(--indicator-light-dot-active)
}

.m-imagewithanimation__container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.m-imagewithanimation__container .image-layer--main-layer {
    position: relative;
    z-index: 3
}

@media(max-width:767.98px) {
    .m-imagewithanimation__container .image-layer--main-layer {
        width: 70%;
        height: auto
    }
}

@media(min-width:768px) and (max-width:991.98px) {
    .m-imagewithanimation__container .image-layer--main-layer {
        width: 60%;
        height: auto
    }
}

@media(min-width:1200px) {
    .m-imagewithanimation__container .image-layer--main-layer {
        margin-right: -15%
    }
}

.m-imagewithanimation__container .image-layer--play-layer {
    position: absolute;
    z-index: 2
}

@media(max-width:991.98px) {
    .m-imagewithanimation__container .image-layer--play-layer {
        display: none
    }
}

@media(min-width:992px) {
    .m-imagewithanimation__container .image-layer--play-layer {
        margin-right: -45%
    }
}

@media(min-width:1200px) {
    .m-imagewithanimation__container .image-layer--play-layer {
        margin-right: -30%
    }
}

.m-imagewithanimation__container .image-layer--pause-layer {
    position: absolute;
    z-index: 1;
    display: none
}

@media(max-width:991.98px) {
    .m-imagewithanimation__container .image-layer--pause-layer {
        display: none
    }
}

.m-imagewithanimation__container .container__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: var(--imagewithanimation-button-circle-size);
    min-height: var(--imagewithanimation-button-circle-size);
    background: var(--imagewithanimation-button-bg-color);
    border-radius: 50%;
    text-decoration: none;
    -ms-flex-item-align: end;
    align-self: flex-end;
    z-index: 4
}

@media(max-width:991.98px) {
    .m-imagewithanimation__container .container__button {
        display: none
    }
}

.m-imagewithanimation__container .container__button:hover,
.m-imagewithanimation__container .container__button:focus {
    text-decoration: none
}

.m-imagewithanimation__container .container__button .button__icon {
    font-size: var(--imagewithanimation-icon-size);
    color: var(--imagewithanimation-icon-color)
}

.mt-100 {
    margin-top: 100px !important
}

.o-imagemap {
    position: relative
}

.o-imagemap .o-imagemap-image {
    text-align: center;
    position: relative
}

.o-imagemap .o-imagemap-image .cmp-image {
    position: relative;
    text-align: center;
    display: inline-block
}

.o-imagemap .o-imagemap-image .cmp-image a {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    padding: var(--imagemapsticky-size-12);
    background-color: var(--icon-color);
    position: relative;
    color: var(--imagemapsticky-color-blue)
}

@media(max-width:767.98px) {
    .o-imagemap .o-imagemap-image .cmp-image a {
        display: none
    }
}

.o-imagemap .o-imagemap-image .cmp-image a::after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 100%;
    padding: 0;
    position: absolute;
    top: 4px;
    left: 4px
}

.o-imagemap .o-imagemap-image .cmp-image a::before {
    content: "";
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: pulsing 2s infinite;
    animation: pulsing 2s infinite;
    -webkit-box-shadow: 0 0 15px var(--icon-color);
    box-shadow: 0 0 15px var(--icon-color)
}

.o-imagemap .o-imagemap-image .cmp-image .active::after {
    content: "";
    background: -webkit-linear-gradient(90deg, transparent 0, transparent 46%, #fff 46%, #fff 56%, transparent 56%, transparent 100%)
}

.o-imagemap .o-imagemap-image .cmp-image .inactive::after {
    content: "";
    background: -webkit-linear-gradient(0, transparent 0, transparent 46%, #fff 46%, #fff 56%, transparent 56%, transparent 100%), -webkit-linear-gradient(90deg, transparent 0, transparent 46%, #fff 46%, #fff 56%, transparent 56%, transparent 100%)
}

.o-imagemap .o-imagemap-image .cmp-image .image-map-click .image-map-mousehover {
    width: 320px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

@media(max-width:1199.98px) {
    .o-imagemap .o-imagemap-image .cmp-image .image-map-click .image-map-mousehover {
        width: 150px
    }
}

.o-imagemap .o-imagemap-image .cmp-image .image-map-click .image-map-mousehover p {
    margin-top: -20px;
    padding-left: 5px;
    width: 80%;
    color: var(--imagemapsticky-color-white);
    line-height: 1.25em;
    margin-bottom: var(--imagemapsticky-size-28);
    font-size: var(--imagemapsticky-size-16)
}

.o-imagemap .o-imagemap-image .cmp-image .image-map-click .image-map-mousehover--right {
    left: 0;
    position: absolute;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.o-imagemap .o-imagemap-image .cmp-image .image-map-click .image-map-mousehover--right span {
    padding: .3px 20px;
    border-top: 2px solid var(--icon-color);
    margin-top: -1px;
    margin-left: 26px
}

.o-imagemap .o-imagemap-image .cmp-image .image-map-click .image-map-mousehover--right p {
    text-align: left
}

.o-imagemap .o-imagemap-image .cmp-image .image-map-click .image-map-mousehover--left {
    right: 0;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.o-imagemap .o-imagemap-image .cmp-image .image-map-click .image-map-mousehover--left span {
    padding: .3px 20px;
    border-top: 2px solid var(--icon-color);
    margin-top: -1px;
    margin-right: 26px
}

.o-imagemap .o-imagemap-image .cmp-image .image-map-click .image-map-mousehover--left p {
    text-align: left
}

.o-imagemap .o-imagemap-image .cmp-image .image-map-click::before {
    -webkit-animation: pulsing 2s infinite;
    animation: pulsing 2s infinite
}

@-webkit-keyframes pulsing {
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes pulsing {
    0 {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.o-imagemap .hide {
    opacity: 0;
    display: none
}

.o-imagemap .fade-out {
    -webkit-transition: 1s linear all;
    transition: 1s linear all
}

.o-imagemap .sticky-image-menu {
    position: fixed;
    top: 99px;
    width: 100%;
    z-index: 99;
    -webkit-box-shadow: 0 6px 6px #00000066;
    box-shadow: 0 6px 6px #00000066;
    left: 0
}

.o-imagemap .sticky-image-menu .section-1 {
    max-width: 1140px;
    margin: 0 auto
}

.o-imagemap-sticky-menu {
    background: var(--imagemapsticky-color-dawn-pink);
    margin-bottom: 0;
    text-align: center;
    margin-top: 0 !important
}

.o-imagemap-sticky-menu .section-1 {
    padding: var(--imagemapsticky-size-15) 0
}

@media(max-width:767.98px) {
    .o-imagemap-sticky-menu .section-1 {
        text-align: left;
        padding-left: 15px
    }
}

.o-imagemap-sticky-menu .section-1 label {
    padding-right: var(--imagemapsticky-size-10);
    margin-bottom: 0
}

@media(max-width:767.98px) {
    .o-imagemap-sticky-menu .section-1 label {
        padding-bottom: 10px
    }
}

.o-imagemap-sticky-menu .section-1 label h4 {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--imagemapsticky-color-charcoal)
}

.o-imagemap-sticky-menu .section-1 select {
    width: 100%;
    max-width: 500px;
    border-style: solid;
    padding: 4px 0
}

@media(max-width:991.98px) {
    .o-imagemap-sticky-menu .section-1 select {
        max-width: 350px
    }
}

.o-imagemap-sticky-menu .back-to-map {
    padding-left: 10%;
    text-decoration: none;
    color: var(--imagemapsticky-color-seablue)
}

.o-imagemap-sticky-menu .back-to-map:hover {
    color: var(--imagemapsticky-color-blue)
}

@media(max-width:767.98px) {
    .o-imagemap-sticky-menu .back-to-map {
        display: none
    }
}

.o-imagemap-popup--default {
    background-color: var(--icon-color)
}

.o-imagemap-popup--default .o-imagemap-popup--content {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border: 2px solid var(--imagemapsticky-color-white);
    -webkit-box-shadow: 2px 2px 5px var(--imagemapsticky-color-medium-gray);
    box-shadow: 2px 2px 5px var(--imagemapsticky-color-medium-gray);
    background-clip: padding-box;
    z-index: 5;
    font-size: 1rem;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    position: absolute;
    color: var(--imagemapsticky-color-white);
    margin-left: -170px;
    top: 20%;
    left: 45%;
    padding-top: 200px;
    text-align: center
}

@media(max-width:991.98px) {
    .o-imagemap-popup--default .o-imagemap-popup--content {
        top: 24%
    }
}

.o-imagemap-popup--default .o-imagemap-popup--content h1,
.o-imagemap-popup--default .o-imagemap-popup--content h2,
.o-imagemap-popup--default .o-imagemap-popup--content h3,
.o-imagemap-popup--default .o-imagemap-popup--content h4,
.o-imagemap-popup--default .o-imagemap-popup--content h5,
.o-imagemap-popup--default .o-imagemap-popup--content h6 {
    font-family: "BrandonGrotesqueBold", Arial, Helvetica, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    padding-top: 9px;
    color: var(--imagemapsticky-color-white);
    margin: 0 0 10px 0
}

.o-imagemap-popup--default .o-imagemap-popup--content p {
    line-height: 1.25em;
    margin-bottom: 10px;
    font-size: var(--imagemapsticky-size-16);
    font-family: "Georgia", Arial, Helvetica, sans-serif
}

.o-imagemap-popup--default .o-imagemap-popup--content a {
    color: var(--imagemapsticky-color-white);
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1.3
}

.o-imagemap-popup--default .o-imagemap-popup--content a:hover {
    text-decoration: none
}

.o-imagemap-popup--default .o-imagemap-popup--content .o-imagemap-popup--content__button {
    background: 0;
    border: 0;
    position: absolute;
    bottom: -5%;
    left: 45%
}

.o-imagemap-popup--default .o-imagemap-popup--content .o-imagemap-popup--content__button .o-imagemap-popup--content__button--close {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--icon-color);
    border-radius: 100%;
    padding: 12px;
    background-color: var(--imagemapsticky-color-white);
    position: relative
}

.o-imagemap-popup--default .o-imagemap-popup--content .o-imagemap-popup--content__button .o-imagemap-popup--content__button--close::before {
    content: "";
    background: -webkit-linear-gradient(-45deg, transparent 0, transparent 46%, var(--icon-color) 46%, var(--icon-color) 56%, transparent 56%, transparent 100%), -webkit-linear-gradient(45deg, transparent 0, transparent 46%, var(--icon-color) 46%, var(--icon-color) 56%, transparent 56%, transparent 100%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    padding: 0;
    position: absolute;
    top: 4px;
    left: 5px
}

.o-imagemap--compact .o-imagemap-title {
    margin-bottom: 40px
}

@media(max-width:767.98px) {
    .o-imagemap--compact .o-imagemap-title {
        padding-top: 30px;
        background-color: #004f71;
        margin-bottom: 0;
        padding-bottom: 20px
    }
}

.o-imagemap--compact .o-imagemap-title .imagemaptitle .cmp-title h1 {
    color: #fff;
    font-size: 2rem
}

@media(max-width:767.98px) {
    .o-imagemap--compact .o-imagemap-title .imagemaptitle .cmp-title h1 {
        margin-bottom: 0
    }
}

@media(max-width:767.98px) {
    .o-imagemap--compact .o-imagemap-image {
        background-color: #004f71
    }
}

.o-imagemap--compact .o-imagemap-text {
    margin-top: 30px
}

.a-image__default {
    width: 100%
}

.a-image__default.a-image__original {
    width: auto;
    max-width: 100%;
    margin: 0 auto
}

.parallax-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden
}

.parallax-wrapper__parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1
}

.image--align-left {
    text-align: left
}

.image--align-center {
    text-align: center
}

.image--align-right {
    text-align: right
}

@media only screen and (max-width:991.98px) {
    .cmp-image__tablet--hide {
        display: none !important
    }
}

@media only screen and (max-width:767.98px) {
    .cmp-image__mobile--hide {
        display: none !important
    }
}

@media only screen and (max-width:767.98px) {
    .cmp-image__mobile--show {
        display: inline-block !important
    }
}

@media only screen and (min-width:768.98px) and (max-width:991.98px) {
    .cmp-image__tablet--show {
        display: inline-block !important
    }
}

.a-image-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: var(--image-list-margin-bottom)
}

.a-image-list__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-right: var(--image-list-icon-margin-right)
}

.a-image-list__image img {
    max-height: var(--image-list-image-max-height);
    max-width: var(--image-list-image-max-width)
}

.video-js {
    --iconcta-hover-default: rgba(34, 39, 49, 0.4);
    --iconcta-light-magenta: rgba(170, 0, 97, 0.6)
}

.m-iconcta .m-iconcta-title {
    margin-bottom: 48px
}

.m-iconcta .m-iconcta-title h1,
.m-iconcta .m-iconcta-title h2,
.m-iconcta .m-iconcta-title h3,
.m-iconcta .m-iconcta-title h4,
.m-iconcta .m-iconcta-title h5,
.m-iconcta .m-iconcta-title h6,
.m-iconcta .m-iconcta-title p {
    margin: 0;
    padding: 0
}

.m-iconcta .button-bg--danger {
    background: var(--iconcta-danger);
    color: var(--iconcta-white);
    border: 1px solid
}

.m-iconcta .button-bg--danger:hover {
    background: var(--iconcta-white);
    color: var(--iconcta-danger);
    border: 1px solid var(--iconcta-danger)
}

.m-iconcta .button-bg--danger-disabled {
    background: var(--iconcta-charcoal-disabled);
    color: var(--iconcta-white)
}

.m-iconcta .button-bg--primary {
    background: var(--iconcta-cerulean-blue);
    color: var(--iconcta-white);
    border: 1px solid
}

.m-iconcta .button-bg--primary:hover {
    background: var(--iconcta-white);
    color: var(--iconcta-cerulean-blue);
    border: 1px solid var(--iconcta-cerulean-blue)
}

.m-iconcta .button-bg--primary-disabled {
    background: var(--iconcta-charcoal-disabled);
    color: var(--iconcta-white)
}

.m-iconcta .button-bg--secondary {
    background: var(--iconcta-secondary);
    color: var(--icon-white);
    border: 1px solid
}

.m-iconcta .button-bg--secondary:hover {
    background: var(--iconcta-white);
    color: var(--iconcta-tertiary-v);
    border: 1px solid var(--iconcta-secondary)
}

.m-iconcta .button-bg--secondary-disabled {
    background: var(--iconcta-charcoal-disabled);
    color: var(--iconcta-white)
}

.m-iconcta .button-bg--tertiary {
    background: var(--iconcta-tertiary-v);
    color: var(--iconcta-white);
    border: 1px solid
}

.m-iconcta .button-bg--tertiary:hover {
    background: var(--iconcta-white);
    color: var(--iconcta-tertiary-v);
    border: 1px solid var(--iconcta-tertiary-v)
}

.m-iconcta .button-bg--tertiary-disabled {
    background: var(--iconcta-charcoal-disabled);
    color: var(--iconcta-white)
}

.m-iconcta .button-bg--primary-v1 {
    background-color: var(--iconcta-primary-v1-bg);
    color: var(--iconcta-primary-v1-color)
}

.m-iconcta .button-bg--primary-v1:hover {
    color: var(--iconcta-primary-v1-color)
}

.m-iconcta .button-bg--primary-v1:active {
    background-color: var(--iconcta-primary-v1-bg-pressed);
    color: var(--iconcta-primary-v1-color-pressed)
}

.m-iconcta .button-bg--primary-v2 {
    background-color: var(--iconcta-primary-v2-bg);
    color: var(--iconcta-primary-v2-color)
}

.m-iconcta .button-bg--primary-v2:hover {
    color: var(--iconcta-primary-v2-color)
}

.m-iconcta .button-bg--primary-v2:active {
    background-color: var(--iconcta-primary-v2-bg-pressed);
    color: var(--iconcta-primary-v2-color)
}

.m-iconcta .button-bg--secondary-v1 {
    border: var(--iconcta-secondary-v1-border);
    background-color: var(--iconcta-secondary-v1-bg);
    color: var(--iconcta-secondary-v1-color)
}

.m-iconcta .button-bg--secondary-v1:hover {
    background-color: var(--iconcta-secondary-v1-bg-hover);
    color: var(--iconcta-secondary-v1-color);
    -webkit-box-shadow: none;
    box-shadow: none
}

.m-iconcta .button-bg--secondary-v1:active {
    background-color: var(--iconcta-secondary-v1-bg-pressed);
    color: var(--iconcta-secondary-v1-color);
    -webkit-box-shadow: var(--iconcta-box-shadow);
    box-shadow: var(--iconcta-box-shadow)
}

.m-iconcta .horizontal-ruler {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 24px 16px 24px 16px
}

.m-iconcta .horizontal-ruler__icon-cta-image img {
    width: 100px;
    height: 100px
}

.m-iconcta .horizontal-ruler--romove-border {
    border-bottom: none !important
}

.m-iconcta .horizontal-ruler--top-dark-blue {
    border-top: 1px solid var(--iconcta-dark-blue)
}

.m-iconcta .horizontal-ruler--top-light-blue {
    border-top: 1px solid var(--iconcta-light-blue)
}

.m-iconcta .horizontal-ruler--top-medium-blue {
    border-top: 1px solid var(--iconcta-tertiary-v)
}

.m-iconcta .horizontal-ruler--top-primary-blue {
    border-top: 1px solid var(--iconcta-primary-blue)
}

.m-iconcta .horizontal-ruler--top-charcoal {
    border-top: 1px solid var(--iconcta-charcoal)
}

.m-iconcta .horizontal-ruler--top-gold {
    border-top: 1px solid var(--iconcta-yellow-pressed)
}

.m-iconcta .horizontal-ruler--top-light-green {
    border-top: 1px solid var(--iconcta-light-green)
}

.m-iconcta .horizontal-ruler--top-medium-green {
    border-top: 1px solid var(--iconcta-medium-green)
}

.m-iconcta .horizontal-ruler--top-dark-gray {
    border-top: 1px solid var(--iconcta-dark-gray)
}

.m-iconcta .horizontal-ruler--top-medium-gray {
    border-top: 1px solid var(--iconcta-medium-gray)
}

.m-iconcta .horizontal-ruler--top-light-gray {
    border-top: 1px solid var(--iconcta-light-gray)
}

.m-iconcta .horizontal-ruler--top-magenta {
    border-top: 1px solid var(--iconcta-magenta)
}

.m-iconcta .horizontal-ruler--top-mint {
    border-top: 1px solid var(--iconcta-secondary)
}

.m-iconcta .horizontal-ruler--top-orange {
    border-top: 1px solid var(--iconcta-orange)
}

.m-iconcta .horizontal-ruler--top-purple {
    border-top: 1px solid var(--iconcta-purple)
}

.m-iconcta .horizontal-ruler--top-red {
    border-top: 1px solid var(--iconcta-danger)
}

.m-iconcta .horizontal-ruler--top-yellow {
    border-top: 1px solid var(--iconcta-yellow)
}

.m-iconcta .horizontal-ruler--top-black {
    border-top: 1px solid var(--iconcta-black)
}

.m-iconcta .horizontal-ruler--top-white {
    border-top: 1px solid var(--iconcta-white)
}

.m-iconcta .horizontal-ruler--bottom-dark-blue {
    border-bottom: 1px solid var(--iconcta-dark-blue)
}

.m-iconcta .horizontal-ruler--bottom-light-blue {
    border-bottom: 1px solid var(--iconcta-light-blue)
}

.m-iconcta .horizontal-ruler--bottom-medium-blue {
    border-bottom: 1px solid var(--iconcta-tertiary-v)
}

.m-iconcta .horizontal-ruler--bottom-primary-blue {
    border-bottom: 1px solid var(--iconcta-primary-blue)
}

.m-iconcta .horizontal-ruler--bottom-light-green {
    border-bottom: 1px solid var(--iconcta-light-green)
}

.m-iconcta .horizontal-ruler--bottom-medium-green {
    border-bottom: 1px solid var(--iconcta-medium-green)
}

.m-iconcta .horizontal-ruler--bottom-dark-gray {
    border-bottom: 1px solid var(--iconcta-dark-gray)
}

.m-iconcta .horizontal-ruler--bottom-medium-gray {
    border-bottom: 1px solid var(--iconcta-medium-gray)
}

.m-iconcta .horizontal-ruler--bottom-light-gray {
    border-bottom: 1px solid var(--iconcta-light-gray)
}

.m-iconcta .horizontal-ruler--bottom-magenta {
    border-bottom: 1px solid var(--iconcta-magenta)
}

.m-iconcta .horizontal-ruler--bottom-mint {
    border-bottom: 1px solid var(--iconcta-secondary)
}

.m-iconcta .horizontal-ruler--bottom-orange {
    border-bottom: 1px solid var(--iconcta-orange)
}

.m-iconcta .horizontal-ruler--bottom-purple {
    border-bottom: 1px solid var(--iconcta-purple)
}

.m-iconcta .horizontal-ruler--bottom-red {
    border-bottom: 1px solid var(--iconcta-danger)
}

.m-iconcta .horizontal-ruler--bottom-yellow {
    border-top: 1px solid var(--iconcta-yellow);
    border-bottom: 1px solid var(--iconcta-yellow)
}

.m-iconcta .horizontal-ruler--bottom-black {
    border-top: 1px solid var(--iconcta-black);
    border-bottom: 1px solid var(--iconcta-black)
}

.m-iconcta .horizontal-ruler--bottom-white {
    border-top: 1px solid var(--iconcta-white);
    border-bottom: 1px solid var(--iconcta-white)
}

.m-iconcta .vertical-ruler {
    padding: 32px 39px 32px 39px;
    width: 290px
}

.m-iconcta .vertical-ruler .default-ratio {
    width: auto;
    height: auto;
    max-width: 100%
}

.m-iconcta .vertical-ruler p {
    color: var(--iconcta-charcoal);
    text-align: center;
    margin: 12px 0 16px 0
}

.m-iconcta .vertical-ruler:last-child {
    border: 0
}

.m-iconcta .vertical-ruler--dark-blue {
    border-right: 1px solid var(--iconcta-dark-blue)
}

.m-iconcta .vertical-ruler--light-blue {
    border-right: 1px solid var(--iconcta-light-blue)
}

.m-iconcta .vertical-ruler--medium-blue {
    border-right: 1px solid var(--iconcta-tertiary-v)
}

.m-iconcta .vertical-ruler--primary-blue {
    border-right: 1px solid var(--iconcta-primary-blue)
}

.m-iconcta .vertical-ruler--charcoal {
    border-right: 1px solid var(--iconcta-charcoal)
}

.m-iconcta .vertical-ruler--gold {
    border-right: 1px solid var(--iconcta-yellow-pressed)
}

.m-iconcta .vertical-ruler--light-green {
    border-right: 1px solid var(--iconcta-light-green)
}

.m-iconcta .vertical-ruler--medium-green {
    border-right: 1px solid var(--iconcta-medium-green)
}

.m-iconcta .vertical-ruler--dark-gray {
    border-right: 1px solid var(--iconcta-dark-gray)
}

.m-iconcta .vertical-ruler--medium-gray {
    border-right: 1px solid var(--iconcta-medium-gray)
}

.m-iconcta .vertical-ruler--light-gray {
    border-right: 1px solid var(--iconcta-light-gray)
}

.m-iconcta .vertical-ruler--magenta {
    border-right: 1px solid var(--iconcta-magenta)
}

.m-iconcta .vertical-ruler--mint {
    border-right: 1px solid var(--iconcta-secondary)
}

.m-iconcta .vertical-ruler--orange {
    border-right: 1px solid var(--iconcta-orange)
}

.m-iconcta .vertical-ruler--purple {
    border-right: 1px solid var(--iconcta-purple)
}

.m-iconcta .vertical-ruler--red {
    border-right: 1px solid var(--iconcta-danger)
}

.m-iconcta .vertical-ruler--yellow {
    border-right: 1px solid var(--iconcta-yellow)
}

.m-iconcta .vertical-ruler--black {
    border-right: 1px solid var(--iconcta-black)
}

.m-iconcta .vertical-ruler--white {
    border-right: 1px solid var(--iconcta-white)
}

.m-iconcta .vertical-ruler img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    margin-bottom: 16px;
    width: 100px;
    height: 100px
}

.m-iconcta--m-top {
    margin-top: 48px
}

.m-iconcta--m-bottom {
    margin-bottom: 48px
}

.m-iconcta--button {
    border: 0;
    padding: 10px 32px 10px 33px;
    font-size: 16px !important;
    line-height: 20px !important;
    letter-spacing: .8px !important
}

.m-iconcta .custom-card.vertical-card {
    width: auto !important;
    margin: 0 auto
}

.m-iconcta .custom-card {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%
}

.m-iconcta .custom-card a:hover {
    text-decoration: none !important
}

.m-iconcta .custom-card .vertical-ruler button {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.generic-modal.modal-iconcta .m-video .brightcove-video .vjs-big-play-button {
    width: 96px !important;
    height: 96px !important;
    line-height: 96px !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 0;
    margin: 0;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    padding: 4px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: var(--iconcta-hover-default) !important
}

.generic-modal.modal-iconcta .m-video .brightcove-video .vjs-big-play-button .vjs-icon-placeholder {
    font-size: 3.75rem
}

.generic-modal.modal-iconcta .m-video .brightcove-video .video-js:hover .vjs-big-play-button {
    background-color: var(--iconcta-light-magenta) !important
}

.generic-modal.modal-iconcta .modal-dialog {
    max-width: 70%;
    margin-top: 0 !important
}

@media(min-width:1200px) {
    .generic-modal.modal-iconcta .video-js {
        height: auto !important;
        padding-bottom: 56.25%;
        width: 100%
    }

    .generic-modal.modal-iconcta .generic-modal__content-footer {
        display: none
    }

    .generic-modal.modal-iconcta .generic-modal__content-body {
        padding-left: 0;
        padding-right: 0
    }

    .generic-modal.modal-iconcta .modal-dialog {
        max-width: 70%
    }

    .generic-modal.modal-iconcta .embed-video {
        width: 100%
    }

    .generic-modal.modal-iconcta .m-video .brightcove-video .vjs-big-play-button {
        width: 96px !important;
        height: 96px !important;
        line-height: 96px !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: 0;
        margin: 0;
        border-radius: 100%;
        top: 50%;
        left: 50%;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background-color: var(--iconcta-hover-default) !important
    }

    .generic-modal.modal-iconcta .m-video .brightcove-video .video-js:hover .vjs-big-play-button {
        background-color: var(--iconcta-light-magenta) !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player {
        background: none !important;
        height: 485px !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-viewport {
        position: absolute;
        height: auto !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-big-play:before {
        content: "\f101";
        background-color: var(--iconcta-hover-default) !important;
        border-radius: 100px;
        font-size: 40px;
        line-height: 90px;
        position: absolute;
        border: 0 solid;
        top: 50%;
        left: 50%;
        width: 96px;
        height: 96px;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-shadow: none !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-big-play:hover::before {
        content: "\f101";
        background: var(--iconcta-light-magenta) !important;
        border-radius: 100px;
        font-size: 40px;
        line-height: 90px;
        position: absolute;
        border: 0 solid;
        top: 50%;
        left: 50%;
        width: 96px;
        height: 96px;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-shadow: none !important
    }
}

@media(max-width:1024px) {
    .generic-modal.modal-iconcta .video-js {
        height: auto !important;
        padding-bottom: 56.25%
    }

    .generic-modal.modal-iconcta .generic-modal__content-footer {
        display: none
    }

    .generic-modal.modal-iconcta .generic-modal__content-body {
        padding-left: 0;
        padding-right: 0
    }

    .generic-modal.modal-iconcta .modal-dialog {
        max-width: 70%
    }

    .generic-modal.modal-iconcta .m-video .limelight-player {
        background: none !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-viewport {
        position: absolute;
        height: auto !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-big-play:before {
        content: "\f101";
        background-color: var(--iconcta-hover-default) !important;
        border-radius: 100px;
        font-size: 40px;
        line-height: 55px;
        position: absolute;
        border: 0 solid;
        top: 50%;
        left: 50%;
        width: 64px;
        height: 64px;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-shadow: none !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-big-play:hover::before {
        content: "\f101";
        background: var(--iconcta-light-magenta);
        border-radius: 100px;
        font-size: 40px;
        line-height: 55px;
        position: absolute;
        border: 0 solid;
        top: 50%;
        left: 50%;
        width: 64px;
        height: 64px;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-shadow: none !important
    }

    .generic-modal.modal-iconcta .m-video .embed-video {
        width: 100%
    }

    .generic-modal.modal-iconcta .m-video .video-js {
        width: 100%
    }

    .generic-modal.modal-iconcta .m-video .brightcove-video .vjs-big-play-button {
        width: 64px !important;
        height: 64px !important;
        line-height: 64px !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: 0;
        margin: 0;
        border-radius: 100%;
        top: 50%;
        left: 50%;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background-color: var(--iconcta-hover-default) !important
    }

    .generic-modal.modal-iconcta .m-video .brightcove-video .video-js:hover .vjs-big-play-button {
        background-color: var(--iconcta-light-magenta) !important
    }
}

@media(max-width:992px) {
    .generic-modal.modal-iconcta .video-js {
        height: auto !important;
        padding-bottom: 56.25%
    }

    .generic-modal.modal-iconcta .generic-modal__content-footer {
        display: none
    }

    .generic-modal.modal-iconcta .generic-modal__content-body {
        padding-left: 0;
        padding-right: 0
    }

    .generic-modal.modal-iconcta .modal-dialog {
        max-width: 70%
    }

    .generic-modal.modal-iconcta .m-video .limelight-player {
        background: none !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-viewport {
        position: absolute;
        height: auto !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-big-play:before {
        content: "\f101";
        background-color: var(--iconcta-hover-default) !important;
        border-radius: 100px;
        font-size: 40px;
        line-height: 55px;
        position: absolute;
        border: 0 solid;
        top: 50%;
        left: 50%;
        width: 64px;
        height: 64px;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-shadow: none !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-big-play:hover::before {
        content: "\f101";
        background: var(--iconcta-light-magenta);
        border-radius: 100px;
        font-size: 40px;
        line-height: 55px;
        position: absolute;
        border: 0 solid;
        top: 50%;
        left: 50%;
        width: 64px;
        height: 64px;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-shadow: none !important
    }

    .generic-modal.modal-iconcta .m-video .embed-video {
        width: 100%
    }

    .generic-modal.modal-iconcta .m-video .video-js {
        width: 100%
    }

    .generic-modal.modal-iconcta .m-video .brightcove-video .vjs-big-play-button {
        width: 64px !important;
        height: 64px !important;
        line-height: 64px !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: 0;
        margin: 0;
        border-radius: 100%;
        top: 50%;
        left: 50%;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background-color: var(--iconcta-hover-default) !important
    }

    .generic-modal.modal-iconcta .m-video .brightcove-video .video-js:hover .vjs-big-play-button {
        background-color: var(--iconcta-light-magenta) !important
    }

    .row .col-md-8 .m-iconcta .horizontal-ruler,
    .row .col-md-9 .m-iconcta .horizontal-ruler,
    .row .col-md-10 .m-iconcta .horizontal-ruler,
    .row .col-md-11 .m-iconcta .horizontal-ruler {
        display: block;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 32px 24px
    }

    .row .col-md-8 .m-iconcta .horizontal-ruler .cta-description-left,
    .row .col-md-8 .m-iconcta .horizontal-ruler .cta-description-right,
    .row .col-md-9 .m-iconcta .horizontal-ruler .cta-description-left,
    .row .col-md-9 .m-iconcta .horizontal-ruler .cta-description-right,
    .row .col-md-10 .m-iconcta .horizontal-ruler .cta-description-left,
    .row .col-md-10 .m-iconcta .horizontal-ruler .cta-description-right,
    .row .col-md-11 .m-iconcta .horizontal-ruler .cta-description-left,
    .row .col-md-11 .m-iconcta .horizontal-ruler .cta-description-right {
        margin: auto;
        text-align: center;
        margin-bottom: 16px
    }

    .row .col-md-8 .m-iconcta .horizontal-ruler .cta-description-right,
    .row .col-md-9 .m-iconcta .horizontal-ruler .cta-description-right,
    .row .col-md-10 .m-iconcta .horizontal-ruler .cta-description-right,
    .row .col-md-11 .m-iconcta .horizontal-ruler .cta-description-right {
        margin-right: 0
    }

    .row .col-md-8 .m-iconcta .horizontal-ruler .horizontal-ruler__icon-cta-alttext,
    .row .col-md-9 .m-iconcta .horizontal-ruler .horizontal-ruler__icon-cta-alttext,
    .row .col-md-10 .m-iconcta .horizontal-ruler .horizontal-ruler__icon-cta-alttext,
    .row .col-md-11 .m-iconcta .horizontal-ruler .horizontal-ruler__icon-cta-alttext {
        text-align: center
    }

    .row .col-md-8 .m-iconcta .horizontal-ruler__icon-cta-image,
    .row .col-md-9 .m-iconcta .horizontal-ruler__icon-cta-image,
    .row .col-md-10 .m-iconcta .horizontal-ruler__icon-cta-image,
    .row .col-md-11 .m-iconcta .horizontal-ruler__icon-cta-image {
        margin: auto;
        margin-bottom: 12px
    }

    .row .col-md-8 .m-iconcta .horizontal-ruler__icon-cta-alttext p,
    .row .col-md-9 .m-iconcta .horizontal-ruler__icon-cta-alttext p,
    .row .col-md-10 .m-iconcta .horizontal-ruler__icon-cta-alttext p,
    .row .col-md-11 .m-iconcta .horizontal-ruler__icon-cta-alttext p {
        padding-right: 0;
        min-width: auto
    }

    .row .col-md-8 .m-iconcta .horizontal-ruler__icon-cta-button,
    .row .col-md-9 .m-iconcta .horizontal-ruler__icon-cta-button,
    .row .col-md-10 .m-iconcta .horizontal-ruler__icon-cta-button,
    .row .col-md-11 .m-iconcta .horizontal-ruler__icon-cta-button {
        width: auto
    }
}

@media(max-width:767px) {
    .vertical-ruler--dark-blue {
        border-bottom: 1px solid var(--iconcta-dark-blue)
    }

    .vertical-ruler--light-blue {
        border-bottom: 1px solid var(--iconcta-light-blue)
    }

    .vertical-ruler--medium-blue {
        border-bottom: 1px solid var(--iconcta-tertiary-v)
    }

    .vertical-ruler--primary-blue {
        border-bottom: 1px solid var(--iconcta-primary-blue)
    }

    .vertical-ruler--charcoal {
        border-bottom: 1px solid var(--iconcta-charcoal)
    }

    .vertical-ruler--gold {
        border-bottom: 1px solid var(--iconcta-yellow-pressed)
    }

    .vertical-ruler--light-green {
        border-bottom: 1px solid var(--iconcta-light-green)
    }

    .vertical-ruler--medium-green {
        border-bottom: 1px solid var(--iconcta-medium-green)
    }

    .vertical-ruler--dark-gray {
        border-bottom: 1px solid var(--iconcta-dark-gray)
    }

    .vertical-ruler--medium-gray {
        border-bottom: 1px solid var(--iconcta-medium-gray)
    }

    .vertical-ruler--light-gray {
        border-bottom: 1px solid var(--iconcta-light-gray)
    }

    .vertical-ruler--magenta {
        border-bottom: 1px solid var(--iconcta-magenta)
    }

    .vertical-ruler--mint {
        border-bottom: 1px solid var(--iconcta-secondary)
    }

    .vertical-ruler--orange {
        border-bottom: 1px solid var(--iconcta-orange)
    }

    .vertical-ruler--purple {
        border-bottom: 1px solid var(--iconcta-purple)
    }

    .vertical-ruler-- {
        border-bottom: 1px solid var(--iconcta-danger)
    }

    .vertical-ruler--yellow {
        border-bottom: 1px solid var(--iconcta-yellow)
    }

    .vertical-ruler--black {
        border-bottom: 1px solid var(--iconcta-black)
    }

    .vertical-ruler--white {
        border-bottom: 1px solid var(--iconcta-white)
    }

    .m-iconcta .horizontal-ruler {
        padding: 32px 24px;
        width: auto;
        text-align: center
    }

    .m-iconcta .vertical-ruler {
        border-right: 0;
        text-align: center;
        width: 100%;
        padding: 32px
    }

    .generic-modal.modal-iconcta .video-js {
        height: auto !important;
        padding-bottom: 56.25%
    }

    .generic-modal.modal-iconcta .generic-modal__content-footer {
        display: none
    }

    .generic-modal.modal-iconcta .generic-modal__content-body {
        padding-left: 0;
        padding-right: 0
    }

    .generic-modal.modal-iconcta .modal-dialog {
        max-width: 100%
    }

    .generic-modal.modal-iconcta .generic-modal__content {
        position: absolute;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .generic-modal.modal-iconcta .m-video .embed-video {
        width: 100%
    }

    .generic-modal.modal-iconcta .m-video .video-js {
        width: 100%
    }

    .generic-modal.modal-iconcta .m-video .limelight-player {
        background: none !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-viewport {
        position: absolute;
        height: auto !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-big-play:before {
        content: "\f101";
        background: var(--iconcta-hover-default);
        border-radius: 100px;
        font-size: 40px;
        line-height: 40px;
        position: absolute;
        border: 0 solid;
        top: 50%;
        left: 50%;
        width: 48px;
        height: 48px;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-shadow: none !important
    }

    .generic-modal.modal-iconcta .m-video .limelight-player .vjs-limelight-big-play:hover::before {
        content: "\f101";
        background: var(--iconcta-light-magenta);
        border-radius: 100px;
        font-size: 40px;
        line-height: 48px;
        position: absolute;
        border: 0 solid;
        top: 50%;
        left: 50%;
        width: 48px;
        height: 48px;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-shadow: none !important
    }

    .generic-modal.modal-iconcta .m-video .brightcove-video .vjs-big-play-button {
        width: 64px !important;
        height: 64px !important;
        line-height: 64px !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: 0;
        margin: 0;
        border-radius: 100%;
        top: 50%;
        left: 50%;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }

    .generic-modal.modal-iconcta .m-video .brightcove-video .video-js:hover .vjs-big-play-button {
        background-color: var(--iconcta-light-magenta) !important
    }
}

.modal.generic-modal.modal-iconcta .limeLight-video-wrapper {
    height: 100% !important
}

.row .col-md-8 .m-iconcta .horizontal-ruler .cta-description-right,
.row .col-md-9 .m-iconcta .horizontal-ruler .cta-description-right,
.row .col-md-10 .m-iconcta .horizontal-ruler .cta-description-right,
.row .col-md-11 .m-iconcta .horizontal-ruler .cta-description-right {
    margin-right: auto !important
}

.a-rule {
    width: 100%;
    height: auto
}

.a-rule .a-horizontal-rule {
    border-top-style: var(--rule-border-top-style);
    border-top-width: var(--rule-border-top-width)
}

.a-rule--white .a-horizontal-rule {
    border-color: var(--rule-white-color)
}

.a-rule--black .a-horizontal-rule {
    border-color: var(--rule-black-color)
}

.a-indicator__dot,
.o-hero-carousel .slick-dots li button,
.a-indicator__dot-light,
.o-hero-carousel--dark .slick-dots li button,
.o-hero-carousel--dots-optimize-contrast .slick-dots li button {
    width: var(--indicator-width);
    height: var(--indicator-height);
    border-radius: var(--indicator-border-radius);
    border: var(--indicator-border-width) solid var(--indicator-border-color);
    background-color: var(--indicator-dot);
    display: inline-block;
    margin: var(--indicator-dot-margin);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer
}

.a-indicator__dot:hover,
.o-hero-carousel .slick-dots li button:hover,
.a-indicator__dot-light:hover,
.o-hero-carousel--dark .slick-dots li button:hover,
.o-hero-carousel--dots-optimize-contrast .slick-dots li button:hover {
    background-color: var(--indicator-dot-hover-color)
}

.a-indicator--dark {
    background-color: var(--indicator-container-dark-bg)
}

.a-indicator__dot--active,
.o-hero-carousel .slick-dots li.slick-active button {
    background-color: var(--indicator-dot-active)
}

.a-indicator__dot--active:hover,
.o-hero-carousel .slick-dots li.slick-active button:hover {
    background-color: var(--indicator-dot-active)
}

.a-indicator__dot-light,
.o-hero-carousel--dark .slick-dots li button,
.o-hero-carousel--dots-optimize-contrast .slick-dots li button {
    border-color: var(--indicator-light-dot)
}

.a-indicator__dot-light--active,
.o-hero-carousel--dark .slick-dots li.slick-active button,
.o-hero-carousel--dots-optimize-contrast .slick-dots li.slick-active button {
    background-color: var(--indicator-light-dot-active)
}

.a-indicator__dot-light--active:hover,
.o-hero-carousel--dark .slick-dots li.slick-active button:hover,
.o-hero-carousel--dots-optimize-contrast .slick-dots li.slick-active button:hover {
    background-color: var(--indicator-light-dot-active)
}

@media(max-width:991.98px) {
    .o-hero-carousel {
        width: 100vw;
        margin-left: calc(-1 * (100vw - 100%) / 2)
    }
}

.o-hero-carousel[data-no-indicators="true"] .slick-dots {
    display: none !important
}

.o-hero-carousel.slick-slider {
    margin-bottom: 0
}

.o-hero-carousel .slick-slide {
    height: auto
}

@media(max-width:991.98px) {
    .o-hero-carousel .row {
        margin: 0
    }
}

.o-hero-carousel .slick-arrow {
    width: var(--hero-carousel-arrow-width);
    height: var(--hero-carousel-arrow-height);
    border-radius: var(--hero-carousel-arrow-border-radius);
    background-color: var(--hero-carousel-arrow-bg-color);
    color: var(--hero-carousel-arrow-color);
    z-index: 99
}

.o-hero-carousel--dark .slick-arrow {
    color: var(--hero-carousel-dark-arrow-color);
    background-color: var(--hero-carousel-dark-arrow-bg-color)
}

.o-hero-carousel--optimize-contrast .slick-arrow {
    color: var(--hero-carousel-optimize-contrast-arrow-color);
    background-color: var(--hero-carousel-optimize-contrast-bg-color);
    border: var(--hero-carousel-arrow-border-width) solid var(--hero-carousel-optimize-contrast-arrow-border-color);
    opacity: var(--hero-carousel-optimize-contrast-arrow-bg-opacity)
}

.o-hero-carousel--dots-optimize-contrast .slick-dots li button {
    background-color: var(--hero-carousel-optimize-contrast-dots-bg);
    border: var(--indicator-border-width) solid var(--hero-carousel-optimize-contrast-dots-border-color)
}

.o-hero-carousel--dots-optimize-contrast .slick-dots li.slick-active button {
    background-color: var(--hero-carousel-optimize-contrast-dots-border-color);
    border: var(--indicator-border-width) solid var(--hero-carousel-optimize-contrast-dots-bg)
}

@media(min-width:992px) {
    .o-hero-carousel--arrow-padding .m-hero.m-hero--half-width {
        padding: var(--hero-carousel-arrow-padding-inline)
    }
}

@media(min-width:992px) {
    .o-hero-carousel--media-start.o-hero-carousel .slick-dots {
        width: calc(50% - 15px);
        left: 0;
        bottom: 36px
    }

    .o-hero-carousel--media-start.o-hero-carousel .slick-next {
        right: auto;
        left: calc(49.998% + 48px + var(--hero-carousel-arrow-width));
        bottom: .5rem;
        top: auto;
        -webkit-transform: none;
        transform: none
    }

    .o-hero-carousel--media-start.o-hero-carousel .slick-prev {
        left: calc(49.998% + 15px);
        bottom: .5rem;
        top: auto;
        -webkit-transform: none;
        transform: none
    }

    .o-hero-carousel--media-end.o-hero-carousel .slick-dots {
        width: calc(50% - 15px);
        left: auto;
        right: 0;
        bottom: 36px
    }

    .o-hero-carousel--media-end.o-hero-carousel .slick-next {
        left: calc(8.333% + 32px + var(--hero-carousel-arrow-width));
        right: auto;
        bottom: .5rem;
        top: auto;
        -webkit-transform: none;
        transform: none
    }

    .o-hero-carousel--media-end.o-hero-carousel .slick-prev {
        right: auto;
        left: 8.333%;
        bottom: .5rem;
        top: auto;
        -webkit-transform: none;
        transform: none
    }

    .o-hero-carousel--tall.o-hero-carousel--media-start.o-hero-carousel .slick-dots {
        bottom: 36px
    }

    .o-hero-carousel--tall.o-hero-carousel--media-start.o-hero-carousel .slick-next,
    .o-hero-carousel--tall.o-hero-carousel--media-start.o-hero-carousel .slick-prev {
        bottom: 2rem
    }

    .o-hero-carousel--tall.o-hero-carousel--media-end.o-hero-carousel .slick-dots {
        bottom: 36px
    }

    .o-hero-carousel--tall.o-hero-carousel--media-end.o-hero-carousel .slick-next,
    .o-hero-carousel--tall.o-hero-carousel--media-end.o-hero-carousel .slick-prev {
        bottom: 2rem
    }
}

@media(max-width:767.98px) {
    .o-hero-carousel .slick-arrow {
        display: none !important
    }
}

@media(max-width:991.98px) {
    .o-hero-carousel--tall.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-mobile-tall-dots-top);
        bottom: auto
    }

    .o-hero-carousel--tall.o-hero-carousel--media-end.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-mobile-tall-media-end-dots-top);
        bottom: var(--hero-carousel-mobile-tall-media-end-dots-bottom)
    }

    .o-hero-carousel--medium.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-mobile-medium-dots-top);
        bottom: var(--hero-carousel-mobile-medium-dots-bottom)
    }

    .o-hero-carousel--medium.o-hero-carousel--media-end.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-mobile-medium-media-end-dots-top);
        bottom: var(--hero-carousel-mobile-medium-media-end-dots-bottom)
    }

    .o-hero-carousel--short.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-mobile-short-dots-top);
        bottom: var(--hero-carousel-mobile-short-dots-bottom)
    }

    .o-hero-carousel--short.o-hero-carousel--media-end.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-mobile-short-media-end-dots-top);
        bottom: var(--hero-carousel-mobile-short-media-end-dots-bottom)
    }
}

@media(min-width:768px) and (max-width:991.98px) {
    .o-hero-carousel .slick-arrow.slick-prev {
        left: 40px
    }

    .o-hero-carousel .slick-arrow.slick-next {
        right: 40px
    }

    .o-hero-carousel--tall.o-hero-carousel .slick-arrow {
        top: var(--hero-carousel-tablet-tall-arrows-top);
        bottom: var(--hero-carousel-tablet-tall-arrows-bottom)
    }

    .o-hero-carousel--tall.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-tablet-tall-dots-top);
        bottom: var(--hero-carousel-tablet-tall-dots-bottom)
    }

    .o-hero-carousel--tall.o-hero-carousel--media-end.o-hero-carousel .slick-arrow {
        top: var(--hero-carousel-tablet-tall-media-end-dots-top);
        bottom: var(--hero-carousel-tablet-tall-media-end-dots-bottom)
    }

    .o-hero-carousel--tall.o-hero-carousel--media-end.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-tablet-tall-media-end-arrows-top);
        bottom: var(--hero-carousel-tablet-tall-media-end-arrows-bottom)
    }

    .o-hero-carousel--medium.o-hero-carousel .slick-arrow {
        top: 25%;
        bottom: var(--hero-carousel-tablet-medium-arrows-bottom)
    }

    .o-hero-carousel--medium.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-tablet-medium-dots-top);
        bottom: var(--hero-carousel-tablet-medium-dots-bottom)
    }

    .o-hero-carousel--medium.o-hero-carousel--media-end.o-hero-carousel .slick-arrow {
        top: var(--hero-carousel-tablet-medium-media-end-arrows-top);
        bottom: 34%
    }

    .o-hero-carousel--medium.o-hero-carousel--media-end.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-tablet-medium-media-end-dots-top);
        bottom: var(--hero-carousel-tablet-medium-media-end-dots-bottom)
    }

    .o-hero-carousel--short.o-hero-carousel .slick-arrow {
        top: 20%;
        bottom: auto
    }

    .o-hero-carousel--short.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-tablet-short-dots-top);
        bottom: var(--hero-carousel-tablet-short-dots-bottom)
    }

    .o-hero-carousel--short.o-hero-carousel--media-end.o-hero-carousel .slick-arrow {
        top: var(--hero-carousel-tablet-short-arrows-top);
        bottom: var(--hero-carousel-tablet-short-arrows-bottom)
    }

    .o-hero-carousel--short.o-hero-carousel--media-end.o-hero-carousel .slick-dots {
        top: var(--hero-carousel-tablet-short-media-end-dots-top);
        bottom: var(--hero-carousel-tablet-short-media-end-dots-bottom)
    }
}

.o-hero-carousel .slick-prev {
    left: 0
}

.o-hero-carousel .slick-next {
    right: 0
}

.o-hero-carousel .slick-dots {
    padding-right: 0;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: var(--hero-carousel-slick-dots-top);
    bottom: var(--hero-carousel-slick-dots-bottom);
    width: 100%;
    left: 0
}

.o-hero-carousel .slick-dots li {
    list-style-type: none;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0
}

.o-hero-carousel .slick-dots li button {
    padding: 0
}

.o-hero-carousel .slick-dots li button:before {
    content: none
}

.o-header {
    position: relative;
    z-index: 999;
    font-size: var(--header-font-size);
    line-height: var(--header-line-height);
    color: var(--header-default-fg);
    text-transform: inherit;
    font-weight: normal
}

.o-header__secondary-top-nav {
    background-color: var(--header-top-bar-bg)
}

.o-header__secondary-top-nav .container {
    height: var(--header-top-bar-height)
}

.o-header__secondary-top-nav .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%
}

.o-header__sticky-section {
    background-color: var(--header-sticky-section);
    -webkit-box-shadow: var(--header-box-shadow);
    box-shadow: var(--header-box-shadow)
}

.o-header__sticky-section.sticky.show {
    z-index: 1000;
    background: var(--header-overlay-bg)
}

.o-header__sticky-section.sticky.show .o-header__logo-section {
    border-bottom: var(--header-sticky-logo-border-bottom)
}

.o-header__sticky-section.sticky.show .row {
    margin: 0
}

.o-header__logo-section {
    border-bottom: var(--header-border-bottom);
    padding: var(--header-logo-padding)
}

@media(min-width:992px) {
    .o-header__logo-section .col-lg-3 {
        padding-left: .4rem
    }
}

.o-header__logo-left,
.o-header__logo-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    opacity: 1;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.o-header__logo-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: var(--header-logo-trasition);
    transition: var(--header-logo-trasition);
    position: relative
}

@media(max-width:991.98px) {
    .o-header__logo-left {
        padding-left: 0
    }
}

.o-header__logo-left img:first-child {
    opacity: 1;
    position: relative
}

.o-header__logo-left img:last-child {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: var(--header-logo-trasition);
    transition: var(--header-logo-trasition)
}

.o-header.compact-mobile .o-header__secondary-top-nav .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

@media(max-width:991.98px) {
    .o-header.compact-mobile .m-mega-menu__mobile {
        position: static
    }

    .o-header.compact-mobile .m-mega-menu__mobile .navbar {
        padding: 0;
        position: static;
        height: auto
    }

    .o-header.compact-mobile .m-mega-menu__mobile .navbar .navbar-collapse {
        top: 0;
        left: 0;
        right: 0;
        width: auto;
        position: relative;
        -webkit-box-shadow: none;
        box-shadow: none;
        z-index: 998
    }

    .o-header.compact-mobile .m-mega-menu__mobile .navbar .navbar-nav {
        padding: 0
    }

    .o-header.compact-mobile .o-header__col-logo-right {
        margin-left: auto
    }

    .o-header.compact-mobile .o-header__col-mega-menu-mobile {
        position: static
    }

    .o-header.compact-mobile .a-link--icon-left .a-link__text--has-icon {
        padding: var(--mega-menu-mobile-item)
    }

    .o-header.compact-mobile .o-header__mega-menu {
        display: none
    }

    .o-header.compact-mobile .o-header__mega-menu.open {
        display: block
    }

    .o-header.compact-mobile .o-header__mega-menu .navbar-toggler {
        display: none
    }

    .o-header.compact-mobile .o-header__mega-menu .o-header__utility-nav {
        padding-right: var(--mega-menu-navbar-wrapper-md)
    }

    .o-header.compact-mobile .o-header__mega-menu .o-header__utility-nav .a-link {
        font-weight: bold
    }

    .o-header.compact-mobile .o-header__mega-menu .o-header__utility-nav .a-link .abt-icon {
        right: 8px;
        top: var(--link-stack-icon-font-size-sm)
    }

    .o-header.compact-mobile .o-header__mega-menu .o-header__utility-nav .a-link .abt-icon::before {
        font-size: var(--mega-menu-nav-padding-left);
        font-family: var(--mega-menu-icon-font-family) !important;
        font-weight: bold;
        color: var(--mega-menu-icon-color)
    }

    .o-header.compact-mobile .o-header__mega-menu .o-header__utility-nav .m-link-stack__title {
        display: none
    }

    .o-header.compact-mobile .o-header__mega-menu .o-header__utility-nav .m-link-stack__link>.a-link a {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        font-weight: bold;
        padding: var(--mega-menu-mobile-item)
    }

    .o-header.compact-mobile .o-header__mega-menu .o-header__utility-nav .m-link-stack__link>.a-link a .m-link-stack__current_lang {
        margin-left: .25em
    }

    .o-header.compact-mobile .o-header__mega-menu .m-mega-menu__mobile-item-wrapper>div {
        width: 100%
    }

    .o-header.compact-mobile .navbar-toggler.abt-icon-cancel .abt-icon-hamburger {
        display: none
    }

    .o-header.compact-mobile .o-header__mega-menu .row {
        display: block;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .o-header.compact-mobile .o-header__mob-options {
        position: relative;
        top: 0
    }

    .o-header.compact-mobile .o-header__mob-options .m-signup .a-link__text {
        font-weight: bold;
        text-transform: none
    }

    .o-header.compact-mobile .o-header__mob-search {
        position: relative;
        right: 0
    }

    .o-header.compact-mobile .o-header__search .a-search {
        left: 0 !important
    }
}

.o-header__user-activity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: header-user-activity-trasition;
    transition: header-user-activity-trasition;
    position: relative
}

.o-header__user-activity .o-header__utility-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.o-header__user-activity .o-header__utility-nav .m-link-stack__link {
    width: auto
}

.o-header__user-activity .o-header__utility-nav .m-link-stack__dropdown-wrapper {
    left: auto;
    right: 0
}

.o-header__user-activity .o-header__utility-nav .m-link-stack__dropdown-wrapper .a-link__text {
    color: var(--header-dropdown-link-color)
}

.o-header__user-activity .m-link-stack {
    z-index: 1;
    padding-right: var(--header-icons-padding-right)
}

.o-header__user-activity .m-link-stack .a-link {
    margin: 0
}

.o-header__user-activity .m-link-stack .a-link__text {
    color: var(--header-link-stack-color);
    margin: 0
}

.o-header__user-activity .m-link-stack .a-link__text .abt-icon {
    color: var(--header-link-stack-color);
    right: 0
}

.o-header__user-activity .m-link-stack .a-link__text .abt-icon:before {
    margin: 0
}

.o-header .m-signup .a-link {
    margin-right: var(--header-icons-padding-right)
}

@media(min-width:992px) {
    .o-header .m-signup .a-link {
        margin-right: var(--link-icon-size)
    }
}

.o-header .m-signup .a-link__text {
    color: var(--header-link-stack-color)
}

@media(min-width:992px) {
    .o-header .m-signup .a-link__text {
        padding-top: .1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .o-header .m-signup .a-link__text .abt-icon {
        color: var(--header-link-stack-color);
        font-size: var(--header-signup-icon-font-size);
        top: 4px
    }
}

.o-header .m-signup:hover {
    text-decoration: none
}

.o-header__mega-menu {
    position: relative
}

.o-header__mega-menu .mega-menu {
    padding: 0
}

.o-header__mob-options {
    letter-spacing: .6;
    position: absolute;
    right: 72px;
    left: auto;
    top: 9px;
    text-transform: uppercase
}

.o-header__mob-options .m-signup .a-link__text {
    color: var(--header-link-stack-color)
}

.o-header__mob-options .m-signup .abt-icon {
    display: none
}

.o-header__mob-search {
    position: absolute;
    top: 0;
    right: var(--header-search-mobile-right)
}

@media(max-width:991.98px) {
    .o-header__mob-search {
        overflow: hidden
    }
}

.o-header__mob-search .abt-icon,
.o-header__mob-search .abt-icon-search {
    color: var(--header-link-stack-color)
}

.o-header__mob-search.expand {
    position: absolute;
    top: -1px;
    right: 0;
    left: inherit;
    width: 100%;
    padding: 0 var(--header-icons-padding-right)
}

.o-header .m-mega-menu__mobile {
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 100%
}

@media(min-width:992px) {
    .o-header .m-mega-menu__mobile .navbar {
        padding-left: 0
    }
}

.o-header .m-mega-menu__mobile .navbar.show {
    z-index: -1;
    background: transparent
}

@media(max-width:991.98px) {
    .o-header .m-mega-menu__mobile .m-link-stack__link {
        position: relative
    }
}

.o-header .sticky {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 1
}

.o-header .sticky .navbar {
    background-color: var(--header-sticky-nav-bar-bg);
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

@media screen and (min-width:576px) and (max-width:991px) {
    .o-header .sticky .navbar {
        background-color: transparent
    }
}

.o-header .sticky .o-header__logo-section {
    border-bottom: var(--header-logo-section-border-bottom)
}

.o-header .sticky .o-header__logo-section img:first-child {
    opacity: 0;
    position: absolute
}

.o-header .sticky .o-header__logo-section img:last-child {
    opacity: 1;
    position: relative;
    max-height: 30px
}

.o-header .sticky .o-header__logo-right {
    opacity: 0;
    display: none
}

@media(min-width:992px) {
    .o-header .sticky .a-search {
        max-height: 30px
    }

    .o-header .sticky .a-search:not(.a-search--expand) .a-search--icon-left {
        top: 2px
    }
}

.o-header .m-link-stack__country-select .m-link-stack__link {
    position: relative
}

.o-header__search {
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    width: var(--header-search-mobile-right);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer
}

.o-header__search .a-search,
.o-header__search .a-search__input {
    color: var(--header-search-color)
}

.o-header__search .a-search::-webkit-input-placeholder,
.o-header__search .a-search__input::-webkit-input-placeholder {
    color: var(--header-search-color)
}

.o-header__search .a-search::-moz-placeholder,
.o-header__search .a-search__input::-moz-placeholder {
    color: var(--header-search-color)
}

.o-header__search .a-search:-ms-input-placeholder,
.o-header__search .a-search__input:-ms-input-placeholder {
    color: var(--header-search-color)
}

.o-header__search .a-search::-ms-input-placeholder,
.o-header__search .a-search__input::-ms-input-placeholder {
    color: var(--header-search-color)
}

.o-header__search .a-search::placeholder,
.o-header__search .a-search__input::placeholder {
    color: var(--header-search-color)
}

@media(min-width:992px) {

    .o-header__search .a-search,
    .o-header__search .a-search__input {
        padding-right: 0
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {
    .o-header__search .a-search:not(.a-search--expand) {
        left: -78px !important
    }
}

@media screen and (min-width:992px) and (max-width:1199px) {
    .o-header__search .a-search__input {
        width: 125px !important
    }
}

@media(max-width:767.98px) {
    .o-header__search {
        overflow: hidden
    }
}

.o-header--full-width {
    width: 100%;
    display: block
}

.o-header--full-width .o-header__user-activity {
    display: none
}

.o-header--full-width .o-header__search {
    width: 100%
}

.o-header--full-width .o-header__search .a-search,
.o-header--full-width .o-header__search .a-search__input {
    color: var(--header-link-stack-color)
}

.o-header--full-width .o-header__search .a-search::-webkit-input-placeholder,
.o-header--full-width .o-header__search .a-search__input::-webkit-input-placeholder {
    color: var(--header-link-stack-color)
}

.o-header--full-width .o-header__search .a-search::-moz-placeholder,
.o-header--full-width .o-header__search .a-search__input::-moz-placeholder {
    color: var(--header-link-stack-color)
}

.o-header--full-width .o-header__search .a-search:-ms-input-placeholder,
.o-header--full-width .o-header__search .a-search__input:-ms-input-placeholder {
    color: var(--header-link-stack-color)
}

.o-header--full-width .o-header__search .a-search::-ms-input-placeholder,
.o-header--full-width .o-header__search .a-search__input::-ms-input-placeholder {
    color: var(--header-link-stack-color)
}

.o-header--full-width .o-header__search .a-search::placeholder,
.o-header--full-width .o-header__search .a-search__input::placeholder {
    color: var(--header-link-stack-color)
}

.o-header--full-width .o-header__search .abt-icon {
    color: var(--header-link-stack-color);
    font-size: var(--header-signup-icon-font-size)
}

.o-header--full-width .a-search {
    width: 98%;
    color: var(--header-search-color)
}

.o-header--full-width .a-search.a-search--expand .a-search__input::-webkit-input-placeholder {
    color: transparent;
    opacity: 1
}

.o-header--full-width .a-search.a-search--expand .a-search__input::-moz-placeholder {
    color: transparent;
    opacity: 1
}

.o-header--full-width .a-search.a-search--expand .a-search__input:-ms-input-placeholder {
    color: transparent;
    opacity: 1
}

.o-header--full-width .a-search.a-search--expand .a-search__input::-ms-input-placeholder {
    color: transparent;
    opacity: 1
}

.o-header--full-width .a-search.a-search--expand .a-search__input::placeholder {
    color: transparent;
    opacity: 1
}

.o-header--full-width .a-search__input {
    width: 100% !important
}

@media(max-width:1199.98px) {
    .o-header--full-width .navbar {
        padding-left: 1.82rem
    }
}

.o-header__sticky-search {
    position: relative;
    top: 6px;
    display: none;
    right: -30px
}

@media(max-width:991.98px) {
    .o-header__sticky-search {
        right: 0
    }
}

.o-header__sticky-search.sticky-pos {
    right: 0;
    left: auto
}

.o-header__sticky-search.show {
    width: var(--header-search-mobile-right);
    cursor: pointer;
    display: none
}

@media(max-width:1199.98px) {
    .o-header__sticky-search.show {
        position: relative;
        right: 0
    }
}

@media(min-width:992px) {
    .o-header__sticky-search.show {
        display: block
    }
}

.o-header__sticky-search.show .a-search__input {
    width: 34px !important
}

.o-header__sticky--full-width {
    width: 100%;
    display: block;
    position: relative
}

.o-header__sticky--full-width .o-header__logo-left {
    display: none
}

.o-header__sticky--full-width .o-header__sticky-search {
    width: 100%
}

@media(min-width:992px) {
    .o-header__sticky--full-width .o-header__sticky-search {
        top: 0
    }
}

.o-header__sticky--full-width .o-header__sticky-search.show .a-search__input {
    width: 100% !important
}

.o-header__sticky--full-width .a-search {
    width: 100%
}

.o-header__sticky--full-width .a-search__input {
    width: 100% !important
}

@media(min-width:992px) {
    .o-header__sticky--full-width .a-search__input {
        padding-top: 7px;
        padding-bottom: 7px
    }
}

.o-header__search-overlay {
    position: fixed;
    z-index: 998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: var(--header-serch-overlay);
    width: 100%;
    height: 100%
}

.o-header__sticky-parent {
    position: absolute;
    right: 0;
    left: 0
}

.o-header__skiplink .container {
    position: relative
}

.o-header__skiplink .skip-link {
    background: transparent;
    color: var(--header-link-stack-color);
    cursor: pointer;
    font-size: .75rem;
    font-family: inherit;
    left: 0;
    top: 4px;
    padding: 4px;
    position: absolute;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    text-transform: uppercase
}

.o-header__skiplink .skip-link:focus,
.o-header__skiplink .skip-link:focus-within,
.o-header__skiplink .skip-link:active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    outline: 5px auto -webkit-focus-ring-color
}

.o-header__predictive .o-header__secondary-top-nav .o-header__search {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    width: auto
}

.o-header__predictive .o-header__sticky-section .o-header__sticky-search .a-search.predictive-search .predictive-search-bar.m-search-bar input.predictive-search-input {
    height: 44px;
    color: var(--header-predictive-input-color)
}

.o-header__predictive .o-header__sticky-section .o-header__sticky-search .a-search.predictive-search .predictive-search-bar.m-search-bar .abt-icon {
    color: var(--header-predictive-desktop-sticky-icons-color)
}

.o-header__predictive .o-header__sticky-section .o-header__sticky-search .a-search.predictive-search.a-search--expand .predictive-search-bar.m-search-bar .abt-icon {
    color: var(--header-predictive-desktop-sticky-expand-icons-color)
}

@media(max-width:991.98px) {
    .o-header__predictive .o-header__sticky-section .o-header__mega-menu .o-header__mob-search {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%
    }

    .o-header__predictive .o-header__sticky-section .o-header__mega-menu .o-header__mob-search .a-search.predictive-search {
        width: 34px
    }

    .o-header__predictive .o-header__sticky-section .o-header__mega-menu .o-header__mob-search .a-search.predictive-search .m-search-bar__input {
        margin: 0
    }

    .o-header__predictive .o-header__sticky-section .o-header__mega-menu .o-header__mob-search .a-search.predictive-search .predictive-search-bar.m-search-bar .abt-icon {
        color: var(--header-predictive-mobile-icons-color)
    }

    .o-header__predictive .o-header__sticky-section .o-header__mega-menu .o-header__mob-search .a-search.predictive-search.a-search--expand {
        width: 100%
    }

    .o-header__predictive .o-header__sticky-section .o-header__mega-menu .o-header__mob-search.expand {
        overflow: visible
    }
}

@media(max-width:991.98px) and (max-width:767.98px) {
    .o-header__predictive .o-header__sticky-section .o-header__mega-menu .o-header__mob-search.expand {
        padding: 0 .9375rem
    }
}

@media(max-width:991.98px) {
    .o-header__predictive .o-header__sticky-section .o-header__mega-menu .o-header__mob-search.expand .m-search-bar__autocomplete .m-search-bar__autocomplete-item:empty {
        display: none
    }
}

.o-header__predictive .o-header__sticky-section.sticky.show .o-header__sticky-search.text-right {
    text-align: left !important
}

.o-header__predictive.o-header--full-width .a-search.predictive-search .predictive-search-bar.m-search-bar .m-search-bar__input {
    width: 100%
}

.o-header__predictive.o-header--full-width .a-search.predictive-search .predictive-search-bar.m-search-bar form input.predictive-search-input {
    max-width: 100%;
    padding: 0 34px
}

.o-header__predictive.o-header--full-width .o-header__secondary-top-nav .o-header__search {
    width: 100%
}

.o-header__predictive .a-search.predictive-search {
    height: calc(100% - 6px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    left: unset !important;
    top: unset;
    padding: 0
}

.o-header__predictive .a-search.predictive-search .predictive-search-bar.m-search-bar {
    width: 100%;
    height: 100%
}

@media(min-width:992px) {
    .o-header__predictive .a-search.predictive-search .predictive-search-bar.m-search-bar .m-search-bar__input {
        width: 100%;
        margin: 0
    }
}

.o-header__predictive .a-search.predictive-search .predictive-search-bar.m-search-bar form {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative
}

.o-header__predictive .a-search.predictive-search .predictive-search-bar.m-search-bar form input.predictive-search-input {
    height: 100%;
    padding: 0 0 0 34px;
    color: var(--header-predictive-input-color);
    background-color: transparent;
    border: 0;
    max-width: 100px;
    width: 100%
}

.o-header__predictive .a-search.predictive-search .predictive-search-bar.m-search-bar form span.a-search--icon-left {
    top: 0;
    bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.o-header__predictive .a-search.predictive-search .predictive-search-bar.m-search-bar form span .abt-icon {
    color: var(--header-predictive-icons-color)
}

.o-header__predictive .a-search.predictive-search .predictive-search-bar.m-search-bar .m-search-bar__autocomplete {
    display: none
}

.o-header__predictive .a-search.predictive-search.a-search--expand {
    width: 100%
}

.o-header__predictive .a-search.predictive-search.a-search--expand .predictive-search-bar.m-search-bar {
    width: 100%
}

.o-header__predictive .a-search.predictive-search.a-search--expand .predictive-search-bar.m-search-bar .m-search-bar__input {
    width: 100%;
    margin: 0
}

.o-header__predictive .a-search.predictive-search.a-search--expand .predictive-search-bar.m-search-bar form {
    overflow: visible
}

.o-header__predictive .a-search.predictive-search.a-search--expand .predictive-search-bar.m-search-bar form input.predictive-search-input {
    max-width: 100%
}

.o-header__predictive .a-search.predictive-search.a-search--expand .predictive-search-bar.m-search-bar form span.a-search--icon-right {
    top: 0;
    bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.o-header__predictive .a-search.predictive-search.a-search--expand .predictive-search-bar.m-search-bar .m-search-bar__autocomplete {
    display: inherit;
    overflow-x: hidden
}

.o-header__predictive .a-search.predictive-search.a-search--expand .predictive-search-bar.m-search-bar .m-search-bar__autocomplete .m-search-bar__autocomplete-item {
    color: var(--header-predictive-input-color)
}

.o-header__predictive .a-search.predictive-search.a-search--expand .predictive-search-bar.m-search-bar .abt-icon {
    color: var(--header-predictive-expand-icons-color)
}

.o-header-v2-global {
    position: relative;
    z-index: 10;
    font-size: var(--header-v2-font-size);
    line-height: var(--header-v2-line-height);
    color: var(--header-v2-color);
    text-transform: inherit;
    font-weight: normal
}

.o-header-v2-global__section--utility-top {
    background-color: var(--header-v2-utility-top-bg)
}

@media(min-width:992px) {
    .o-header-v2-global__section--utility-top {
        background-color: var(--header-v2-utility-top-bg-desktop)
    }
}

.o-header-v2-global__section--utility-top .o-header-v2-group {
    min-height: var(--header-v2-utility-top-height)
}

.o-header-v2-global__section--utility-top .o-header-v2-group .o-header-v2-group {
    min-height: unset
}

.o-header-v2-global__section--main {
    padding: var(--header-v2-main-padding);
    border-bottom: var(--header-v2-main-border-bottom);
    background-color: var(--header-v2-main-bg)
}

@media(min-width:992px) {
    .o-header-v2-global__section--main {
        background-color: var(--header-v2-main-bg-desktop)
    }
}

.o-header-v2-global__section--main .o-header-v2-group {
    min-height: var(--header-v2-main-height)
}

.o-header-v2-global__section--main .o-header-v2-group .o-header-v2-group {
    min-height: unset
}

.o-header-v2-global__section--utility-bottom {
    background-color: var(--header-v2-utility-bottom-bg)
}

@media(min-width:992px) {
    .o-header-v2-global__section--utility-bottom {
        background-color: var(--header-v2-utility-bottom-bg-desktop)
    }
}

.sticky .o-header-v2-global__section--utility-bottom {
    background-color: var(--header-v2-utility-bottom-bg-sticky)
}

.o-header-v2-global__section--utility-bottom .o-header-v2-group {
    min-height: var(--header-v2-utility-bottom-height)
}

.o-header-v2-global__section--utility-bottom .o-header-v2-group .o-header-v2-group {
    min-height: unset
}

.o-header-v2-global__sticky-section {
    -webkit-box-shadow: var(--header-v2-box-shadow);
    box-shadow: var(--header-v2-box-shadow);
    -webkit-transition: background-color .3s ease, position .3s ease;
    transition: background-color .3s ease, position .3s ease
}

.o-header-v2-global__sticky-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    -webkit-transition: top .3s;
    transition: top .3s
}

.o-header-v2-global__placeholder {
    height: 0
}

.o-header-v2-global .xf-content-height {
    min-height: unset
}

.o-header-v2-global .a-logo-comp {
    position: relative;
    -webkit-transition: var(--header-v2-logo-transition);
    transition: var(--header-v2-logo-transition)
}

.o-header-v2-global .a-logo-comp img {
    position: relative;
    max-height: var(--logo-max-height-mob);
    -webkit-transition: var(--header-v2-logo-transition);
    transition: var(--header-v2-logo-transition)
}

@media(min-width:768px) {
    .o-header-v2-global .a-logo-comp img {
        max-height: var(--logo-max-height-tab)
    }
}

@media(min-width:992px) {
    .o-header-v2-global .a-logo-comp img {
        max-height: var(--logo-max-height-des)
    }
}

.o-header-v2-global .a-logo-comp img:last-child:not(:only-child) {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0
}

.o-header-v2-global .abt-icon,
.o-header-v2-global [class*="abt-icon-"] {
    font-size: var(--header-v2-icon-font-size);
    margin: 0
}

.o-header-v2-global .image {
    margin: 0
}

.o-header-v2-global .cmp-text p:last-child {
    margin-bottom: 0
}

.o-header-v2-global .cmp-title__text:last-child {
    margin: 0
}

.o-header-v2-global .a-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: normal
}

.o-header-v2-global .a-link__text {
    display: grid;
    grid-auto-flow: column;
    -webkit-column-gap: var(--header-v2-icon-spacing);
    -moz-column-gap: var(--header-v2-icon-spacing);
    column-gap: var(--header-v2-icon-spacing);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0
}

.o-header-v2-global .a-link__text:hover {
    text-decoration: none
}

.o-header-v2-global .a-link__text:hover .a-link__inner-text {
    text-decoration: underline
}

.o-header-v2-global .a-link__inner-text:empty {
    display: none
}

.o-header-v2-global .a-link .abt-icon {
    position: unset
}

.o-header-v2-global .a-link--icon-right .abt-icon {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.o-header-v2-global .m-link-stack__link .a-link__text.active {
    font-weight: normal
}

.o-header-v2-global .m-link-stack__dropdown-wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    width: var(--link-stack-dropdown-desktop-width);
    max-height: var(--link-stack-dropdown-desktop-max-height);
    background: var(--link-stack-dropdown-bg-color);
    border-radius: var(--header-v2-dropdown-border-radius);
    z-index: 5;
    margin: .75rem 0 0;
    -webkit-box-shadow: var(--header-v2-dropdown-box-shadow);
    box-shadow: var(--header-v2-dropdown-box-shadow)
}

.o-header-v2-global .m-link-stack__dropdown-wrapper:before {
    position: absolute;
    top: -0.25rem;
    right: 13%;
    content: "";
    border-style: solid;
    border-width: .4rem;
    border-color: transparent transparent var(--link-stack-dropdown-bg-color) var(--link-stack-dropdown-bg-color);
    width: 0;
    height: 0;
    -webkit-box-shadow: -2px 2px 3px -2px rgba(0, 0, 0, 0.34);
    box-shadow: -2px 2px 3px -2px rgba(0, 0, 0, 0.34);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.o-header-v2-global .m-link-stack__dropdown-wrapper[data-position="right"] {
    right: unset;
    left: 0
}

.o-header-v2-global .m-link-stack__dropdown-wrapper[data-position="right"]:before {
    right: unset;
    left: 13%
}

.o-header-v2-global .m-link-stack--border:before {
    display: none
}

.o-header-v2-global .m-minicart__btn {
    display: grid;
    grid-auto-flow: column;
    -webkit-column-gap: var(--header-v2-icon-spacing);
    -moz-column-gap: var(--header-v2-icon-spacing);
    column-gap: var(--header-v2-icon-spacing);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    min-height: unset
}

.o-header-v2-global .m-minicart__btn-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.o-header-v2-global .m-minicart__btn-text {
    display: none
}

.o-header-v2-global .megamenu {
    margin: 0
}

.o-header-v2-global .megamenu .m-mega-menu__mobile {
    -webkit-box-shadow: none;
    box-shadow: none
}

@media(min-width:992px) {
    .o-header-v2-global .megamenu .m-mega-menu__mobile-item-wrapper {
        margin-right: var(--header-v2-component-spacing)
    }

    .o-header-v2-global .megamenu .m-mega-menu__mobile-item-wrapper:last-child {
        margin-right: 0
    }

    .o-header-v2-global .megamenu .m-mega-menu__mobile-item-wrapper>.a-link .a-link__text {
        font-weight: bold
    }
}

.o-header-v2-global .megamenu .a-link {
    margin: 0
}

.o-header-v2-global .megamenu .a-link__text:hover .a-link__inner-text {
    text-decoration: none
}

.o-header-v2-global .megamenu .navbar {
    padding: 0;
    background-color: unset
}

.o-header-v2-global .megamenu .navbar .navbar-toggler {
    color: inherit !important
}

.o-header-v2-global .megamenu .navbar-collapse {
    width: auto;
    left: 100%;
    border-radius: var(--header-v2-dropdown-border-radius);
    max-width: var(--header-v2-dropdown-max-width)
}

@media(min-width:992px) {
    .o-header-v2-global .megamenu .navbar-collapse {
        border-radius: unset;
        max-width: unset
    }
}

.o-header-v2-global .megamenu .navbar-collapse[data-position="left"] {
    right: 100%;
    left: unset
}

.o-header-v2-global .megamenu .languagenavigation .m-link-stack {
    border-top: .0625rem solid var(--mega-menu-dropdown-border-color)
}

@media(min-width:992px) {
    .o-header-v2-global .megamenu .languagenavigation .m-link-stack {
        display: none
    }
}

.o-header-v2-global .megamenu .languagenavigation .m-link-stack__link .a-link__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: initial;
    -ms-flex-pack: initial;
    justify-content: initial
}

.o-header-v2-global .megamenu .languagenavigation .m-link-stack__link .a-link__text .abt-icon {
    position: absolute
}

.o-header-v2-global .megamenu .languagenavigation .m-link-stack__dropdown-wrapper {
    position: relative;
    top: unset;
    margin: 0;
    width: unset;
    max-height: unset;
    -webkit-box-shadow: none;
    box-shadow: none
}

.o-header-v2-global .megamenu .languagenavigation .m-link-stack__dropdown-wrapper:before {
    display: none
}

.o-header-v2-global .megamenu .languagenavigation .m-link-stack__search-bar input[type="search"] {
    padding: var(--country-select-input-search-padding)
}

.o-header-v2-global .a-search {
    padding: 0
}

.o-header-v2-global .a-search form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: var(--header-v2-search-form-horizontal-spacing);
    -moz-column-gap: var(--header-v2-search-form-horizontal-spacing);
    column-gap: var(--header-v2-search-form-horizontal-spacing);
    padding: 0;
    border-radius: var(--search-input-border-radius);
    cursor: pointer
}

.o-header-v2-global .a-search .m-search-bar {
    display: block
}

.o-header-v2-global .a-search .m-search-bar__input {
    margin: 0;
    width: auto
}

.o-header-v2-global .a-search__input,
.o-header-v2-global .a-search .m-search-bar__input-field {
    display: none;
    height: unset;
    width: unset;
    min-width: 6ch;
    -webkit-transition: unset;
    transition: unset;
    padding: 0;
    color: var(--header-v2-search-color);
    font-size: var(--search-input-font-size);
    line-height: var(--search-input-line-height);
    cursor: text
}

.o-header-v2-global .a-search__input-placeholder {
    color: var(--header-v2-search-color);
    font-size: var(--search-input-font-size);
    line-height: var(--search-input-line-height)
}

.o-header-v2-global .a-search--icon-left,
.o-header-v2-global .a-search--icon-right {
    position: unset;
    top: unset;
    left: unset;
    right: unset;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.o-header-v2-global .a-search--icon-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.o-header-v2-global .a-search__overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    background: var(--header-v2-search-overlay-bg);
    width: 100%;
    height: 100%
}

.o-header-v2-global .a-search.open {
    position: absolute;
    top: var(--header-v2-search-top-offset);
    left: 0;
    width: 100%;
    padding: 0 15px;
    color: var(--header-v2-search-color-open)
}

.o-header-v2-global .a-search.open form {
    position: relative;
    z-index: 15;
    padding: var(--header-v2-search-form-vertical-spacing) var(--header-v2-search-form-horizontal-spacing);
    background-color: var(--search-input-bg)
}

.o-header-v2-global .a-search.open .a-search__input,
.o-header-v2-global .a-search.open .a-search .m-search-bar__input-field {
    display: block;
    width: 100% !important
}

.o-header-v2-global .a-search.open .a-search__input-placeholder {
    display: none
}

.o-header-v2-global .a-search.open .a-search--icon-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.o-header-v2-global .sticky .a-logo-comp img:last-child {
    position: relative;
    opacity: 1
}

@media(min-width:768px) {
    .o-header-v2-global .sticky .a-logo-comp img:last-child {
        max-height: var(--logo-max-height-mob)
    }
}

@media(min-width:992px) {
    .o-header-v2-global .sticky .a-logo-comp img:last-child {
        max-height: var(--logo-max-height-tab)
    }
}

.o-header-v2-global .sticky .a-logo-comp img:first-child:not(:only-child) {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0
}

.o-header-v2-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.o-header-v2-section>div:last-child>div {
    margin-right: 0
}

.o-header-v2-section--alignGroupsEnd .o-header-v2-section {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.o-header-v2-section--alignGroupsCenter .o-header-v2-section {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.o-header-v2-section--alignGroupsBetween .o-header-v2-section {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.o-header-v2-section--alignGroupsAround .o-header-v2-section {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.o-header-v2-section--utility-top--visibility .o-header-v2-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.sticky .o-header-v2-section--utility-top--visibility .o-header-v2-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.sticky .o-header-v2-section--utility-top--visibilityStickyStuck .o-header-v2-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.sticky .o-header-v2-section--utility-top--visibilityStickyUnstuck .o-header-v2-section {
    display: none
}

@media(max-width:991.98px) {
    .o-header-v2-section--visibilityScreenDesktop .o-header-v2-section {
        display: none
    }
}

@media(max-width:991.98px) {
    .sticky .o-header-v2-section--visibilityScreenDesktop .o-header-v2-section {
        display: none
    }
}

@media(min-width:992px) {
    .o-header-v2-section--visibilityScreenMobile .o-header-v2-section {
        display: none
    }
}

@media(min-width:992px) {
    .sticky .o-header-v2-section--visibilityScreenMobile .o-header-v2-section {
        display: none
    }
}

.sticky .o-header-v2-global__section--utility-top div:not([class*="utility-top--visibility"]) .o-header-v2-section {
    display: none
}

.o-header-v2-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: var(--header-v2-component-spacing)
}

.o-header-v2-group>div>div,
.o-header-v2-group>div>section {
    margin-right: var(--header-v2-component-spacing)
}

.o-header-v2-group>div:last-child>div,
.o-header-v2-group>div:last-child>section {
    margin-right: 0
}

.o-header-v2-group--visibilityStickyStuck:last-child {
    margin-left: calc(var(--header-v2-component-spacing) * -1)
}

.sticky .o-header-v2-group--visibilityStickyStuck:last-child {
    margin-left: 0
}

.o-header-v2-group--visibilityStickyStuck .o-header-v2-group {
    display: none
}

.sticky .o-header-v2-group--visibilityStickyStuck .o-header-v2-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.sticky .o-header-v2-group--visibilityStickyUnstuck:last-child {
    margin-left: calc(var(--header-v2-component-spacing) * -1)
}

.sticky .o-header-v2-group--visibilityStickyUnstuck .o-header-v2-group {
    display: none
}

@media(max-width:991.98px) {
    .o-header-v2-group--visibilityScreenDesktop:last-child {
        margin-left: calc(var(--header-v2-component-spacing) * -1)
    }
}

@media(max-width:991.98px) {
    .o-header-v2-group--visibilityScreenDesktop .o-header-v2-group {
        display: none
    }
}

@media(min-width:992px) {
    .o-header-v2-group--visibilityScreenMobile:last-child {
        margin-left: calc(var(--header-v2-component-spacing) * -1)
    }
}

@media(min-width:992px) {
    .o-header-v2-group--visibilityScreenMobile .o-header-v2-group {
        display: none
    }
}

.o-header-v2-group--visibilityUserAuthenticated:last-child {
    margin-left: calc(var(--header-v2-component-spacing) * -1)
}

[data-authenticated] .o-header-v2-group--visibilityUserAuthenticated:last-child {
    margin-left: 0
}

.o-header-v2-group--visibilityUserAuthenticated .o-header-v2-group {
    display: none
}

.sticky .o-header-v2-group--visibilityUserAuthenticated .o-header-v2-group {
    display: none
}

[data-authenticated] .o-header-v2-group--visibilityUserAuthenticated .o-header-v2-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

[data-authenticated] .o-header-v2-group--visibilityUserUnauthenticated:last-child {
    margin-left: calc(var(--header-v2-component-spacing) * -1)
}

[data-authenticated] .o-header-v2-group--visibilityUserUnauthenticated .o-header-v2-group {
    display: none
}

.aem-AuthorLayer-Edit .xf-web-container .o-header-v2-global .newpar {
    margin: 1rem 0 0
}

.aem-AuthorLayer-Edit .xf-web-container .o-header-v2-global .cq-Editable-dom {
    padding: .5rem .5rem 0
}

.aem-AuthorLayer-Edit .xf-web-container .o-header-v2-global .cq-Editable-dom--container {
    padding: 1rem .5rem;
    min-width: 100px
}

.aem-AuthorLayer-Edit .xf-web-container .o-header-v2-global .cq-Editable-dom .cq-placeholder {
    min-width: 100px
}

.aem-AuthorLayer-Edit .xf-web-container .o-header-v2-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: unset
}

.aem-AuthorLayer-Edit .xf-web-container .o-header-v2-section>div>div {
    margin: 0
}

.aem-AuthorLayer-Edit .xf-web-container .o-header-v2-section>.newpar {
    width: 100%
}

.aem-AuthorLayer-Edit .xf-web-container .o-header-v2-group {
    display: grid;
    height: auto
}

.aem-AuthorLayer-Edit .xf-web-container .o-header-v2-group>div>div,
.aem-AuthorLayer-Edit .xf-web-container .o-header-v2-group>div>section {
    margin: 0
}

.aem-AuthorLayer-Edit .xf-web-container .o-header-v2-group .newpar {
    grid-row: 2;
    grid-column: 1/99
}

.m-form-data--link-bottom .m-form-data__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: var(--form-data-link-bottom);
    flex-direction: var(--form-data-link-bottom)
}

.m-form-data--link-bottom .m-form-data__header {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0
}

.m-form-data--link-bottom .m-form-data__container {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.m-form-data--link-bottom .m-form-data_list {
    padding-bottom: 0
}

.m-form-data--link-bottom .m-form-data__buttons {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.m-form-data--link-top-right .m-form-data__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: var(--form-data-link-top-right);
    flex-direction: var(--form-data-link-top-right)
}

.m-form-data--link-top-right .m-form-data__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0
}

.m-form-data--link-top-right .m-form-data__header .m-form-data__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.m-form-data--link-top-right .m-form-data__container {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.m-form-data__main {
    margin: var(--form-data-margin);
    border: var(--form-data-border);
    border-radius: var(--form-data-border-radius)
}

.m-form-data__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: var(--form-data-header-padding);
    border-bottom: var(--form-data-header-border-bottom)
}

.m-form-data__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.m-form-data__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: var(--form-data-link-top-right);
    flex-direction: var(--form-data-link-top-right);
    border: var(--form-data-container-border)
}

.m-form-data__list {
    padding-top: var(--form-data-list-padding-top);
    padding-bottom: var(--form-data-list-padding-bottom);
    padding-left: var(--form-data-list-padding-left);
    white-space: var(--form-data-list-white-space);
    font-size: var(--form-data-list-font-size);
    margin-bottom: 0
}

.m-form-data__buttons {
    padding-top: var(--form-data-button-padding-top);
    padding-bottom: var(--form-data-button-padding-bottom);
    padding-right: var(--form-data-button-padding-right);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.m-form-data__header .m-form-data__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.m-form-data--with-radio {
    position: relative;
    padding-left: 30px;
    cursor: pointer
}

.m-form-data--with-radio .a-radio {
    position: absolute;
    top: 16px;
    left: 16px
}

.conditional:not(.cq-Editable-dom) {
    margin: 0
}

.conditional:not(.cq-Editable-dom) .conditional-container .conditional__case {
    display: none
}

.m-alert.formalert {
    padding: 0;
    margin-bottom: var(--alert-formalert-margin-bottom)
}

.m-alert.formalert .m-alert__para p {
    margin-bottom: var(--alert-formalert-para-margin-bottom)
}

.m-alert.formalert .m-alert__para>p:last-child {
    margin-bottom: 0
}

.m-alert.formalert>.m-alert {
    width: 100%
}

.o-footer {
    padding: var(--footer-padding);
    color: var(--footer-color);
    background-color: var(--footer-bg-color)
}

.o-footer__top {
    padding-bottom: var(--footer-top-section-padding-bottom);
    padding-right: 0;
    padding-left: 0
}

@media(max-width:991.98px) {
    .o-footer__top {
        max-width: 100%
    }
}

.o-footer__bottom {
    padding-right: 0;
    padding-left: 0
}

@media(max-width:991.98px) {
    .o-footer__bottom {
        max-width: 100%
    }
}

.o-footer__link-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media(min-width:992px) {
    .o-footer__link-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 2rem
    }
}

@media(max-width:991.98px) {
    .o-footer__link-wrapper {
        padding-bottom: var(--footer-link-wrapper-padding-bottom)
    }
}

.o-footer__link-wrapper .m-link-stack .a-link {
    font-weight: normal;
    margin-bottom: var(--footer-link-wrapper-margin-bottom)
}

.o-footer__link-wrapper .m-link-stack--title {
    margin-bottom: 0
}

@media(max-width:991.98px) {
    .o-footer__link-wrapper .m-link-stack--content {
        padding: 1rem 0 0 1.5rem
    }
}

.o-footer__link-wrapper .abt-icon-down-arrow {
    color: var(--footer-icon-color);
    display: none
}

.o-footer__link-wrapper .abt-icon-down-arrow:focus,
.o-footer__link-wrapper .abt-icon-down-arrow:active {
    color: var(--footer-icon-color)
}

@media(max-width:991.98px) {
    .o-footer__link-wrapper .abt-icon-down-arrow {
        display: block
    }
}

.o-footer__bottom-section {
    padding: var(--footer-bootom-section-padding);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.o-footer__social-media .container-fluid {
    padding: 0
}

.o-footer__social-media .a-logo-comp {
    padding: 0 var(--footer-spacing-xs);
    display: inline-block
}

.o-footer__social-media .a-logo-comp:last-child {
    padding-right: 0
}

.o-footer__social-media .a-logo-comp--link {
    color: var(--footer-link-text-color);
    text-decoration: none
}

.o-footer__disclaimer-section {
    padding-top: var(--footer-spacing-xl);
    color: var(--footer-link-text-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
    padding-left: 0
}

@media(max-width:767.98px) {
    .o-footer__disclaimer-section {
        padding-top: var(--footer-spacing-l)
    }
}

@media(min-width:992px) {
    .o-footer__disclaimer-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }
}

.o-footer__disclaimer-section li .a-link {
    margin-bottom: var(--footer-spacing-s)
}

.o-footer__disclaimer-section li .a-link__text {
    font-size: var(--footer-link-text-font-size);
    line-height: var(--footer-link-text-line-height);
    color: var(--footer-link-text-color);
    text-transform: none;
    font-weight: normal;
    font-family: var(--footer-link-text-font-family);
    padding: 0;
    margin-right: var(--footer-spacing-xl)
}

@media(min-width:768px) {
    .o-footer__disclaimer-section li .a-link__text {
        margin-right: var(--footer-spacing-m)
    }
}

@media(min-width:992px) {
    .o-footer__disclaimer-section li .a-link__text {
        margin-right: 0;
        margin-left: var(--footer-spacing-xl)
    }
}

.o-footer__disclaimer-section li .a-link__text:focus {
    outline: 1px solid var(--footer-link-text-color)
}

@media(min-width:992px) {
    .o-footer__disclaimer-section li:last-child .a-link__text {
        margin-right: 0
    }
}

.no-links .o-footer__disclaimer-section {
    padding-top: 0
}

.o-footer__copyright {
    font-family: var(--footer-copyright-font-family);
    font-size: var(--footer-copyright-font-size);
    line-height: var(--footer-copyright-line-height);
    color: var(--footer-copyright-color);
    text-transform: none;
    font-weight: normal;
    margin: var(--footer-spacing-xl) 0 0
}

@media(max-width:991.98px) {
    .o-footer__copyright {
        margin: var(--footer-spacing-l) 0 0
    }
}

@media(max-width:767.98px) {
    .o-footer {
        padding: var(--footer-spacing-xl) var(--footer-spacing-m1)
    }
}

.limelight-player {
    --floatingbutton-light-gray: rgba(34, 39, 49, 0.4);
    --floatingbutton-light-magenta: rgba(170, 0, 97, 0.6)
}

.a-floatingactionbutton {
    z-index: 999
}

.a-floatingactionbutton--sticky-button {
    bottom: 0;
    position: sticky;
    width: 100%;
    left: 0;
    margin: 0 !important
}

.a-floatingactionbutton--sticky-button .container {
    padding-left: 0;
    padding-right: 0
}

@media(min-width:1200px) {
    .a-floatingactionbutton--sticky-button .a-floatingactionbutton__floating-button.fab-d-none {
        display: none
    }
}

.a-floatingactionbutton__float-full-width {
    width: 100%;
    padding: 12px 0 12px 0
}

.a-floatingactionbutton__floating-button a {
    text-decoration: none !important
}

.a-floatingactionbutton__floating-button .full-width-large {
    width: 100%;
    min-height: 48px;
    font-size: 18px;
    padding: 12px 0 12px 0
}

.a-floatingactionbutton__floating-button .full-width-medium {
    width: 100%;
    min-height: 40px;
    font-size: 16px;
    padding: 12px 0 12px 0
}

.a-floatingactionbutton__floating-button .full-width-small {
    width: 100%;
    min-height: 32px;
    font-size: 14px
}

.a-floatingactionbutton__floating-button .right-aligned {
    top: 50%;
    position: fixed;
    right: 0;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.a-floatingactionbutton__floating-button .right-aligned button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.a-floatingactionbutton__floating-button .right-aligned button .button-alignment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.a-floatingactionbutton__floating-button .right-aligned button .icon-left {
    padding-right: 10px
}

.a-floatingactionbutton__floating-button .right-aligned button .icon-right {
    padding-left: 10px
}

.a-floatingactionbutton__floating-button .right-aligned .text-right {
    text-align: right
}

.a-floatingactionbutton__floating-button .right-aligned .text-left {
    text-align: left
}

.a-floatingactionbutton__floating-button .right-aligned .text-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.a-floatingactionbutton__floating-button .right-aligned .text-none {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.a-floatingactionbutton__floating-button .right-aligned-large {
    width: 160px;
    min-height: 160px;
    font-size: 18px;
    padding: 12px 8px 12px 8px;
    word-break: break-word
}

.a-floatingactionbutton__floating-button .right-aligned-medium {
    width: 128px;
    min-height: 128px;
    font-size: 16px;
    padding: 12px 8px 12px 8px;
    word-break: break-word
}

.a-floatingactionbutton__floating-button .right-aligned-small {
    width: 96px;
    min-height: 96px;
    font-size: 14px;
    padding: 12px 8px 12px 8px;
    word-break: break-word
}

.a-floatingactionbutton__floating-button .right-aligned-icon-large {
    width: 96px;
    height: 96px;
    padding: 12px 8px 12px 8px
}

.a-floatingactionbutton__floating-button .right-aligned-icon-medium {
    width: 64px;
    height: 64px;
    padding: 12px 8px 12px 8px
}

.a-floatingactionbutton__floating-button .right-aligned-icon-small {
    width: 48px;
    height: 48px;
    padding: 12px 8px 12px 8px
}

.a-floatingactionbutton__floating-button__danger {
    background: var(--floatingbutton-danger);
    color: var(--floatingbutton-white);
    border: 0
}

@media(min-width:1200px) {
    .a-floatingactionbutton__floating-button__danger:hover {
        background: var(--floatingbutton-white);
        color: var(--floatingbutton-danger);
        border: 1px solid var(--floatingbutton-danger)
    }
}

.a-floatingactionbutton__floating-button__danger-disabled {
    background: var(--floatingbutton-charcoal-disabled);
    color: var(--floatingbutton-white)
}

.a-floatingactionbutton__floating-button__primary-button {
    background: var(--floatingbutton-cerulean-blue);
    color: var(--floatingbutton-white);
    border: 0
}

@media(min-width:1200px) {
    .a-floatingactionbutton__floating-button__primary-button:hover {
        background: var(--floatingbutton-white);
        color: var(--floatingbutton-cerulean-blue);
        border: 1px solid var(--floatingbutton-cerulean-blue)
    }
}

.a-floatingactionbutton__floating-button__primary-button-disabled {
    background: var(--floatingbutton-charcoal-disabled);
    color: var(--floatingbutton-white)
}

.a-floatingactionbutton__floating-button__secondary-button {
    background: var(--floatingbutton-secondary);
    color: var(--floatingbutton-tertiary-v);
    border: 0
}

@media(min-width:1200px) {
    .a-floatingactionbutton__floating-button__secondary-button:hover {
        background: var(--floatingbutton-white);
        color: var(--floatingbutton-tertiary-v);
        border: 1px solid var(--floatingbutton-secondary)
    }
}

.a-floatingactionbutton__floating-button__secondary-button-disabled {
    background: var(--floatingbutton-charcoal-disabled);
    color: var(--floatingbutton-white)
}

.a-floatingactionbutton__floating-button__tertiary-button {
    background: var(--floatingbutton-tertiary-v);
    color: var(--floatingbutton-white);
    border: 0
}

@media(min-width:1200px) {
    .a-floatingactionbutton__floating-button__tertiary-button:hover {
        background: var(--floatingbutton-white);
        color: var(--floatingbutton-tertiary-v);
        border: 1px solid var(--floatingbutton-tertiary-v)
    }
}

.a-floatingactionbutton__floating-button__tertiary-button-disabled {
    background: var(--floatingbutton-charcoal-disabled);
    color: var(--floatingbutton-white)
}

.a-floatingactionbutton__floating-button__primary-v1 {
    background-color: var(--floatingbutton-primary-v1-bg);
    color: var(--floatingbutton-primary-v1-color);
    border: var(--floatingbutton-secondary-v1-bg)
}

@media(min-width:1200px) {
    .a-floatingactionbutton__floating-button__primary-v1:hover {
        color: var(--floatingbutton-primary-v1-color)
    }
}

.a-floatingactionbutton__floating-button__primary-v1:active {
    background-color: var(--floatingbutton-primary-v1-bg-pressed);
    color: var(--floatingbutton-primary-v1-color-pressed)
}

.a-floatingactionbutton__floating-button__primary-v2 {
    border: var(--floatingbutton-secondary-v1-bg);
    background-color: var(--floatingbutton-primary-v2-bg);
    color: var(--floatingbutton-primary-v2-color)
}

@media(min-width:1200px) {
    .a-floatingactionbutton__floating-button__primary-v2:hover {
        color: var(--floatingbutton-primary-v2-color)
    }
}

.a-floatingactionbutton__floating-button__primary-v2:active {
    background-color: var(--floatingbutton-primary-v2-bg-pressed);
    color: var(--floatingbutton-primary-v2-color)
}

.a-floatingactionbutton__floating-button__secondary-v1 {
    border: var(--floatingbutton-secondary-v1-border);
    background-color: var(--floatingbutton-secondary-v1-bg);
    color: var(--floatingbutton-secondary-v1-color)
}

@media(min-width:1200px) {
    .a-floatingactionbutton__floating-button__secondary-v1:hover {
        background-color: var(--floatingbutton-secondary-v1-bg-hover);
        color: var(--floatingbutton-secondary-v1-color);
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.a-floatingactionbutton__floating-button__secondary-v1:active {
    background-color: var(--floatingbutton-secondary-v1-bg-pressed);
    color: var(--floatingbutton-secondary-v1-color);
    -webkit-box-shadow: var(--floatingbutton-box-shadow);
    box-shadow: var(--floatingbutton-box-shadow)
}

.a-floatingactionbutton__floating-button .icon-text-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.a-floatingactionbutton__floating-button .floating-btn-text {
    font-family: var(--floatingbutton-brandon-bold);
    line-height: 20px;
    vertical-align: center;
    letter-spacing: .8px;
    text-align: center;
    border-radius: 0
}

.generic-modal.modal-float-button .video-js {
    height: auto !important;
    padding-bottom: 56.25%
}

.generic-modal.modal-float-button .embed-video {
    width: 100% !important;
    height: 488px !important;
    border: none !important
}

.generic-modal.modal-float-button .modal-dialog {
    max-width: 70% !important
}

.generic-modal.modal-float-button .generic-modal__content-footer {
    display: none
}

.generic-modal.modal-float-button .generic-modal__content-body {
    padding-left: 0;
    padding-right: 0;
    border: 0
}

.generic-modal.modal-float-button .m-video .limelight-player {
    background: none !important;
    width: 100% !important;
    height: 490px !important;
    top: 0
}

.generic-modal.modal-float-button .m-video .limelight-player .vjs-limelight-big-play:before {
    content: "\f101";
    background: var(--floatingbutton-light-gray);
    border-radius: 100px;
    font-size: 60px;
    line-height: 60px;
    position: absolute;
    border: 0;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    padding: 16px 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.generic-modal.modal-float-button .m-video .limelight-player .vjs-limelight-big-play:hover::before {
    content: "\f101";
    background: var(--floatingbutton-light-magenta);
    border-radius: 100px;
    font-size: 60px;
    line-height: 60px;
    position: absolute;
    border: 0;
    top: 50%;
    left: 50%;
    width: 96px;
    height: 96px;
    padding: 16px 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.generic-modal.modal-float-button .m-video .limeLight-video-wrapper {
    width: 100% !important;
    height: 485px !important
}

@media(max-width:1199.98px) {
    .generic-modal.modal-float-button .m-video .limeLight-video-wrapper {
        width: 100% !important;
        height: 370px !important
    }

    .generic-modal.modal-float-button .m-video .limelight-player {
        background: none !important
    }

    .generic-modal.modal-float-button .embed-video {
        width: 100% !important;
        height: 488px !important;
        border: none !important
    }
}

@media(max-width:991.98px) {
    .generic-modal.modal-float-button .generic-modal__content-body {
        height: auto
    }

    .generic-modal.modal-float-button .m-video .limeLight-video-wrapper {
        width: 100% !important;
        height: 285px !important
    }

    .generic-modal.modal-float-button .m-video .limelight-player {
        background: 0
    }

    .generic-modal.modal-float-button .embed-video {
        width: 100%;
        height: 300px !important;
        border: none !important
    }
}

@media(max-width:767.98px) {
    .generic-modal.modal-float-button .generic-modal__content {
        position: absolute;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-top: 70%;
        margin-right: 20px;
        margin-left: 20px
    }

    .generic-modal.modal-float-button .modal-dialog {
        max-width: 88% !important
    }

    .generic-modal.modal-float-button .m-video .limelight-player {
        background: none !important
    }

    .generic-modal.modal-float-button .m-video .limelight-player .vjs-limelight-big-play:before {
        content: "\f101";
        background: var(--floatingbutton-light-gray);
        border-radius: 100px;
        font-size: 40px;
        line-height: 40px;
        position: absolute;
        border: 0;
        top: 50%;
        left: 50%;
        width: 48px;
        height: 48px;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }

    .generic-modal.modal-float-button .m-video .limelight-player .vjs-limelight-big-play:hover::before {
        content: "\f101";
        background: var(--floatingbutton-light-magenta);
        border-radius: 100px;
        font-size: 40px;
        line-height: 40px;
        position: absolute;
        border: 0;
        top: 50%;
        left: 50%;
        width: 48px;
        height: 48px;
        padding: 4px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }

    .generic-modal.modal-float-button .embed-video {
        width: 100%;
        height: 210px !important
    }
}

@media(max-width:767.98px) {

    .a-floatingactionbutton__floating-button .right-aligned-large,
    .a-floatingactionbutton__floating-button .right-aligned-medium,
    .a-floatingactionbutton__floating-button .right-aligned-small {
        width: 96px;
        min-height: 48px;
        font-size: 14px;
        line-height: 16px;
        padding: 12px 8px 12px 8px;
        word-break: break-word
    }

    .a-floatingactionbutton__floating-button .right-aligned button .icon-left {
        padding-right: 0
    }

    .a-floatingactionbutton__floating-button .right-aligned button .icon-right {
        padding-left: 0
    }
}

/*!
 * FilePond 4.30.3
 * Licensed under MIT, https://opensource.org/licenses/MIT/
 * Please visit https://pqina.nl/filepond/ for details.
 */
.filepond--assistant {
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    white-space: nowrap
}

.filepond--browser.filepond--browser {
    position: absolute;
    margin: 0;
    padding: 0;
    left: 1em;
    top: 1.75em;
    width: calc(100% - 2em);
    opacity: 0;
    font-size: 0
}

.filepond--data {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    visibility: hidden;
    pointer-events: none;
    contain: strict
}

.filepond--drip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: none;
    border-radius: .5em;
    background: 0;
    border: dashed 1px #888b8d;
    z-index: 3
}

.filepond--drip-blob {
    position: absolute;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    top: 0;
    left: 0;
    width: 8em;
    height: 8em;
    margin-left: -4em;
    margin-top: -4em;
    background: #292625;
    border-radius: 50%;
    will-change: transform, opacity
}

.filepond--drop-label {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    will-change: transform, opacity;
    z-index: 5
}

.filepond--drop-label.filepond--drop-label label {
    display: block;
    margin: 0;
    padding: .5em
}

.filepond--drop-label label {
    cursor: default;
    font-size: .875em;
    font-weight: normal;
    text-align: center;
    line-height: 1.5
}

.filepond--label-action {
    text-decoration: underline;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
    -webkit-text-decoration-color: #a7a4a4;
    text-decoration-color: #a7a4a4;
    cursor: pointer
}

.filepond--root[data-disabled] .filepond--drop-label label {
    opacity: .5
}

.filepond--file-action-button.filepond--file-action-button {
    font-size: 1em;
    width: 1.625em;
    height: 1.625em;
    font-family: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    will-change: transform, opacity
}

.filepond--file-action-button.filepond--file-action-button span {
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    white-space: nowrap
}

.filepond--file-action-button.filepond--file-action-button svg {
    width: 100%;
    height: 100%
}

.filepond--file-action-button.filepond--file-action-button::after {
    position: absolute;
    left: -0.75em;
    right: -0.75em;
    top: -0.75em;
    bottom: -0.75em;
    content: ""
}

.filepond--file-action-button {
    cursor: auto;
    color: #fff;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: none;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -webkit-transition: -webkit-box-shadow .25s ease-in;
    transition: -webkit-box-shadow .25s ease-in;
    transition: box-shadow .25s ease-in;
    transition: box-shadow .25s ease-in, -webkit-box-shadow .25s ease-in;
    z-index: 102
}

.filepond--file-action-button:hover,
.filepond--file-action-button:focus {
    -webkit-box-shadow: 0 0 0 .125em rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 .125em rgba(255, 255, 255, 0.9)
}

.filepond--file-action-button[disabled] {
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.25)
}

.filepond--file-action-button[hidden] {
    display: none
}

.filepond--action-edit-item.filepond--action-edit-item {
    width: 2em;
    height: 2em;
    padding: .1875em
}

.filepond--action-edit-item.filepond--action-edit-item[data-align*="center"] {
    margin-left: -0.1875em
}

.filepond--action-edit-item.filepond--action-edit-item[data-align*="bottom"] {
    margin-bottom: -0.1875em
}

.filepond--action-edit-item-alt {
    border: 0;
    line-height: inherit;
    background: transparent;
    font-family: inherit;
    color: inherit;
    outline: 0;
    padding: 0;
    margin: 0 0 0 .25em;
    pointer-events: all;
    position: absolute
}

.filepond--action-edit-item-alt svg {
    width: 1.3125em;
    height: 1.3125em
}

.filepond--action-edit-item-alt span {
    font-size: 0;
    opacity: 0
}

.filepond--file-info {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 .5em 0 0;
    min-width: 0;
    will-change: transform, opacity;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 100
}

.filepond--file-info * {
    margin: 0
}

.filepond--file-info .filepond--file-info-main {
    font-size: .75em;
    line-height: 1.2;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%
}

.filepond--file-info .filepond--file-info-sub {
    font-size: .625em;
    opacity: .5;
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
    white-space: nowrap
}

.filepond--file-info .filepond--file-info-sub:empty {
    display: none
}

.filepond--file-status {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0;
    min-width: 2.25em;
    text-align: right;
    will-change: transform, opacity;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 101
}

.filepond--file-status * {
    margin: 0;
    white-space: nowrap
}

.filepond--file-status .filepond--file-status-main {
    font-size: .75em;
    line-height: 1.2
}

.filepond--file-status .filepond--file-status-sub {
    font-size: .625em;
    opacity: .5;
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out
}

.filepond--file-wrapper.filepond--file-wrapper {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
    height: 100%
}

.filepond--file-wrapper.filepond--file-wrapper>legend {
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    white-space: nowrap
}

.filepond--file {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: .5625em .5625em;
    color: #fff;
    border-radius: .5em
}

.filepond--file .filepond--file-status {
    margin-left: auto;
    margin-right: 2.25em
}

.filepond--file .filepond--processing-complete-indicator {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 3
}

.filepond--file .filepond--processing-complete-indicator,
.filepond--file .filepond--progress-indicator,
.filepond--file .filepond--file-action-button {
    position: absolute
}

.filepond--file [data-align*="left"] {
    left: .5625em
}

.filepond--file [data-align*="right"] {
    right: .5625em
}

.filepond--file [data-align*="center"] {
    left: calc(50% - 0.8125em)
}

.filepond--file [data-align*="bottom"] {
    bottom: 1.125em
}

.filepond--file [data-align="center"] {
    top: calc(50% - 0.8125em)
}

.filepond--file .filepond--progress-indicator {
    margin-top: .1875em
}

.filepond--file .filepond--progress-indicator[data-align*="right"] {
    margin-right: .1875em
}

.filepond--file .filepond--progress-indicator[data-align*="left"] {
    margin-left: .1875em
}

[data-filepond-item-state="cancelled"] .filepond--file-info,
[data-filepond-item-state*="invalid"] .filepond--file-info,
[data-filepond-item-state*="error"] .filepond--file-info {
    margin-right: 2.25em
}

[data-filepond-item-state~="processing"] .filepond--file-status-sub {
    opacity: 0
}

[data-filepond-item-state~="processing"] .filepond--action-abort-item-processing~.filepond--file-status .filepond--file-status-sub {
    opacity: .5
}

[data-filepond-item-state="processing-error"] .filepond--file-status-sub {
    opacity: 0
}

[data-filepond-item-state="processing-error"] .filepond--action-retry-item-processing~.filepond--file-status .filepond--file-status-sub {
    opacity: .5
}

[data-filepond-item-state="processing-complete"] .filepond--action-revert-item-processing svg {
    -webkit-animation: fall .5s .125s linear both;
    animation: fall .5s .125s linear both
}

[data-filepond-item-state="processing-complete"] .filepond--file-status-sub {
    opacity: .5
}

[data-filepond-item-state="processing-complete"] .filepond--processing-complete-indicator:not([style*="hidden"])~.filepond--file-status .filepond--file-status-sub {
    opacity: 0
}

[data-filepond-item-state="processing-complete"] .filepond--file-info-sub {
    opacity: 0
}

[data-filepond-item-state="processing-complete"] .filepond--action-revert-item-processing~.filepond--file-info .filepond--file-info-sub {
    opacity: .5
}

[data-filepond-item-state*="invalid"] .filepond--panel,
[data-filepond-item-state*="invalid"] .filepond--file-wrapper,
[data-filepond-item-state*="error"] .filepond--panel,
[data-filepond-item-state*="error"] .filepond--file-wrapper {
    -webkit-animation: shake .65s linear both;
    animation: shake .65s linear both
}

[data-filepond-item-state*="busy"] .filepond--progress-indicator svg {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite
}

@-webkit-keyframes spin {
    0 {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }

    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}

@keyframes spin {
    0 {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }

    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}

@-webkit-keyframes shake {

    10%,
    90% {
        -webkit-transform: translateX(-0.0625em);
        transform: translateX(-0.0625em)
    }

    20%,
    80% {
        -webkit-transform: translateX(0.125em);
        transform: translateX(0.125em)
    }

    30%,
    50%,
    70% {
        -webkit-transform: translateX(-0.25em);
        transform: translateX(-0.25em)
    }

    40%,
    60% {
        -webkit-transform: translateX(0.25em);
        transform: translateX(0.25em)
    }
}

@keyframes shake {

    10%,
    90% {
        -webkit-transform: translateX(-0.0625em);
        transform: translateX(-0.0625em)
    }

    20%,
    80% {
        -webkit-transform: translateX(0.125em);
        transform: translateX(0.125em)
    }

    30%,
    50%,
    70% {
        -webkit-transform: translateX(-0.25em);
        transform: translateX(-0.25em)
    }

    40%,
    60% {
        -webkit-transform: translateX(0.25em);
        transform: translateX(0.25em)
    }
}

@-webkit-keyframes fall {
    0 {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    70% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes fall {
    0 {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    70% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.filepond--hopper[data-hopper-state="drag-over"]>* {
    pointer-events: none
}

.filepond--hopper[data-hopper-state="drag-over"]::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100
}

.filepond--hopper[data-hopper-state="drag-over"] .filepond--drip {
    background-color: rgba(224, 224, 224, 0.5);
    border: dashed 2px Black
}

.filepond--item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0;
    margin: .25em;
    will-change: transform, opacity
}

.filepond--item>.filepond--panel {
    z-index: -1
}

.filepond--item>.filepond--panel .filepond--panel-bottom {
    -webkit-box-shadow: 0 .0625em .125em -0.0625em rgba(0, 0, 0, 0.25);
    box-shadow: 0 .0625em .125em -0.0625em rgba(0, 0, 0, 0.25)
}

.filepond--item>.filepond--file-wrapper,
.filepond--item>.filepond--panel {
    -webkit-transition: opacity .15s ease-out;
    transition: opacity .15s ease-out
}

.filepond--item[data-drag-state] {
    cursor: -webkit-grab;
    cursor: grab
}

.filepond--item[data-drag-state]>.filepond--panel {
    -webkit-transition: -webkit-box-shadow .125s ease-in-out;
    transition: -webkit-box-shadow .125s ease-in-out;
    transition: box-shadow .125s ease-in-out;
    transition: box-shadow .125s ease-in-out, -webkit-box-shadow .125s ease-in-out;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0)
}

.filepond--item[data-drag-state="drag"] {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.filepond--item[data-drag-state="drag"]>.filepond--panel {
    -webkit-box-shadow: 0 .125em .3125em rgba(0, 0, 0, 0.325);
    box-shadow: 0 .125em .3125em rgba(0, 0, 0, 0.325)
}

.filepond--item[data-drag-state]:not([data-drag-state="idle"]) {
    z-index: 2
}

.filepond--item-panel {
    background-color: #64605e;
    border-radius: .5em;
    -webkit-transition: background-color .25s;
    transition: background-color .25s
}

[data-filepond-item-state="processing-complete"] .filepond--item-panel {
    background-color: #369763
}

[data-filepond-item-state*="invalid"] .filepond--item-panel,
[data-filepond-item-state*="error"] .filepond--item-panel {
    background-color: #c44e47
}

.filepond--list-scroller {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    will-change: transform;
    z-index: 6
}

.filepond--list-scroller[data-state="overflow"] .filepond--list {
    bottom: 0;
    right: 0
}

.filepond--list-scroller[data-state="overflow"] {
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(#000), to(transparent));
    -webkit-mask: linear-gradient(to bottom, #000 calc(100% - 0.5em), transparent 100%);
    mask: -webkit-gradient(linear, left top, left bottom, from(#000), to(transparent));
    mask: linear-gradient(to bottom, #000 calc(100% - 0.5em), transparent 100%)
}

.filepond--list-scroller::-webkit-scrollbar {
    background: transparent
}

.filepond--list-scroller::-webkit-scrollbar:vertical {
    width: 1em
}

.filepond--list-scroller::-webkit-scrollbar:horizontal {
    height: 0
}

.filepond--list-scroller::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 99999px;
    border: .3125em solid transparent;
    background-clip: content-box
}

.filepond--list.filepond--list {
    position: absolute;
    top: 0;
    margin: 0;
    padding: 0;
    list-style-type: none;
    will-change: transform
}

.filepond--list {
    left: .75em;
    right: .75em
}

.filepond--root[data-style-panel-layout~="integrated"] {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--panel-root,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--panel-root {
    border-radius: 0
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--panel-root>*,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--panel-root>* {
    display: none
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--drop-label,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--drop-label {
    bottom: 0;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 7
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--item-panel,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--item-panel {
    display: none
}

.filepond--root[data-style-panel-layout~="compact"] .filepond--list-scroller,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--list-scroller {
    overflow: hidden;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0
}

.filepond--root[data-style-panel-layout~="compact"] .filepond--list,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--list {
    left: 0;
    right: 0;
    height: 100%
}

.filepond--root[data-style-panel-layout~="compact"] .filepond--item,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--item {
    margin: 0
}

.filepond--root[data-style-panel-layout~="compact"] .filepond--file-wrapper,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--file-wrapper {
    height: 100%
}

.filepond--root[data-style-panel-layout~="compact"] .filepond--drop-label,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--drop-label {
    z-index: 7
}

.filepond--root[data-style-panel-layout~="circle"] {
    border-radius: 99999rem;
    overflow: hidden
}

.filepond--root[data-style-panel-layout~="circle"]>.filepond--panel {
    border-radius: inherit
}

.filepond--root[data-style-panel-layout~="circle"]>.filepond--panel>* {
    display: none
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--file-info {
    display: none
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--file-status {
    display: none
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--action-edit-item {
    opacity: 1 !important;
    visibility: visible !important
}

@media not all and (min-resolution:.001dpcm) {
    @supports(-webkit-appearance:none) and (stroke-color:transparent) {
        .filepond--root[data-style-panel-layout~="circle"] {
            will-change: transform
        }
    }
}

.filepond--panel-root {
    border-radius: .5em;
    background-color: none
}

.filepond--panel {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0;
    height: 100% !important;
    pointer-events: none
}

.filepond-panel:not([data-scalable="false"]) {
    height: auto !important
}

.filepond--panel[data-scalable="false"]>div {
    display: none
}

.filepond--panel[data-scalable="true"] {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background-color: transparent !important;
    border: none !important
}

.filepond--panel-top,
.filepond--panel-bottom,
.filepond--panel-center {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0
}

.filepond--panel-top,
.filepond--panel-bottom {
    height: .5em
}

.filepond--panel-top {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: none !important
}

.filepond--panel-top::after {
    content: "";
    position: absolute;
    height: 2px;
    left: 0;
    right: 0;
    bottom: -1px;
    background-color: inherit
}

.filepond--panel-center,
.filepond--panel-bottom {
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: translate3d(0, 0.5em, 0);
    transform: translate3d(0, 0.5em, 0)
}

.filepond--panel-bottom {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-top: none !important
}

.filepond--panel-bottom::before {
    content: "";
    position: absolute;
    height: 2px;
    left: 0;
    right: 0;
    top: -1px;
    background-color: inherit
}

.filepond--panel-center {
    height: 100px !important;
    border-top: none !important;
    border-bottom: none !important;
    border-radius: 0 !important
}

.filepond--panel-center:not([style]) {
    visibility: hidden
}

.filepond--progress-indicator {
    position: static;
    width: 1.25em;
    height: 1.25em;
    color: #fff;
    margin: 0;
    pointer-events: none;
    will-change: transform, opacity;
    z-index: 103
}

.filepond--progress-indicator svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    transform-box: fill-box
}

.filepond--progress-indicator path {
    fill: none;
    stroke: currentColor
}

.filepond--root>.filepond--panel {
    z-index: 2
}

.filepond--browser {
    z-index: 1
}

.filepond--root {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 1em;
    font-size: 1rem;
    line-height: normal;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 450;
    text-align: left;
    text-rendering: optimizeLegibility;
    direction: ltr;
    contain: layout style size
}

.filepond--root * {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    line-height: inherit
}

.filepond--root *:not(text) {
    font-size: inherit
}

.filepond--root[data-disabled] {
    pointer-events: none
}

.filepond--root[data-disabled] .filepond--list-scroller {
    pointer-events: all
}

.filepond--root[data-disabled] .filepond--list {
    pointer-events: none
}

.filepond--root .filepond--drop-label {
    min-height: 122px;
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important
}

.filepond--root .filepond--list-scroller {
    margin-top: 1em;
    margin-bottom: 1em;
    display: none
}

.filepond--root .filepond--credits {
    position: absolute;
    right: 0;
    opacity: .175;
    line-height: .85;
    font-size: 11px;
    color: inherit;
    text-decoration: none;
    z-index: 3;
    bottom: -14px;
    display: none
}

.filepond--root .filepond--credits[style] {
    top: 0;
    bottom: auto;
    margin-top: 14px
}

.filepond--image-preview-markup {
    position: absolute;
    left: 0;
    top: 0
}

.filepond--image-preview-overlay {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 5rem;
    max-height: 7rem;
    margin: 0;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.filepond--image-preview-overlay svg {
    width: 100%;
    height: auto;
    color: inherit;
    max-height: inherit
}

.filepond--image-preview-overlay-idle {
    mix-blend-mode: multiply;
    color: rgba(40, 40, 40, 0.85)
}

.filepond--image-preview-overlay-success {
    mix-blend-mode: normal;
    color: #369763
}

.filepond--image-preview-overlay-failure {
    mix-blend-mode: normal;
    color: #c44e47
}

@supports(-webkit-marquee-repetition:infinite) and ((-o-object-fit:fill) or(object-fit:fill)) {
    .filepond--image-preview-overlay-idle {
        mix-blend-mode: normal
    }
}

.filepond--image-preview-wrapper {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    margin: 0;
    border-radius: .45em;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.01);
    z-index: 2
}

.filepond--image-preview {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    pointer-events: none;
    background: #222;
    will-change: transform, opacity
}

.filepond--image-clip {
    position: relative;
    overflow: hidden;
    margin: 0 auto
}

.filepond--image-clip[data-transparency-indicator="grid"] img,
.filepond--image-clip[data-transparency-indicator="grid"] canvas {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3CsvgviewBox='00100100'xmlns='http://www.w3.org/2000/svg'fill='%23eee'%3E%3Cpathd='M00H50V50H0'/%3E%3Cpathd='M5050H100V100H50'/%3E%3C/svg%3E");
    background-size: 1.25em 1.25em
}

.filepond--image-bitmap,
.filepond--image-vector {
    position: absolute;
    left: 0;
    top: 0;
    will-change: transform
}

.filepond--root[data-style-panel-layout~="integrated"] .filepond--image-preview-wrapper {
    border-radius: 0
}

.filepond--root[data-style-panel-layout~="integrated"] .filepond--image-preview {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--image-preview-wrapper {
    border-radius: 99999rem
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--image-preview-overlay {
    top: auto;
    bottom: 0;
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--file .filepond--file-action-button[data-align*="bottom"]:not([data-align*="center"]) {
    margin-bottom: .325em
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--file [data-align*="left"] {
    left: calc(50% - 3em)
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--file [data-align*="right"] {
    right: calc(50% - 3em)
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--progress-indicator[data-align*="bottom"][data-align*="left"],
.filepond--root[data-style-panel-layout~="circle"] .filepond--progress-indicator[data-align*="bottom"][data-align*="right"] {
    margin-bottom: calc(0.325em + 0.1875em)
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--progress-indicator[data-align*="bottom"][data-align*="center"] {
    margin-top: 0;
    margin-bottom: .1875em;
    margin-left: .1875em
}

.cropper-container {
    direction: ltr;
    font-size: 0;
    line-height: 0;
    position: relative;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.cropper-container img {
    display: block;
    height: 100%;
    image-orientation: 0;
    max-height: none !important;
    max-width: none !important;
    min-height: 0 !important;
    min-width: 0 !important;
    width: 100%
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.cropper-wrap-box,
.cropper-canvas {
    overflow: hidden
}

.cropper-drag-box {
    background-color: #fff;
    opacity: 0
}

.cropper-modal {
    background-color: #000;
    opacity: .5
}

.cropper-view-box {
    display: block;
    height: 100%;
    outline: 1px solid #39f;
    outline-color: rgba(51, 153, 255, 0.75);
    overflow: hidden;
    width: 100%
}

.cropper-dashed {
    border: 0 dashed #eee;
    display: block;
    opacity: .5;
    position: absolute
}

.cropper-dashed.dashed-h {
    border-bottom-width: 1px;
    border-top-width: 1px;
    height: calc(100% / 3);
    left: 0;
    top: calc(100% / 3);
    width: 100%
}

.cropper-dashed.dashed-v {
    border-left-width: 1px;
    border-right-width: 1px;
    height: 100%;
    left: calc(100% / 3);
    top: 0;
    width: calc(100% / 3)
}

.cropper-center {
    display: block;
    height: 0;
    left: 50%;
    opacity: .75;
    position: absolute;
    top: 50%;
    width: 0
}

.cropper-center::before,
.cropper-center::after {
    background-color: #eee;
    content: " ";
    display: block;
    position: absolute
}

.cropper-center::before {
    height: 1px;
    left: -3px;
    top: 0;
    width: 7px
}

.cropper-center::after {
    height: 7px;
    left: 0;
    top: -3px;
    width: 1px
}

.cropper-face,
.cropper-line,
.cropper-point {
    display: block;
    height: 100%;
    opacity: .1;
    position: absolute;
    width: 100%
}

.cropper-face {
    background-color: #fff;
    left: 0;
    top: 0
}

.cropper-line {
    background-color: #39f
}

.cropper-line.line-e {
    cursor: ew-resize;
    right: -3px;
    top: 0;
    width: 5px
}

.cropper-line.line-n {
    cursor: ns-resize;
    height: 5px;
    left: 0;
    top: -3px
}

.cropper-line.line-w {
    cursor: ew-resize;
    left: -3px;
    top: 0;
    width: 5px
}

.cropper-line.line-s {
    bottom: -3px;
    cursor: ns-resize;
    height: 5px;
    left: 0
}

.cropper-point {
    background-color: #39f;
    height: 5px;
    opacity: .75;
    width: 5px
}

.cropper-point.point-e {
    cursor: ew-resize;
    margin-top: -3px;
    right: -3px;
    top: 50%
}

.cropper-point.point-n {
    cursor: ns-resize;
    left: 50%;
    margin-left: -3px;
    top: -3px
}

.cropper-point.point-w {
    cursor: ew-resize;
    left: -3px;
    margin-top: -3px;
    top: 50%
}

.cropper-point.point-s {
    bottom: -3px;
    cursor: s-resize;
    left: 50%;
    margin-left: -3px
}

.cropper-point.point-ne {
    cursor: nesw-resize;
    right: -3px;
    top: -3px
}

.cropper-point.point-nw {
    cursor: nwse-resize;
    left: -3px;
    top: -3px
}

.cropper-point.point-sw {
    bottom: -3px;
    cursor: nesw-resize;
    left: -3px
}

.cropper-point.point-se {
    bottom: -3px;
    cursor: nwse-resize;
    height: 20px;
    opacity: 1;
    right: -3px;
    width: 20px
}

@media(min-width:768px) {
    .cropper-point.point-se {
        height: 15px;
        width: 15px
    }
}

@media(min-width:992px) {
    .cropper-point.point-se {
        height: 10px;
        width: 10px
    }
}

@media(min-width:1200px) {
    .cropper-point.point-se {
        height: 5px;
        opacity: .75;
        width: 5px
    }
}

.cropper-point.point-se::before {
    background-color: #39f;
    bottom: -50%;
    content: " ";
    display: block;
    height: 200%;
    opacity: 0;
    position: absolute;
    right: -50%;
    width: 200%
}

.cropper-invisible {
    opacity: 0
}

.cropper-hide {
    display: block;
    height: 0;
    position: absolute;
    width: 0
}

.cropper-hidden {
    display: none !important
}

.cropper-move {
    cursor: move
}

.cropper-crop {
    cursor: crosshair
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
    cursor: not-allowed
}

.m-file-uploader {
    position: relative;
    width: 432px;
    overflow: hidden;
    max-width: 100%
}

.m-file-uploader__drag-drop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.m-file-uploader__drag-drop .abt-icon {
    font-size: 28px;
    margin-right: 12px
}

.m-file-uploader .filepond--root {
    height: 122px
}

.m-file-uploader .filepond--label-action {
    font-weight: bold
}

.m-file-uploader:before {
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    height: 0;
    width: 100%;
    z-index: 9;
    vertical-align: middle;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    top: 80px;
    -webkit-transition: all linear .3s .1s;
    transition: all linear .3s .1s
}

.m-file-uploader img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%
}

.m-file-uploader__cropcontainer {
    overflow: hidden;
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    height: 100%;
    display: none
}

.m-file-uploader__cropconfirm {
    margin-top: 16px
}

.m-file-uploader__imgcontainer {
    max-width: 100%
}

.m-file-uploader__croppedimg {
    -webkit-transition: all linear .2s 2s;
    transition: all linear .2s 2s;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 0;
    position: absolute
}

.m-file-uploader__croppedimg img {
    max-width: 300px;
    -webkit-transition: all cubic-bezier(0.22, 0.61, 0.36, 1) .2s 2.3s;
    transition: all cubic-bezier(0.22, 0.61, 0.36, 1) .2s 2.3s;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
    opacity: 0;
    scroll-behavior: smooth
}

.m-file-uploader__filedetails {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px
}

.m-file-uploader__filedetails-label {
    width: 100%;
    font-weight: bold
}

.m-file-uploader__filename {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 60%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.m-file-uploader__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 5px
}

.m-file-uploader__size {
    white-space: nowrap;
    margin-left: 10px
}

.m-file-uploader__removefile {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer
}

.m-file-uploader__removefile em {
    margin-right: 8px
}

.m-file-uploader__croplabel {
    font-weight: bold
}

.m-file-uploader.show-loader:before {
    opacity: 1;
    height: calc(100% - 80px)
}

.m-file-uploader .cropper-modal {
    background-color: rgba(107, 107, 107, 0.59);
    opacity: 1
}

.m-file-uploader .cropper-view-box {
    outline: 0
}

.m-file-uploader.show-result .m-file-uploader__cropcontainer {
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
    opacity: 0;
    height: 0
}

.m-file-uploader.show-result .m-file-uploader__croppedimg {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    position: relative
}

.m-file-uploader.show-result .m-file-uploader__croppedimg img {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

/*!
 * FilePond 4.30.3
 * Licensed under MIT, https://opensource.org/licenses/MIT/
 * Please visit https://pqina.nl/filepond/ for details.
 */
.filepond--assistant {
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    white-space: nowrap
}

.filepond--browser.filepond--browser {
    position: absolute;
    margin: 0;
    padding: 0;
    left: 1em;
    top: 1.75em;
    width: calc(100% - 2em);
    opacity: 0;
    font-size: 0
}

.filepond--data {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
    visibility: hidden;
    pointer-events: none;
    contain: strict
}

.filepond--drip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: none;
    border-radius: .5em;
    background: 0;
    border: dashed 1px #888b8d;
    z-index: 3
}

.filepond--drip-blob {
    position: absolute;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    top: 0;
    left: 0;
    width: 8em;
    height: 8em;
    margin-left: -4em;
    margin-top: -4em;
    background: #292625;
    border-radius: 50%;
    will-change: transform, opacity
}

.filepond--drop-label {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    will-change: transform, opacity;
    z-index: 5
}

.filepond--drop-label.filepond--drop-label label {
    display: block;
    margin: 0;
    padding: .5em
}

.filepond--drop-label label {
    cursor: default;
    font-size: .875em;
    font-weight: normal;
    text-align: center;
    line-height: 1.5
}

.filepond--label-action {
    text-decoration: underline;
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
    -webkit-text-decoration-color: #a7a4a4;
    text-decoration-color: #a7a4a4;
    cursor: pointer
}

.filepond--root[data-disabled] .filepond--drop-label label {
    opacity: .5
}

.filepond--file-action-button.filepond--file-action-button {
    font-size: 1em;
    width: 1.625em;
    height: 1.625em;
    font-family: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    will-change: transform, opacity
}

.filepond--file-action-button.filepond--file-action-button span {
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    white-space: nowrap
}

.filepond--file-action-button.filepond--file-action-button svg {
    width: 100%;
    height: 100%
}

.filepond--file-action-button.filepond--file-action-button::after {
    position: absolute;
    left: -0.75em;
    right: -0.75em;
    top: -0.75em;
    bottom: -0.75em;
    content: ""
}

.filepond--file-action-button {
    cursor: auto;
    color: #fff;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: none;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -webkit-transition: -webkit-box-shadow .25s ease-in;
    transition: -webkit-box-shadow .25s ease-in;
    transition: box-shadow .25s ease-in;
    transition: box-shadow .25s ease-in, -webkit-box-shadow .25s ease-in;
    z-index: 102
}

.filepond--file-action-button:hover,
.filepond--file-action-button:focus {
    -webkit-box-shadow: 0 0 0 .125em rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 .125em rgba(255, 255, 255, 0.9)
}

.filepond--file-action-button[disabled] {
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.25)
}

.filepond--file-action-button[hidden] {
    display: none
}

.filepond--action-edit-item.filepond--action-edit-item {
    width: 2em;
    height: 2em;
    padding: .1875em
}

.filepond--action-edit-item.filepond--action-edit-item[data-align*="center"] {
    margin-left: -0.1875em
}

.filepond--action-edit-item.filepond--action-edit-item[data-align*="bottom"] {
    margin-bottom: -0.1875em
}

.filepond--action-edit-item-alt {
    border: 0;
    line-height: inherit;
    background: transparent;
    font-family: inherit;
    color: inherit;
    outline: 0;
    padding: 0;
    margin: 0 0 0 .25em;
    pointer-events: all;
    position: absolute
}

.filepond--action-edit-item-alt svg {
    width: 1.3125em;
    height: 1.3125em
}

.filepond--action-edit-item-alt span {
    font-size: 0;
    opacity: 0
}

.filepond--file-info {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 .5em 0 0;
    min-width: 0;
    will-change: transform, opacity;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 100
}

.filepond--file-info * {
    margin: 0
}

.filepond--file-info .filepond--file-info-main {
    font-size: .75em;
    line-height: 1.2;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%
}

.filepond--file-info .filepond--file-info-sub {
    font-size: .625em;
    opacity: .5;
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out;
    white-space: nowrap
}

.filepond--file-info .filepond--file-info-sub:empty {
    display: none
}

.filepond--file-status {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0;
    min-width: 2.25em;
    text-align: right;
    will-change: transform, opacity;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 101
}

.filepond--file-status * {
    margin: 0;
    white-space: nowrap
}

.filepond--file-status .filepond--file-status-main {
    font-size: .75em;
    line-height: 1.2
}

.filepond--file-status .filepond--file-status-sub {
    font-size: .625em;
    opacity: .5;
    -webkit-transition: opacity .25s ease-in-out;
    transition: opacity .25s ease-in-out
}

.filepond--file-wrapper.filepond--file-wrapper {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
    height: 100%
}

.filepond--file-wrapper.filepond--file-wrapper>legend {
    position: absolute;
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    white-space: nowrap
}

.filepond--file {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: .5625em .5625em;
    color: #fff;
    border-radius: .5em
}

.filepond--file .filepond--file-status {
    margin-left: auto;
    margin-right: 2.25em
}

.filepond--file .filepond--processing-complete-indicator {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 3
}

.filepond--file .filepond--processing-complete-indicator,
.filepond--file .filepond--progress-indicator,
.filepond--file .filepond--file-action-button {
    position: absolute
}

.filepond--file [data-align*="left"] {
    left: .5625em
}

.filepond--file [data-align*="right"] {
    right: .5625em
}

.filepond--file [data-align*="center"] {
    left: calc(50% - 0.8125em)
}

.filepond--file [data-align*="bottom"] {
    bottom: 1.125em
}

.filepond--file [data-align="center"] {
    top: calc(50% - 0.8125em)
}

.filepond--file .filepond--progress-indicator {
    margin-top: .1875em
}

.filepond--file .filepond--progress-indicator[data-align*="right"] {
    margin-right: .1875em
}

.filepond--file .filepond--progress-indicator[data-align*="left"] {
    margin-left: .1875em
}

[data-filepond-item-state="cancelled"] .filepond--file-info,
[data-filepond-item-state*="invalid"] .filepond--file-info,
[data-filepond-item-state*="error"] .filepond--file-info {
    margin-right: 2.25em
}

[data-filepond-item-state~="processing"] .filepond--file-status-sub {
    opacity: 0
}

[data-filepond-item-state~="processing"] .filepond--action-abort-item-processing~.filepond--file-status .filepond--file-status-sub {
    opacity: .5
}

[data-filepond-item-state="processing-error"] .filepond--file-status-sub {
    opacity: 0
}

[data-filepond-item-state="processing-error"] .filepond--action-retry-item-processing~.filepond--file-status .filepond--file-status-sub {
    opacity: .5
}

[data-filepond-item-state="processing-complete"] .filepond--action-revert-item-processing svg {
    -webkit-animation: fall .5s .125s linear both;
    animation: fall .5s .125s linear both
}

[data-filepond-item-state="processing-complete"] .filepond--file-status-sub {
    opacity: .5
}

[data-filepond-item-state="processing-complete"] .filepond--processing-complete-indicator:not([style*="hidden"])~.filepond--file-status .filepond--file-status-sub {
    opacity: 0
}

[data-filepond-item-state="processing-complete"] .filepond--file-info-sub {
    opacity: 0
}

[data-filepond-item-state="processing-complete"] .filepond--action-revert-item-processing~.filepond--file-info .filepond--file-info-sub {
    opacity: .5
}

[data-filepond-item-state*="invalid"] .filepond--panel,
[data-filepond-item-state*="invalid"] .filepond--file-wrapper,
[data-filepond-item-state*="error"] .filepond--panel,
[data-filepond-item-state*="error"] .filepond--file-wrapper {
    -webkit-animation: shake .65s linear both;
    animation: shake .65s linear both
}

[data-filepond-item-state*="busy"] .filepond--progress-indicator svg {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite
}

@-webkit-keyframes spin {
    0 {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }

    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}

@keyframes spin {
    0 {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }

    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}

@-webkit-keyframes shake {

    10%,
    90% {
        -webkit-transform: translateX(-0.0625em);
        transform: translateX(-0.0625em)
    }

    20%,
    80% {
        -webkit-transform: translateX(0.125em);
        transform: translateX(0.125em)
    }

    30%,
    50%,
    70% {
        -webkit-transform: translateX(-0.25em);
        transform: translateX(-0.25em)
    }

    40%,
    60% {
        -webkit-transform: translateX(0.25em);
        transform: translateX(0.25em)
    }
}

@keyframes shake {

    10%,
    90% {
        -webkit-transform: translateX(-0.0625em);
        transform: translateX(-0.0625em)
    }

    20%,
    80% {
        -webkit-transform: translateX(0.125em);
        transform: translateX(0.125em)
    }

    30%,
    50%,
    70% {
        -webkit-transform: translateX(-0.25em);
        transform: translateX(-0.25em)
    }

    40%,
    60% {
        -webkit-transform: translateX(0.25em);
        transform: translateX(0.25em)
    }
}

@-webkit-keyframes fall {
    0 {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    70% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes fall {
    0 {
        opacity: 0;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    70% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.filepond--hopper[data-hopper-state="drag-over"]>* {
    pointer-events: none
}

.filepond--hopper[data-hopper-state="drag-over"]::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100
}

.filepond--hopper[data-hopper-state="drag-over"] .filepond--drip {
    background-color: rgba(224, 224, 224, 0.5);
    border: dashed 2px Black
}

.filepond--item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0;
    margin: .25em;
    will-change: transform, opacity
}

.filepond--item>.filepond--panel {
    z-index: -1
}

.filepond--item>.filepond--panel .filepond--panel-bottom {
    -webkit-box-shadow: 0 .0625em .125em -0.0625em rgba(0, 0, 0, 0.25);
    box-shadow: 0 .0625em .125em -0.0625em rgba(0, 0, 0, 0.25)
}

.filepond--item>.filepond--file-wrapper,
.filepond--item>.filepond--panel {
    -webkit-transition: opacity .15s ease-out;
    transition: opacity .15s ease-out
}

.filepond--item[data-drag-state] {
    cursor: -webkit-grab;
    cursor: grab
}

.filepond--item[data-drag-state]>.filepond--panel {
    -webkit-transition: -webkit-box-shadow .125s ease-in-out;
    transition: -webkit-box-shadow .125s ease-in-out;
    transition: box-shadow .125s ease-in-out;
    transition: box-shadow .125s ease-in-out, -webkit-box-shadow .125s ease-in-out;
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0)
}

.filepond--item[data-drag-state="drag"] {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.filepond--item[data-drag-state="drag"]>.filepond--panel {
    -webkit-box-shadow: 0 .125em .3125em rgba(0, 0, 0, 0.325);
    box-shadow: 0 .125em .3125em rgba(0, 0, 0, 0.325)
}

.filepond--item[data-drag-state]:not([data-drag-state="idle"]) {
    z-index: 2
}

.filepond--item-panel {
    background-color: #64605e;
    border-radius: .5em;
    -webkit-transition: background-color .25s;
    transition: background-color .25s
}

[data-filepond-item-state="processing-complete"] .filepond--item-panel {
    background-color: #369763
}

[data-filepond-item-state*="invalid"] .filepond--item-panel,
[data-filepond-item-state*="error"] .filepond--item-panel {
    background-color: #c44e47
}

.filepond--list-scroller {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    will-change: transform;
    z-index: 6
}

.filepond--list-scroller[data-state="overflow"] .filepond--list {
    bottom: 0;
    right: 0
}

.filepond--list-scroller[data-state="overflow"] {
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, from(#000), to(transparent));
    -webkit-mask: linear-gradient(to bottom, #000 calc(100% - 0.5em), transparent 100%);
    mask: -webkit-gradient(linear, left top, left bottom, from(#000), to(transparent));
    mask: linear-gradient(to bottom, #000 calc(100% - 0.5em), transparent 100%)
}

.filepond--list-scroller::-webkit-scrollbar {
    background: transparent
}

.filepond--list-scroller::-webkit-scrollbar:vertical {
    width: 1em
}

.filepond--list-scroller::-webkit-scrollbar:horizontal {
    height: 0
}

.filepond--list-scroller::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 99999px;
    border: .3125em solid transparent;
    background-clip: content-box
}

.filepond--list.filepond--list {
    position: absolute;
    top: 0;
    margin: 0;
    padding: 0;
    list-style-type: none;
    will-change: transform
}

.filepond--list {
    left: .75em;
    right: .75em
}

.filepond--root[data-style-panel-layout~="integrated"] {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--panel-root,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--panel-root {
    border-radius: 0
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--panel-root>*,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--panel-root>* {
    display: none
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--drop-label,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--drop-label {
    bottom: 0;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 7
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--item-panel,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--item-panel {
    display: none
}

.filepond--root[data-style-panel-layout~="compact"] .filepond--list-scroller,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--list-scroller {
    overflow: hidden;
    height: 100%;
    margin-top: 0;
    margin-bottom: 0
}

.filepond--root[data-style-panel-layout~="compact"] .filepond--list,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--list {
    left: 0;
    right: 0;
    height: 100%
}

.filepond--root[data-style-panel-layout~="compact"] .filepond--item,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--item {
    margin: 0
}

.filepond--root[data-style-panel-layout~="compact"] .filepond--file-wrapper,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--file-wrapper {
    height: 100%
}

.filepond--root[data-style-panel-layout~="compact"] .filepond--drop-label,
.filepond--root[data-style-panel-layout~="integrated"] .filepond--drop-label {
    z-index: 7
}

.filepond--root[data-style-panel-layout~="circle"] {
    border-radius: 99999rem;
    overflow: hidden
}

.filepond--root[data-style-panel-layout~="circle"]>.filepond--panel {
    border-radius: inherit
}

.filepond--root[data-style-panel-layout~="circle"]>.filepond--panel>* {
    display: none
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--file-info {
    display: none
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--file-status {
    display: none
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--action-edit-item {
    opacity: 1 !important;
    visibility: visible !important
}

@media not all and (min-resolution:.001dpcm) {
    @supports(-webkit-appearance:none) and (stroke-color:transparent) {
        .filepond--root[data-style-panel-layout~="circle"] {
            will-change: transform
        }
    }
}

.filepond--panel-root {
    border-radius: .5em;
    background-color: none
}

.filepond--panel {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0;
    height: 100% !important;
    pointer-events: none
}

.filepond-panel:not([data-scalable="false"]) {
    height: auto !important
}

.filepond--panel[data-scalable="false"]>div {
    display: none
}

.filepond--panel[data-scalable="true"] {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    background-color: transparent !important;
    border: none !important
}

.filepond--panel-top,
.filepond--panel-bottom,
.filepond--panel-center {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0
}

.filepond--panel-top,
.filepond--panel-bottom {
    height: .5em
}

.filepond--panel-top {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: none !important
}

.filepond--panel-top::after {
    content: "";
    position: absolute;
    height: 2px;
    left: 0;
    right: 0;
    bottom: -1px;
    background-color: inherit
}

.filepond--panel-center,
.filepond--panel-bottom {
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: translate3d(0, 0.5em, 0);
    transform: translate3d(0, 0.5em, 0)
}

.filepond--panel-bottom {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-top: none !important
}

.filepond--panel-bottom::before {
    content: "";
    position: absolute;
    height: 2px;
    left: 0;
    right: 0;
    top: -1px;
    background-color: inherit
}

.filepond--panel-center {
    height: 100px !important;
    border-top: none !important;
    border-bottom: none !important;
    border-radius: 0 !important
}

.filepond--panel-center:not([style]) {
    visibility: hidden
}

.filepond--progress-indicator {
    position: static;
    width: 1.25em;
    height: 1.25em;
    color: #fff;
    margin: 0;
    pointer-events: none;
    will-change: transform, opacity;
    z-index: 103
}

.filepond--progress-indicator svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
    transform-box: fill-box
}

.filepond--progress-indicator path {
    fill: none;
    stroke: currentColor
}

.filepond--root>.filepond--panel {
    z-index: 2
}

.filepond--browser {
    z-index: 1
}

.filepond--root {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 1em;
    font-size: 1rem;
    line-height: normal;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 450;
    text-align: left;
    text-rendering: optimizeLegibility;
    direction: ltr;
    contain: layout style size
}

.filepond--root * {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    line-height: inherit
}

.filepond--root *:not(text) {
    font-size: inherit
}

.filepond--root[data-disabled] {
    pointer-events: none
}

.filepond--root[data-disabled] .filepond--list-scroller {
    pointer-events: all
}

.filepond--root[data-disabled] .filepond--list {
    pointer-events: none
}

.filepond--root .filepond--drop-label {
    min-height: 122px;
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important
}

.filepond--root .filepond--list-scroller {
    margin-top: 1em;
    margin-bottom: 1em;
    display: none
}

.filepond--root .filepond--credits {
    position: absolute;
    right: 0;
    opacity: .175;
    line-height: .85;
    font-size: 11px;
    color: inherit;
    text-decoration: none;
    z-index: 3;
    bottom: -14px;
    display: none
}

.filepond--root .filepond--credits[style] {
    top: 0;
    bottom: auto;
    margin-top: 14px
}

.filepond--image-preview-markup {
    position: absolute;
    left: 0;
    top: 0
}

.filepond--image-preview-overlay {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 5rem;
    max-height: 7rem;
    margin: 0;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.filepond--image-preview-overlay svg {
    width: 100%;
    height: auto;
    color: inherit;
    max-height: inherit
}

.filepond--image-preview-overlay-idle {
    mix-blend-mode: multiply;
    color: rgba(40, 40, 40, 0.85)
}

.filepond--image-preview-overlay-success {
    mix-blend-mode: normal;
    color: #369763
}

.filepond--image-preview-overlay-failure {
    mix-blend-mode: normal;
    color: #c44e47
}

@supports(-webkit-marquee-repetition:infinite) and ((-o-object-fit:fill) or(object-fit:fill)) {
    .filepond--image-preview-overlay-idle {
        mix-blend-mode: normal
    }
}

.filepond--image-preview-wrapper {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    margin: 0;
    border-radius: .45em;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.01);
    z-index: 2
}

.filepond--image-preview {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
    pointer-events: none;
    background: #222;
    will-change: transform, opacity
}

.filepond--image-clip {
    position: relative;
    overflow: hidden;
    margin: 0 auto
}

.filepond--image-clip[data-transparency-indicator="grid"] img,
.filepond--image-clip[data-transparency-indicator="grid"] canvas {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3CsvgviewBox='00100100'xmlns='http://www.w3.org/2000/svg'fill='%23eee'%3E%3Cpathd='M00H50V50H0'/%3E%3Cpathd='M5050H100V100H50'/%3E%3C/svg%3E");
    background-size: 1.25em 1.25em
}

.filepond--image-bitmap,
.filepond--image-vector {
    position: absolute;
    left: 0;
    top: 0;
    will-change: transform
}

.filepond--root[data-style-panel-layout~="integrated"] .filepond--image-preview-wrapper {
    border-radius: 0
}

.filepond--root[data-style-panel-layout~="integrated"] .filepond--image-preview {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--image-preview-wrapper {
    border-radius: 99999rem
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--image-preview-overlay {
    top: auto;
    bottom: 0;
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1)
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--file .filepond--file-action-button[data-align*="bottom"]:not([data-align*="center"]) {
    margin-bottom: .325em
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--file [data-align*="left"] {
    left: calc(50% - 3em)
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--file [data-align*="right"] {
    right: calc(50% - 3em)
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--progress-indicator[data-align*="bottom"][data-align*="left"],
.filepond--root[data-style-panel-layout~="circle"] .filepond--progress-indicator[data-align*="bottom"][data-align*="right"] {
    margin-bottom: calc(0.325em + 0.1875em)
}

.filepond--root[data-style-panel-layout~="circle"] .filepond--progress-indicator[data-align*="bottom"][data-align*="center"] {
    margin-top: 0;
    margin-bottom: .1875em;
    margin-left: .1875em
}

.cropper-container {
    direction: ltr;
    font-size: 0;
    line-height: 0;
    position: relative;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.cropper-container img {
    display: block;
    height: 100%;
    image-orientation: 0;
    max-height: none !important;
    max-width: none !important;
    min-height: 0 !important;
    min-width: 0 !important;
    width: 100%
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.cropper-wrap-box,
.cropper-canvas {
    overflow: hidden
}

.cropper-drag-box {
    background-color: #fff;
    opacity: 0
}

.cropper-modal {
    background-color: #000;
    opacity: .5
}

.cropper-view-box {
    display: block;
    height: 100%;
    outline: 1px solid #39f;
    outline-color: rgba(51, 153, 255, 0.75);
    overflow: hidden;
    width: 100%
}

.cropper-dashed {
    border: 0 dashed #eee;
    display: block;
    opacity: .5;
    position: absolute
}

.cropper-dashed.dashed-h {
    border-bottom-width: 1px;
    border-top-width: 1px;
    height: calc(100% / 3);
    left: 0;
    top: calc(100% / 3);
    width: 100%
}

.cropper-dashed.dashed-v {
    border-left-width: 1px;
    border-right-width: 1px;
    height: 100%;
    left: calc(100% / 3);
    top: 0;
    width: calc(100% / 3)
}

.cropper-center {
    display: block;
    height: 0;
    left: 50%;
    opacity: .75;
    position: absolute;
    top: 50%;
    width: 0
}

.cropper-center::before,
.cropper-center::after {
    background-color: #eee;
    content: " ";
    display: block;
    position: absolute
}

.cropper-center::before {
    height: 1px;
    left: -3px;
    top: 0;
    width: 7px
}

.cropper-center::after {
    height: 7px;
    left: 0;
    top: -3px;
    width: 1px
}

.cropper-face,
.cropper-line,
.cropper-point {
    display: block;
    height: 100%;
    opacity: .1;
    position: absolute;
    width: 100%
}

.cropper-face {
    background-color: #fff;
    left: 0;
    top: 0
}

.cropper-line {
    background-color: #39f
}

.cropper-line.line-e {
    cursor: ew-resize;
    right: -3px;
    top: 0;
    width: 5px
}

.cropper-line.line-n {
    cursor: ns-resize;
    height: 5px;
    left: 0;
    top: -3px
}

.cropper-line.line-w {
    cursor: ew-resize;
    left: -3px;
    top: 0;
    width: 5px
}

.cropper-line.line-s {
    bottom: -3px;
    cursor: ns-resize;
    height: 5px;
    left: 0
}

.cropper-point {
    background-color: #39f;
    height: 5px;
    opacity: .75;
    width: 5px
}

.cropper-point.point-e {
    cursor: ew-resize;
    margin-top: -3px;
    right: -3px;
    top: 50%
}

.cropper-point.point-n {
    cursor: ns-resize;
    left: 50%;
    margin-left: -3px;
    top: -3px
}

.cropper-point.point-w {
    cursor: ew-resize;
    left: -3px;
    margin-top: -3px;
    top: 50%
}

.cropper-point.point-s {
    bottom: -3px;
    cursor: s-resize;
    left: 50%;
    margin-left: -3px
}

.cropper-point.point-ne {
    cursor: nesw-resize;
    right: -3px;
    top: -3px
}

.cropper-point.point-nw {
    cursor: nwse-resize;
    left: -3px;
    top: -3px
}

.cropper-point.point-sw {
    bottom: -3px;
    cursor: nesw-resize;
    left: -3px
}

.cropper-point.point-se {
    bottom: -3px;
    cursor: nwse-resize;
    height: 20px;
    opacity: 1;
    right: -3px;
    width: 20px
}

@media(min-width:768px) {
    .cropper-point.point-se {
        height: 15px;
        width: 15px
    }
}

@media(min-width:992px) {
    .cropper-point.point-se {
        height: 10px;
        width: 10px
    }
}

@media(min-width:1200px) {
    .cropper-point.point-se {
        height: 5px;
        opacity: .75;
        width: 5px
    }
}

.cropper-point.point-se::before {
    background-color: #39f;
    bottom: -50%;
    content: " ";
    display: block;
    height: 200%;
    opacity: 0;
    position: absolute;
    right: -50%;
    width: 200%
}

.cropper-invisible {
    opacity: 0
}

.cropper-hide {
    display: block;
    height: 0;
    position: absolute;
    width: 0
}

.cropper-hidden {
    display: none !important
}

.cropper-move {
    cursor: move
}

.cropper-crop {
    cursor: crosshair
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
    cursor: not-allowed
}

.o-featured-pages__item-count--1 .row {
    border-bottom: 1px solid var(--o-featured-pages-color-light-gray)
}

.o-featured-pages__item-count--1 .row .o-featured-pages__card-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.o-featured-pages__item-count--1 .row .o-featured-pages__card-img .o-featured-pages__card-img-ele {
    width: 55%;
    text-align: center;
    margin: 5px auto;
    float: none;
    max-width: 100%
}

.o-featured-pages__item-count--1 .row .o-featured-pages__card-body {
    margin-top: 15px;
    margin-bottom: 15px
}

.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .o-featured-pages__heading {
    padding-top: 9px
}

.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .o-featured-pages__heading h1,
.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .o-featured-pages__heading h2,
.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .o-featured-pages__heading h3,
.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .o-featured-pages__heading h4,
.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .o-featured-pages__heading h5,
.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .o-featured-pages__heading h6,
.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .o-featured-pages__heading span,
.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .o-featured-pages__heading a {
    color: var(--o-featured-pages-color-primary-color);
    font-size: 18px;
    line-height: 24px
}

.o-featured-pages__item-count--1 .row .o-featured-pages__card-body p {
    color: var(--o-featured-pages-charcol-color);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 28px
}

.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .new-btn-parent {
    display: inline-block;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent
}

.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .new-btn-parent .find-out-more-button {
    max-height: 75px;
    -webkit-transition: all .8s;
    transition: all .8s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    color: var(--o-featured-pages-white-color) !important;
    background: var(--o-featured-pages-primay-blue-color) !important;
    min-width: auto;
    min-height: 35px;
    text-transform: uppercase;
    font-size: 1rem;
    border: 0;
    cursor: pointer;
    line-height: 18px;
    padding: 10px 20px 5px 20px;
    white-space: normal;
    text-align: center;
    outline: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .new-btn-parent .find-out-more-button:hover {
    background: var(--o-featured-pages-color-light-gray) !important;
    color: var(--o-featured-pages-primay-blue-color) !important
}

.o-featured-pages__item-count--1 .row .o-featured-pages__card-body .new-btn-parent .find-out-more-button:after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    text-decoration: none
}

.o-featured-pages__item .o-featured-pages__card {
    text-align: center;
    margin-bottom: 15px
}

.o-featured-pages__item .o-featured-pages__card:hover {
    border: 1px solid var(--o-featured-pages-border-color);
    background: var(--o-featured-pages-grey-color)
}

.o-featured-pages__item .o-featured-pages__card:hover h1,
.o-featured-pages__item .o-featured-pages__card:hover h2,
.o-featured-pages__item .o-featured-pages__card:hover h3,
.o-featured-pages__item .o-featured-pages__card:hover h4,
.o-featured-pages__item .o-featured-pages__card:hover h5,
.o-featured-pages__item .o-featured-pages__card:hover h6,
.o-featured-pages__item .o-featured-pages__card:hover span,
.o-featured-pages__item .o-featured-pages__card:hover a {
    text-decoration: none;
    color: var(--o-featured-pages-primay-blue-color) !important
}

.o-featured-pages__item .o-featured-pages__card:hover p {
    text-decoration: none;
    color: var(--o-featured-pages-primay-blue-color) !important
}

.o-featured-pages__item .o-featured-pages__card .o-featured-pages__card-img {
    background-color: var(--o-featured-pages-white-color);
    display: block;
    overflow: hidden
}

.o-featured-pages__item .o-featured-pages__card .o-featured-pages__card-img img {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    max-height: 200px
}

.o-featured-pages__item .o-featured-pages__card .o-featured-pages__card-body {
    padding: 15px 15px 0 15px;
    text-align: left
}

.o-featured-pages__item .o-featured-pages__card .o-featured-pages__card-body .o-featured-pages__heading {
    color: var(--o-featured-pages-color-primary-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 300
}

.o-featured-pages__item .o-featured-pages__card .o-featured-pages__card-body p {
    color: var(--o-featured-pages-color-primary-color);
    font-size: 16px;
    line-height: 20px
}

.o-featured-pages__item-count--2 .o-featured-pages__card {
    border: 1px solid transparent
}

@media(max-width:767.98px) {
    .o-featured-pages__item-count--2 .o-featured-pages__card {
        width: 100%
    }
}

.o-featured-pages__item-count--3 {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.o-featured-pages__item-count--3 .o-featured-pages__card {
    border: 1px solid transparent
}

@media(max-width:767.98px) {
    .o-featured-pages__item-count--3 .o-featured-pages__card {
        width: 100%
    }
}

.o-featured-pages__item-count--3 .o-featured-pages__card .o-featured-pages__card-img {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    max-height: 200px
}

.o-featured-pages__border .o-featured-pages__card {
    border: 1px solid var(--o-featured-pages-border-color)
}

.m-error-page {
    position: relative;
    display: block
}

.m-error-page__bg-img {
    position: relative;
    width: 100%;
    height: auto;
    min-height: var(--error-page-min-height)
}

.m-error-page__content {
    position: absolute;
    top: var(--error-page-sm-top)
}

@media(min-width:576px) {
    .m-error-page__content {
        top: var(--error-page-md-top)
    }
}

@media(min-width:992px) {
    .m-error-page__content {
        top: var(--error-page-lg-top)
    }
}

.error-editor {
    height: auto;
    min-height: var(--error-page-min-height)
}

.content-editor {
    width: 100%;
    left: 0
}

.a-indicator__dot,
.a-indicator__dot-light {
    width: var(--indicator-width);
    height: var(--indicator-height);
    border-radius: var(--indicator-border-radius);
    border: var(--indicator-border-width) solid var(--indicator-border-color);
    background-color: var(--indicator-dot);
    display: inline-block;
    margin: var(--indicator-dot-margin);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer
}

.a-indicator__dot:hover,
.a-indicator__dot-light:hover {
    background-color: var(--indicator-dot-hover-color)
}

.a-indicator--dark {
    background-color: var(--indicator-container-dark-bg)
}

.a-indicator__dot--active {
    background-color: var(--indicator-dot-active)
}

.a-indicator__dot--active:hover {
    background-color: var(--indicator-dot-active)
}

.a-indicator__dot-light {
    border-color: var(--indicator-light-dot)
}

.a-indicator__dot-light--active {
    background-color: var(--indicator-light-dot-active)
}

.a-indicator__dot-light--active:hover {
    background-color: var(--indicator-light-dot-active)
}

.o-dynamic-card-list {
    height: auto
}

.o-dynamic-card-list:before {
    background: 0
}

@media(max-width:767.98px) {
    .o-dynamic-card-list .dynamic-card-list-title h4 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1
    }
}

.o-dynamic-card-list .viewAll {
    width: --dynamic-card-list-viewAll-button-width
}

@media(min-width:576px) {
    .o-dynamic-card-list .viewAll {
        max-width: var(--dynamic-card-list-viewAll-button-max-width-sm-up)
    }
}

.o-dynamic-card-list .slick-initialized .slick-slide {
    width: var(--dynamic-card-list-slick-slide-max-width);
    margin-right: var(--dynamic-card-list-slick-slide-margin-right)
}

@media(max-width:767.98px) {
    .o-dynamic-card-list .slick-initialized .slick-slide {
        max-width: var(--dynamic-card-list-slick-slide-max-width-sm-down);
        margin-right: var(--dynamic-card-list-slick-slide-margin-right-sm-down)
    }
}

.o-dynamic-card-list .slick-initialized .pickUp {
    max-width: var(--dynamic-card-list-pickUp-max-width);
    cursor: pointer
}

.o-dynamic-card-list .slick-initialized .pickUp .m-card__body {
    height: var(--dynamic-card-list-pickUp-card-body-height)
}

.o-dynamic-card-list .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: auto;
    bottom: 10px;
    width: 100%;
    left: 0;
    padding: 0
}

.o-dynamic-card-list .slick-dots li {
    list-style-type: none;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0
}

.o-dynamic-card-list .slick-dots li button {
    width: var(--indicator-width);
    height: var(--indicator-height);
    border-radius: var(--indicator-border-radius);
    border: var(--indicator-border-width) solid var(--indicator-border-color);
    background-color: var(--indicator-dot);
    display: inline-block;
    margin: var(--indicator-dot-margin);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer;
    padding: 0
}

.o-dynamic-card-list .slick-dots li button:hover {
    background-color: var(--indicator-dot-hover-color)
}

.o-dynamic-card-list .slick-dots li button:before {
    content: none
}

.o-dynamic-card-list .slick-dots li.slick-active button {
    background-color: var(--indicator-dot-active)
}

.o-dynamic-card-list .slick-dots li.slick-active button:hover {
    background-color: var(--indicator-dot-active)
}

@media(min-width:576px) {
    .o-dynamic-card-list .slick-dots {
        display: none !important
    }
}

@media(max-width:767.98px) {
    .o-dynamic-card-list .slick-dots {
        padding-bottom: 2rem !important
    }
}

.o-dynamic-card-list .slick-slider {
    margin: 0 20px;
    padding-bottom: 30px
}

@media(max-width:1199.98px) {
    .o-dynamic-card-list .slick-slider {
        margin: 0
    }
}

.o-dynamic-card-list .slick-slide {
    height: auto;
    padding: 10px
}

.o-dynamic-card-list .slick-arrow {
    display: none !important
}

@media(max-width:767.98px) {
    .o-dynamic-card-list .slick-list {
        padding-bottom: 4rem
    }
}

.o-dynamic-card-list .m-card {
    --card-border-radius: 30px
}

.o-dynamic-card-list .m-card .logoOnImage {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1rem
}

.o-dynamic-card-list .m-card .cmp-image__image {
    border-bottom: 1px solid var(--dynamic-card-list-card-border-color)
}

@media(max-width:767.98px) {
    .o-dynamic-card-list .slick-list {
        padding-bottom: 4rem
    }

    .o-dynamic-card-list .slick-dots {
        padding-bottom: 2rem !important
    }
}

.o-dynamic-card-list--dark .slick-dots button {
    width: var(--indicator-width);
    height: var(--indicator-height);
    border-radius: var(--indicator-border-radius);
    border: var(--indicator-border-width) solid var(--indicator-border-color);
    background-color: var(--indicator-dot);
    display: inline-block;
    margin: var(--indicator-dot-margin);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer;
    border-color: var(--indicator-light-dot)
}

.o-dynamic-card-list--dark .slick-dots button:hover {
    background-color: var(--indicator-dot-hover-color)
}

.o-dynamic-card-list--dark .slick-dots .slick-active button {
    background-color: var(--indicator-light-dot-active)
}

.o-dynamic-card-list--dark .slick-dots .slick-active button:hover {
    background-color: var(--indicator-light-dot-active)
}

.o-dynamic-card-list--dark .slick-arrow:before {
    color: #fff
}

.o-dynamic-card-list[data-no-indicators="true"] {
    padding-bottom: 0
}

.o-dynamic-card-list--dots-start.o-dynamic-card-list .slick-dots {
    width: 50%;
    left: 0
}

.o-dynamic-card-list--dots-end.o-dynamic-card-list .slick-dots {
    width: 50%;
    left: 50%
}

.a-date-picker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.a-date-picker__input-hidden {
    visibility: hidden;
    position: absolute;
    top: var(--date-picker-position-spacer)
}

.a-date-picker .a-input-field {
    max-width: var(--date-input-field-width);
    position: relative
}

.a-date-picker .a-input-field--text-error {
    display: none
}

.a-date-picker .a-input-field--help-msg {
    width: 100%;
    max-width: 100%;
    margin-top: var(--date-input-help-msg-margin-t)
}

.a-date-picker .a-input-field .form-group.validation-error-msg .form-label {
    color: var(--date-input-field-error)
}

.a-date-picker .a-input-field .form-group.validation-error-msg .a-input-field--text-help {
    display: none
}

.a-date-picker .a-input-field .form-group.validation-error-msg .input-group .a-input-control {
    border-color: var(--date-input-field-error);
    color: var(--date-picker-date-text-color)
}

.a-date-picker .a-input-field .input-group .a-input-control~.default-icon {
    display: block;
    cursor: pointer
}

.a-date-picker .a-input-field .input-group .a-input-control~.focused-icon {
    display: none;
    cursor: pointer
}

.a-date-picker .a-input-field .input-group.active .a-input-control~.default-icon {
    display: none
}

.a-date-picker .a-input-field .input-group.active .a-input-control~.focused-icon {
    color: var(--date-picker-icon-selected-color);
    display: block
}

.a-date-picker .a-input-field .input-group.selected .default-icon {
    display: none
}

.a-date-picker .a-input-field .input-group.selected .focused-icon {
    display: block
}

.a-date-picker--error-format,
.a-date-picker--error-date,
.a-date-picker--error-range,
.a-date-picker--error-require {
    display: none
}

.a-date-picker--error {
    width: 100%
}

.a-date-picker--error.validation-error-msg .a-date-picker--error-format.show,
.a-date-picker--error.validation-error-msg .a-date-picker--error-date.show,
.a-date-picker--error.validation-error-msg .a-date-picker--error-range.show,
.a-date-picker--error.validation-error-msg .a-date-picker--error-required.show {
    display: block;
    font-size: var(--date-input-field-error-font-size);
    line-height: var(--date-input-field-error-line-height);
    color: var(--date-input-field-error);
    margin-top: var(--date-input-field-error-margin-t)
}

.a-date-picker .icon-right {
    font-size: var(--date-picker-icon-size)
}

.a-date-picker[data-type="range"] .a-input-field {
    margin-right: var(--date-input-field-margin-r);
    margin-bottom: 0
}

.a-date-picker[data-type="range"] .a-input-field--help-msg {
    margin-right: 0
}

.a-date-picker[data-type="range"] .a-date-picker--error {
    margin-bottom: var(--date-input-field-error-margin-b)
}

.litepicker .container__main {
    width: var(--date-picker-wrap-width);
    height: var(--date-picker-wrap-height)
}

.litepicker .container__days {
    overflow: hidden
}

.litepicker .container__days>div,
.litepicker .container__days>a {
    width: 2rem;
    height: 2rem;
    margin: var(--date-picker-days-margin)
}

.litepicker .container__days .day-item {
    border-radius: 50%
}

.litepicker .container__days .day-item:hover {
    -webkit-box-shadow: var(--date-picker-box-shadow);
    box-shadow: var(--date-picker-box-shadow);
    color: var(--date-picker-date-text-color)
}

.litepicker .container__days .day-item.is-today {
    background-color: var(--date-picker-current-date);
    border-radius: 50%;
    color: var(--date-picker-date-text-color)
}

.litepicker .container__days .day-item.is-start-date {
    background-color: var(--date-picker-select-color);
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    color: var(--date-picker-date-text-color)
}

.litepicker .container__days .day-item.is-start-date+.is-end-date {
    position: relative
}

.litepicker .container__days .day-item.is-start-date+.is-end-date:before {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    right: 100%;
    width: var(--date-picker-default-width);
    background-color: var(--date-picker-select-color)
}

.litepicker .container__days .day-item.is-end-date {
    background-color: var(--date-picker-select-color);
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    color: var(--date-picker-date-text-color)
}

.litepicker .container__days .day-item.is-end-date.is-flipped+.is-start-date {
    position: relative
}

.litepicker .container__days .day-item.is-end-date.is-flipped+.is-start-date:before {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    right: 100%;
    width: var(--date-picker-default-width);
    background-color: var(--date-picker-select-color)
}

.litepicker .container__days .day-item.is-in-range {
    background-color: var(--date-picker-select-color);
    border-radius: 0;
    position: relative
}

.litepicker .container__days .day-item.is-in-range:before {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    right: 100%;
    width: var(--date-picker-default-width);
    background-color: var(--date-picker-select-color)
}

.litepicker .container__days .day-item.is-in-range:after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    left: 100%;
    width: var(--date-picker-default-width);
    background-color: var(--date-picker-select-color)
}

.litepicker .container__days .day-item.is-start-date.is-end-date {
    background-color: var(--date-picker-select-color);
    border-radius: 50%;
    color: var(--date-picker-date-text-color)
}

.litepicker .container__months {
    width: var(--date-picker-wrap-width);
    height: var(--date-picker-wrap-height)
}

.litepicker .container__months .month-item {
    width: var(--date-picker-wrap-width);
    height: var(--date-picker-wrap-height)
}

.litepicker .container__months .month-item-weekdays-row>div {
    min-width: .9375rem;
    max-width: 3.25rem;
    font-size: var(--date-picker-weekday-font-size);
    line-height: var(--date-picker-weekday-line-height);
    color: var(--date-picker-weekday-font-color);
    text-transform: none;
    font-weight: normal
}

.litepicker .container__months .month-item-header>div {
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit
}

.litepicker .container__months .month-item-header .month-item-name,
.litepicker .container__months .month-item-header .month-item-year {
    border: 0;
    font-size: var(--date-picker-month-font-size);
    font-weight: bold;
    letter-spacing: 0;
    line-height: var(--date-picker-month-line-height)
}

.litepicker .container__months .month-item-header .button-previous-month svg,
.litepicker .container__months .month-item-header .button-next-month svg {
    fill: var(--date-picker-date-text-color) !important
}

.litepicker .container__months .month-item-header .button-previous-month {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    cursor: pointer;
    position: relative;
    left: var(--date-picker-position-spacer)
}

.litepicker .container__months .month-item-header .button-next-month {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    cursor: pointer
}

.datepicker-fullwidth .a-date-picker.a-date-picker--single .a-date-picker__input-start {
    width: var(--date-picker-field-full-width)
}

.datepicker-fullwidth .a-date-picker.a-date-picker--single .a-date-picker__input-start .a-input-field {
    width: var(--date-picker-field-full-width);
    max-width: var(--date-picker-field-full-width)
}

.datepicker-fullwidth .a-date-picker.a-date-picker--range .a-date-picker__input-start,
.datepicker-fullwidth .a-date-picker.a-date-picker--range .a-date-picker__input-end {
    width: 100%
}

@media(min-width:576px) {

    .datepicker-fullwidth .a-date-picker.a-date-picker--range .a-date-picker__input-start,
    .datepicker-fullwidth .a-date-picker.a-date-picker--range .a-date-picker__input-end {
        width: 50%
    }
}

.datepicker-fullwidth .a-date-picker.a-date-picker--range .a-date-picker__input-start .a-input-field,
.datepicker-fullwidth .a-date-picker.a-date-picker--range .a-date-picker__input-end .a-input-field {
    max-width: var(--date-picker-field-full-width);
    margin-right: 0
}

@media(min-width:576px) {

    .datepicker-fullwidth .a-date-picker.a-date-picker--range .a-date-picker__input-start .a-input-field,
    .datepicker-fullwidth .a-date-picker.a-date-picker--range .a-date-picker__input-end .a-input-field {
        margin-right: var(--date-input-field-margin-r)
    }
}

.datepicker-fullwidth .a-date-picker.a-date-picker--range .a-date-picker__input-end .a-input-field {
    margin-right: 0
}

.m-custom-table {
    width: var(--customtable-width);
    background-color: var(--customtable-bg-color);
    font-size: var(--customtable-font-size);
    color: var(--customtable-font-color)
}

.m-custom-table .table {
    color: var(--customtable-font-color)
}

.m-custom-table__header:has(.m-custom-table__search-bar, .m-custom-table__header-btn-download, .m-custom-table__header-btn-addnew, .m-custom-table__header-usergroup, .m-custom-table_drop-down__filter, .m-custom-table_drop-down__range, .m-custom-table__header-btn-reset) {
    background-color: var(--customtable-header-bg-color);
    padding: var(--customtable-header-padding-top) var(--customtable-header-padding-right) var(--customtable-header-padding-bottom) var(--customtable-header-padding-left);
    margin-bottom: var(--customtable-header-spacing-bottom)
}

.m-custom-table__header .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.m-custom-table__header>.row {
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media(min-width:992px) {
    .m-custom-table__header>.row {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}

.m-custom-table__header>.row .m-custom-table__search,
.m-custom-table__header>.row .m-custom-table__additional_headers>div {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.m-custom-table__header>.row .m-custom-table__additional_headers {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    padding: 0 .5rem
}

.m-custom-table__header>.row .m-custom-table__additional_headers>div {
    margin: 0 .5rem 0 1.5rem
}

@media(min-width:992px) {
    .m-custom-table__header>.row .m-custom-table__additional_headers>div:first-child {
        margin-left: 0
    }
}

@media(max-width:767.98px) {
    .m-custom-table__header>.row .m-custom-table__additional_headers>div {
        width: 100%;
        margin: var(--customtable-header-mobile-spacing)
    }
}

.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table_drop-down__filter {
    min-width: var(--customtable-filter-dropdown-min-width)
}

.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table_drop-down__filter .options .a-dropdown__title:has(.a-dropdown__title-text:empty) {
    display: none
}

.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table_drop-down__range {
    position: relative;
    min-width: 180px
}

.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table_drop-down__range--label {
    background: var(--dropdown-field-bg-color);
    border: var(--dropdown-field-border);
    border-radius: var(--dropdown-field-border-radius);
    cursor: pointer;
    line-height: var(--dropdown-field-line-height);
    min-height: var(--dropdown-field-height);
    padding: var(--dropdown-field-padding);
    position: relative;
    width: 100%
}

.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table_drop-down__range--label::after {
    content: "\e917";
    font-family: var(--dropdown-icon-font-family);
    left: auto;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%)
}

.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table_drop-down__range:has(.m-custom-table_drop-down__range--modal.d-none) .m-custom-table_drop-down__range--label::after {
    content: "\e907"
}

.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table_drop-down__range--modal {
    background-color: var(--dropdown-field-bg-color);
    border-radius: var(--dropdown-menu-border-radius);
    -webkit-box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.5);
    padding: 16px;
    position: absolute;
    z-index: 9
}

.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table_drop-down__range--modal .a-input-field {
    margin-right: 0
}

.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table_drop-down__range--modal .datepicker .a-input-field .form-group .a-input-grp.right-icon input.a-input-control {
    --input-field-right-icon-padding: .9375rem 3rem .8125rem .55rem
}

.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table_drop-down__range--modal .datepicker .a-date-picker__input-start .a-input-field,
.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table_drop-down__range--modal .a-date-picker .a-input-field--help-msg {
    margin-top: 0
}

.m-custom-table__header>.row .m-custom-table__additional_headers .m-custom-table__header-btn-reset .a-link:has(a.disabled) {
    cursor: auto
}

.m-custom-table__header-usergroup-text {
    color: var(--customtable-group-text-color);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: .6px;
    line-height: 20px;
    text-transform: uppercase
}

@media(max-width:767.98px) {
    .m-custom-table__header-usergroup-text {
        text-align: center
    }
}

.m-custom-table__header .form-group {
    margin-bottom: 0
}

.m-custom-table__header-btn-addnew .abt-icon,
.m-custom-table__header-btn-download .abt-icon {
    width: var(--customtable-btn-abt-icon-width);
    height: var(--customtable-btn-abt-icon-height)
}

.m-custom-table__header--select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 12px 0
}

.m-custom-table__header--select .a-checkbox {
    padding-left: 0;
    margin-bottom: 0;
    line-height: 1.3
}

.m-custom-table__header--select input:checked~.a-checkbox__custom {
    background-color: #2e3546;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #2e3546
}

.m-custom-table__header--select .a-checkbox--indeterminate input:checked~.a-checkbox__custom:after {
    height: 15px;
    top: 1px
}

.m-custom-table__header--select .a-checkbox--indeterminate-few input:checked~.a-checkbox__custom {
    background-color: var(--checkbox-indeterminate-checked-bg)
}

.m-custom-table__header--select .a-checkbox--indeterminate-few input:checked~.a-checkbox__custom:after {
    content: "\2212";
    background-color: var(--checkbox-indeterminate-checked-bg);
    -webkit-transform: initial;
    transform: initial;
    color: #2e3546;
    left: 5px;
    top: 0
}

.m-custom-table__header--select-btn {
    margin-left: 16px;
    cursor: pointer;
    color: #979aa3
}

.m-custom-table__header--select-btn.active {
    color: var(--primary-color)
}

.m-custom-table__search-bar {
    position: relative
}

@media(max-width:767.98px) {
    .m-custom-table__search-bar {
        margin-bottom: var(--customtable-header-mobile-spacing-bottom)
    }
}

.m-custom-table__search-bar__input {
    position: relative;
    width: 100%;
    margin-right: var(--customtable-searchbar-input-margin-right)
}

.m-custom-table__search-bar__input-field {
    border-radius: var(--customtable-searchbar-input-border-radius);
    height: var(--customtable-searchbar-input-height);
    font-size: var(--customtable-searchbar-input-font-size);
    line-height: var(--customtable-searchbar-input-line-height);
    color: var(--customtable-searchbar-input-color);
    text-transform: none;
    font-weight: normal;
    -webkit-box-shadow: var(--customtable-searchbar-box-shadow);
    box-shadow: var(--customtable-searchbar-box-shadow);
    background-color: var(--customtable-searchbar-input-bg-color);
    border: var(--customtable-searchbar-input-border);
    width: 100%;
    padding: var(--customtable-searchbar-input-padding);
    -webkit-appearance: textfield;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.m-custom-table__search-bar__input-field:focus {
    outline-offset: 0;
    border-color: var(--customtable-searchbar-input-focus-border-color);
    -webkit-box-shadow: none;
    box-shadow: none
}

.m-custom-table__search-bar__input-field::-webkit-search-decoration,
.m-custom-table__search-bar__input-field::-webkit-search-cancel-button,
.m-custom-table__search-bar__input-field::-webkit-search-results-button,
.m-custom-table__search-bar__input-field::-webkit-search-results-decoration {
    display: none
}

.m-custom-table__search-bar__input-field::-ms-clear,
.m-custom-table__search-bar__input-field::-ms-reveal {
    display: none;
    width: 0;
    height: 0
}

.m-custom-table__search-bar__close {
    display: none;
    cursor: pointer;
    position: absolute;
    z-index: 3;
    top: 50%;
    right: 11px;
    left: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

@media(max-width:767.98px) {
    .m-custom-table__search-bar__close {
        display: none !important
    }
}

.m-custom-table__search-bar__close .abt-icon {
    color: var(--customtable-searchbar-close-icon-color);
    font-size: var(--customtable-searchbar-close-icon-font-size)
}

.m-custom-table__search-bar__close .abt-icon::before {
    width: var(--customtable-searchbar-close-icon-width);
    height: var(--customtable-searchbar-close-icon-height)
}

.m-custom-table__search-bar__close.show {
    display: block
}

.m-custom-table__search-bar__close:hover {
    text-decoration: none
}

.m-custom-table__search-bar__icon {
    position: absolute;
    z-index: 3;
    top: 50%;
    right: auto;
    left: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: var(--customtable-searchbar-close-icon-width);
    height: var(--customtable-searchbar-close-icon-height)
}

.m-custom-table__search-bar__icon .abt-icon {
    font-size: var(--customtable-searchbar-search-icon-font-size)
}

.m-custom-table__search-bar__icon span {
    font-size: 0
}

.m-custom-table thead th {
    border: 0;
    padding-right: 2rem
}

.m-custom-table thead .sorting_asc,
.m-custom-table thead .sorting_desc {
    position: relative
}

.m-custom-table thead .sorting_asc::after,
.m-custom-table thead .sorting_desc::after {
    font-family: "Abbott-icon", sans-serif !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    right: .75rem;
    left: auto
}

.m-custom-table thead .sorting_desc::after {
    content: "\e907"
}

.m-custom-table thead .sorting_asc::after {
    content: "\e917"
}

.m-custom-table th {
    background-color: var(--customtable-th-bg-color);
    font-size: var(--customtable-heading-font-size)
}

.m-custom-table td {
    font-size: var(--customtable-font-size);
    border-color: var(--customtable-th-bg-color);
    padding-top: var(--customtable-padding-top);
    padding-bottom: var(--customtable-padding-bottom)
}

.m-custom-table td a[data-target]:hover,
.m-custom-table td a[data-target]:focus {
    text-decoration: none
}

.m-custom-table td a[data-target] span {
    display: none
}

.m-custom-table td:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-custom-table td:last-child .link {
    margin: 0 8px
}

.m-custom-table__table--action .a-link {
    font-size: 0
}

.m-custom-table__table--action .a-link__text {
    padding-left: 0
}

.m-custom-table__table--action .a-link__text .abt-icon {
    color: inherit;
    font-size: var(--customtable-icon-font-size)
}

.m-custom-table__table--action .a-link__text .abt-icon-edit {
    color: var(--customtable-edit-icon-color)
}

.m-custom-table__table--action .a-link__text .abt-icon-delete {
    color: var(--customtable-delete-icon-color)
}

.m-custom-table__table--action .a-link:hover {
    text-decoration: none
}

.m-custom-table tbody tr.selected>.select-checkbox::after {
    content: "";
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-clip-path: polygon(51.09% 70.71%, 66.5% 50.84%, 92.79% 16.92%, 80.99% 7.6%, 53.54% 42.33%, 26.08% 77.08%, 33.06% 70.71%, 13.14% 55.19%, 2.42% 67.85%, 20.96% 83.55%, 33.06% 93.96%);
    clip-path: polygon(51.09% 70.71%, 66.5% 50.84%, 92.79% 16.92%, 80.99% 7.6%, 53.54% 42.33%, 26.08% 77.08%, 33.06% 70.71%, 13.14% 55.19%, 2.42% 67.85%, 20.96% 83.55%, 33.06% 93.96%);
    background-color: #fff
}

.m-custom-table tbody tr.selected>.select-checkbox::before {
    background-color: #2e3546
}

.m-custom-table tbody td.select-checkbox {
    position: relative
}

.m-custom-table tbody td.select-checkbox::before {
    content: "";
    border: 1px solid #2e3546;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto
}

.dataTables_wrapper .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline
}

@media(max-width:767.98px) {
    .dataTables_wrapper .bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.dataTables_wrapper .bottom .dataTables_length label {
    color: var(--customtable-label-color)
}

.dataTables_wrapper .bottom .dataTables_length label select {
    margin: 0 5px;
    border-radius: 4px;
    border: 0;
    outline: 0;
    background-color: var(--customtable-bg-color);
    -webkit-box-shadow: 0 1px 2px 1px #0000001f;
    box-shadow: 0 1px 2px 1px #0000001f;
    color: var(--customtable-pagination-link-color);
    font-size: 1rem;
    line-height: 17px;
    padding: 10px;
    width: 75px
}

.dataTables_wrapper .dataTables_paginate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 0 !important;
    border: 1px solid var(--customtable-pagination-border-color);
    border-radius: 5px
}

@media(max-width:767.98px) {
    .dataTables_wrapper .dataTables_paginate {
        margin-right: auto !important
    }
}

.dataTables_wrapper .dataTables_paginate ul.pagination {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.dataTables_wrapper .dataTables_paginate ul.pagination li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-bottom: 2px solid transparent
}

.dataTables_wrapper .dataTables_paginate ul.pagination li a {
    display: block;
    padding: 8px 12px;
    color: var(--customtable-pagination-link-color)
}

.dataTables_wrapper .dataTables_paginate ul.pagination li a:active,
.dataTables_wrapper .dataTables_paginate ul.pagination li a:focus,
.dataTables_wrapper .dataTables_paginate ul.pagination li a:hover {
    text-decoration: none
}

.dataTables_wrapper .dataTables_paginate ul.pagination li a .abt-icon {
    font-size: 12px;
    font-weight: bold
}

.dataTables_wrapper .dataTables_paginate ul.pagination li:hover {
    background-color: var(--customtable-yellow-color);
    font-weight: bold;
    border-color: var(--customtable-yellow-color)
}

.dataTables_wrapper .dataTables_paginate ul.pagination li.active {
    background: transparent;
    border-color: var(--customtable-pagination-link-color);
    font-weight: normal;
    border-top: 0
}

.container .ctasection {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0
}

.container-full-width .ctasection {
    max-width: 960px;
    margin: 0 auto
}

.ctasection .o-cta-section__content p {
    color: var(--cta-section--description-default);
    margin-bottom: 24px
}

.ctasection .o-cta-section__title h3 {
    color: var(--cta-section--description-default)
}

.ctasection .o-cta-section__sub-title h4 {
    color: var(--cta-section--description-default)
}

.ctasection .o-cta-section__button-wrap .a-button {
    margin: 0 8px 0 0
}

.ctasection .o-cta-section__button-wrap .a-button a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0
}

@media(max-width:767.98px) {
    .ctasection .o-cta-section__content p {
        color: var(--cta-section--description-default);
        margin-bottom: 33px
    }

    .ctasection .o-cta-section__button-wrap .a-button {
        margin: 8px 0 0 0
    }

    .ctasection .o-cta-section__button-wrap .a-button a {
        margin-top: 0;
        margin-bottom: 0
    }
}

.o-cta-section__content {
    font-size: var(--cta-section-para-font-size);
    line-height: var(--cta-section-para-line-height);
    color: var(--cta-section-para-color)
}

.o-cta-section__title,
.o-cta-section__sub-title {
    margin-bottom: var(--cta-section-title-margin-bottom)
}

.o-cta-section__title h4,
.o-cta-section__sub-title h4 {
    color: var(--cta-section--description-default)
}

.o-cta-section__button-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%
}

.o-cta-section__button-wrap .a-button {
    margin: var(--cta-section-button-margin-r)
}

@media(max-width:991.98px) {
    .o-cta-section__button-wrap {
        padding-top: var(--cta-section-button-wrap-padding-t)
    }
}

@media(max-width:767.98px) {
    .o-cta-section__button-wrap {
        display: block
    }

    .o-cta-section__button-wrap .a-button {
        margin: var(--cta-section-button-margin-mob);
        display: block
    }

    .o-cta-section__button-wrap .a-button .a-button {
        display: block
    }
}

.o-cta-section--top-space {
    margin-top: 48px
}

.o-cta-section--bottom-space {
    margin-bottom: 48px
}

.o-cta-section--m-none {
    margin-top: 0;
    margin-bottom: 0
}

@media(max-width:767.98px) {
    .o-cta-section .container {
        padding: 0
    }
}

.o-cta-section--button-bottom .o-cta-section__button-wrap {
    padding-top: var(--cta-section-button-wrap-padding-t)
}

.o-cta-section--button-bottom .o-cta-section__column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.o-cta-section--button-right .o-cta-section__button-wrap {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.o-cta-section--titlecolor-default .o-cta-section__title p,
.o-cta-section--titlecolor-default .o-cta-section__title h3 {
    color: var(--cta-section--titlecolor-default)
}

.o-cta-section--titlecolor-reversed .o-cta-section__title p,
.o-cta-section--titlecolor-reversed .o-cta-section__title h3 {
    color: var(--cta-section--titlecolor-reversed)
}

.o-cta-section--titlecolor-primary .o-cta-section__title p,
.o-cta-section--titlecolor-primary .o-cta-section__title h3 {
    color: var(--cta-section--titlecolor-primary)
}

.o-cta-section--titlecolor-alternate .o-cta-section__title p,
.o-cta-section--titlecolor-alternate .o-cta-section__title h3 {
    color: var(--cta-section--titlecolor-alternate)
}

.o-cta-section--subtitle-default .o-cta-section__sub-title p,
.o-cta-section--subtitle-default .o-cta-section__sub-title h4 {
    color: var(--cta-section--subtitle-default)
}

.o-cta-section--subtitle-reversed .o-cta-section__sub-title p,
.o-cta-section--subtitle-reversed .o-cta-section__sub-title h4 {
    color: var(--cta-section--subtitle-reversed)
}

.o-cta-section--subtitle-primary .o-cta-section__sub-title p,
.o-cta-section--subtitle-primary .o-cta-section__sub-title h4 {
    color: var(--cta-section--subtitle-primary)
}

.o-cta-section--subtitle-alternate .o-cta-section__sub-title p,
.o-cta-section--subtitle-alternate .o-cta-section__sub-title h4 {
    color: var(--cta-section--subtitle-alternate)
}

.o-cta-section--description-default .o-cta-section__description p,
.o-cta-section--description-default .o-cta-section__description h1,
.o-cta-section--description-default .o-cta-section__description h2,
.o-cta-section--description-default .o-cta-section__description h3,
.o-cta-section--description-default .o-cta-section__description h4,
.o-cta-section--description-default .o-cta-section__description h5,
.o-cta-section--description-default .o-cta-section__description h6,
.o-cta-section--description-default .o-cta-section__description pre,
.o-cta-section--description-default .o-cta-section__description blockquote {
    color: var(--cta-section--description-default)
}

.o-cta-section--description-reversed .o-cta-section__description p,
.o-cta-section--description-reversed .o-cta-section__description h1,
.o-cta-section--description-reversed .o-cta-section__description h2,
.o-cta-section--description-reversed .o-cta-section__description h3,
.o-cta-section--description-reversed .o-cta-section__description h4,
.o-cta-section--description-reversed .o-cta-section__description h5,
.o-cta-section--description-reversed .o-cta-section__description h6,
.o-cta-section--description-reversed .o-cta-section__description pre,
.o-cta-section--description-reversed .o-cta-section__description blockquote {
    color: var(--cta-section--description-reversed)
}

.o-cta-section--description-primary .o-cta-section__description p,
.o-cta-section--description-primary .o-cta-section__description h1,
.o-cta-section--description-primary .o-cta-section__description h2,
.o-cta-section--description-primary .o-cta-section__description h3,
.o-cta-section--description-primary .o-cta-section__description h4,
.o-cta-section--description-primary .o-cta-section__description h5,
.o-cta-section--description-primary .o-cta-section__description h6,
.o-cta-section--description-primary .o-cta-section__description pre,
.o-cta-section--description-primary .o-cta-section__description blockquote {
    color: var(--cta-section--description-primary)
}

.o-cta-section--description-alternate .o-cta-section__description p,
.o-cta-section--description-alternate .o-cta-section__description h1,
.o-cta-section--description-alternate .o-cta-section__description h2,
.o-cta-section--description-alternate .o-cta-section__description h3,
.o-cta-section--description-alternate .o-cta-section__description h4,
.o-cta-section--description-alternate .o-cta-section__description h5,
.o-cta-section--description-alternate .o-cta-section__description h6,
.o-cta-section--description-alternate .o-cta-section__description pre,
.o-cta-section--description-alternate .o-cta-section__description blockquote {
    color: var(--cta-section--description-alternate)
}

@media(min-width:992px) {
    .o-cta-section--button-bottom.cta-large .o-cta-section--alertbanner-large {
        width: 50%;
        margin-left: 0;
        margin-right: 0
    }

    .o-cta-section--button-bottom.cta-medium .o-cta-section--alertbanner-medium {
        width: 66%;
        margin-left: 0;
        margin-right: 0
    }

    .o-cta-section--button-bottom.cta-small .o-cta-section--alertbanner-small {
        width: 75%;
        margin-left: 0;
        margin-right: 0
    }
}

.ctasection.responsivegrid.container.o-cta-section--padding-none {
    padding-top: 0;
    padding-bottom: 0
}

@media(max-width:767.98px) {
    .container .ctasection {
        padding-left: 15px;
        margin-left: 0;
        margin-right: 0
    }
}

.a-counter {
    background: var(--counter-bg);
    display: inline-block;
    border-radius: var(--counter-border-radius);
    padding: var(--counter-padding);
    text-align: center
}

.a-counter--number {
    font-size: var(--counter-font-size);
    line-height: var(--counter-line-height);
    color: var(--counter-color);
    text-transform: none;
    font-weight: normal;
    letter-spacing: normal;
    padding: var(--counter-number-padding);
    display: inline-block
}

.m-cookiebar {
    border-radius: var(--cookie-bar-border-radius);
    padding: var(--cookie-bar-padding);
    background-color: var(--cookie-bar-bg);
    -webkit-transition: var(--cookie-bar-transition);
    transition: var(--cookie-bar-transition);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999
}

.m-cookiebar.hide {
    bottom: -100%
}

@media(max-width:767.98px) {
    .m-cookiebar .a-button>.btn {
        padding-left: 0;
        padding-right: 0
    }
}

.m-cookiebar__text p {
    font-size: var(--cookies-para-font-size);
    line-height: var(--cookies-para-line-height);
    color: var(--cookies-para-color);
    text-transform: none;
    font-weight: normal;
    margin-right: var(--cookie-bar-text-margin-right);
    margin-bottom: 0
}

.m-cookiebar__text .a-link__text {
    font-size: var(--cookie-link-font-size);
    line-height: inherit;
    color: inherit;
    text-transform: inherit;
    font-weight: bold
}

@media(max-width:767.98px) {
    .m-cookiebar__text {
        padding-left: 0
    }
}

@media(max-width:767.98px) {
    .m-cookiebar__btn {
        padding-right: 0
    }
}

.m-cookiebar__divider {
    border-left: 1px solid var(--cookie-divider);
    height: 100%;
    margin-left: 0
}

@media(min-width:992px) {
    .m-cookiebar__divider {
        margin-left: var(--cookie-divider-margin-left-lg);
        margin-right: var(--cookie-divider-margin-right-lg)
    }
}

.m-cookiebar__country-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

@media(max-width:767.98px) {
    .m-cookiebar__country-select span {
        margin-right: var(--cookie-bar-text-margin-right)
    }
}

.m-cookiebar__country-select .m-link-stack__link {
    width: auto
}

.m-cookiebar__country-select .m-link-stack__link .a-link {
    margin-left: 0
}

.m-cookiebar__country-select .m-link-stack__link .a-link__text,
.m-cookiebar__country-select .m-link-stack__link .a-link a {
    font-size: var(--cookie-bar-link-font-size);
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-left: 0
}

.m-cookiebar__country-select .m-link-stack__container .a-link__text,
.m-cookiebar__country-select .m-link-stack__container span {
    font-size: var(--cookie-bar-link-font-size)
}

.m-cookiebar__country-select .m-link-stack__dropdown-wrapper {
    background-color: var(--cookie-bar-dropdown-bg-color);
    position: absolute;
    top: auto;
    left: -6.9rem;
    bottom: 2rem
}

@media(max-width:991.98px) {
    .m-cookiebar__country-select .m-link-stack__dropdown-wrapper {
        left: -5rem
    }
}

@media(max-width:767.98px) {
    .m-cookiebar__country-select .m-link-stack__dropdown-wrapper {
        left: -2rem
    }
}

.m-cookiebar__country-select .m-link-stack__dropdown-wrapper:before {
    border-color: var(--cookie-bar-dropdown-border-color) var(--cookie-bar-dropdown-border-color) transparent transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    top: 97%
}

@media(max-width:767.98px) {
    .m-cookiebar__country-select {
        margin-top: var(--cookie-bar-text-margin-top);
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-left: 0
    }
}

.m-cookiebar__country-select-label {
    font-size: var(--cookies-para-font-size);
    line-height: var(--cookies-para-line-height);
    color: var(--cookies-para-color);
    text-transform: none;
    font-weight: normal
}

@media(max-width:575.98px) {
    .o-content-section__container {
        margin: 0
    }
}

.o-content-section__title {
    padding: var(--content-spacing-xl) 0;
    word-break: break-word
}

.o-content-section__tab-content p,
.o-content-section__tab-content ul,
.o-content-section__tab-content ol {
    color: var(--content-para-color);
    font-weight: normal;
    margin-bottom: var(--content-spacing-xl)
}

.o-content-section__tab-content img {
    max-width: 100%;
    margin-bottom: var(--content-spacing-xl)
}

.o-content-section__tab-pane {
    color: var(--content-para-color);
    font-weight: normal
}

.o-content-section__tab-pane--edit {
    border: 2px solid rgba(128, 128, 128, 0.5);
    margin-bottom: var(--content-spacing-l)
}

.o-content-section__heading {
    margin-bottom: var(--content-spacing-xl)
}

.o-content-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 0;
    display: block
}

.o-content-section__list-item {
    font-size: var(--content-list-font-size);
    line-height: var(--content-list-line-height);
    padding: var(--content-spacing-m) 0;
    margin: 0
}

.o-content-section__list-item-link {
    color: var(--content-list-color)
}

.o-content-section__list-item-link:hover {
    text-decoration: underline;
    font-weight: bold;
    color: var(--content-list-color-active)
}

.o-content-section__list-item-link--active {
    font-weight: bold;
    color: var(--content-list-color-active)
}

.o-content-section__list .active {
    font-weight: bold;
    color: var(--content-list-color-active)
}

.o-content-section__nav-mobile {
    display: none;
    margin-bottom: var(--content-spacing-xl)
}

.o-content-section__nav-mobile .o-content-section__list-item {
    padding: 0
}

.o-content-section__nav-mobile .o-content-section__list-item-link {
    padding: 15px;
    display: block
}

.o-content-section__nav-mobile .o-content-section__list-item-link:hover {
    text-decoration: none
}

.compliancenumber .cmp-text p {
    color: var(--compliancenumber-text-color);
    font-family: var(--compliancenumber-text-font);
    letter-spacing: normal;
    font-size: 13px;
    line-height: 16px;
    margin: 0;
    text-align: right;
    padding: 25px 0
}

.columncontrol .column-divider {
    margin-bottom: 10px
}

.columncontrol .column-divider::after {
    content: "";
    width: 100px;
    height: 0;
    border-bottom: var(--column-border-normal);
    left: 50%;
    right: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
}

.columncontrol .column-divider:last-child::after {
    display: none
}

@media(min-width:768px) {
    .columncontrol .column-divider {
        margin-bottom: 0
    }

    .columncontrol .column-divider::after {
        width: 0;
        height: 80px;
        border-right: var(--column-border-light);
        left: auto;
        top: 50%;
        bottom: 50%;
        right: 0;
        margin-top: 0;
        margin-bottom: 0
    }

    .columncontrol .column-divider:nth-child(2n + 2)::after {
        display: none
    }

    .columncontrol .column-divider:last-child::after {
        display: none
    }
}

@media(min-width:992px) {
    .columncontrol .column-divider:nth-child(2n + 2)::after {
        display: block
    }

    .columncontrol .column-divider:last-child::after {
        display: none
    }
}

.columncontrol-full-width.container,
.columncontrol-full-width .container {
    max-width: 100%
}

.columncontrol.column-align--left .row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.columncontrol.column-align--right .row {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.columncontrol.column-align--center .row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.columncontrol.column-align--space-around .row {
    -ms-flex-pack: distribute;
    justify-content: space-around
}

.columncontrol.column-align--space-between .row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.columncontrol.column-align--space-evenly .row {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.m-cards-tab__nav {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly
}

.m-cards-tab__nav-item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid var(--cards-tab-border-color);
    -webkit-box-shadow: 0 0 4px 0 #d4d4d4;
    box-shadow: 0 0 4px 0 #d4d4d4;
    border-radius: 8px;
    background: #fff;
    margin: 0 .9375rem;
    padding: 1rem;
    width: 150px !important;
    max-width: 150px;
    min-height: 150px
}

@media only screen and (max-width:374px) {
    .m-cards-tab__nav-item {
        width: 125px !important
    }
}

.m-cards-tab__nav-text {
    font-size: 1rem;
    line-height: 1.5rem;
    display: block;
    color: var(--cards-tab-text-color);
    text-align: center
}

.m-cards-tab__nav-item:hover,
.m-cards-tab__nav-item:active {
    text-decoration: none
}

.m-cards-tab__nav-item:hover .m-cards-tab__nav-text,
.m-cards-tab__nav-item:active .m-cards-tab__nav-text {
    font-weight: bold;
    color: var(--cards-tab-nav-item-text-color)
}

.m-cards-tab__nav .active.m-cards-tab__nav-item {
    border-color: var(--cards-tab-border-color-active)
}

.m-cards-tab__nav .active .m-cards-tab__nav-text {
    font-weight: bold;
    color: var(--cards-tab-text-color-active)
}

.m-cards-tab__nav .active .m-cards-tab__icon {
    color: var(--cards-tab-icon-color-active)
}

.m-cards-tab__nav .active .m-cards-tab__icon-active {
    display: block
}

.m-cards-tab__nav .active .m-cards-tab__icon-inactive {
    display: none
}

.m-cards-tab__nav .active .m-cards-tab__image img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1
}

.m-cards-tab__icon {
    display: none;
    color: var(--cards-tab-icon-color);
    margin: .5rem auto 1rem
}

.m-cards-tab__icon .abt-icon {
    font-size: var(--cards-tab-icon-size-sm)
}

.m-cards-tab__icon-inactive {
    display: block
}

.m-cards-tab__image img {
    margin: .5rem auto 1rem;
    height: 60px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .7
}

.m-cards-tab [data-js-component="cards-tab"] .slick-list {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important
}

.m-cards-tab [data-js-component="cards-tab"] .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    height: 20px;
    width: 20px;
    padding: 0
}

@media(max-width:1199.98px) {
    .m-cards-tab [data-js-component="cards-tab"] .slick-arrow {
        display: none !important
    }
}

.m-cards-tab [data-js-component="cards-tab"] .slick-arrow.slick-disabled {
    opacity: .2
}

.m-cards-tab [data-js-component="cards-tab"] .slick-prev {
    left: -25px
}

.m-cards-tab [data-js-component="cards-tab"] .slick-next {
    right: -25px
}

.m-cards-tab [data-js-component="cards-tab"] .slick-dots {
    font-size: 0;
    line-height: 0;
    margin: 0
}

@media(min-width:1200px) {
    .m-cards-tab--large .m-cards-tab__nav-item {
        width: 256px !important;
        max-width: 256px;
        min-height: 256px
    }
}

@media(min-width:992px) {
    .m-cards-tab--large .m-cards-tab__nav-text {
        font-size: 1.5rem;
        line-height: 2rem
    }
}

@media(min-width:1200px) {

    .m-cards-tab--large .m-cards-tab__icon,
    .m-cards-tab--large .m-cards-tab__image img {
        height: var(--cards-tab-icon-size-xl);
        margin: 1.5rem auto
    }

    .m-cards-tab--large .m-cards-tab__icon .abt-icon,
    .m-cards-tab--large .m-cards-tab__image img .abt-icon {
        font-size: var(--cards-tab-icon-size-xl)
    }
}

@media(min-width:1200px) {
    .m-cards-tab--small .m-cards-tab__nav-item {
        width: 160px !important;
        max-width: 160px;
        min-height: 210px
    }
}

@media(min-width:992px) {
    .m-cards-tab--small .m-cards-tab__nav-text {
        font-size: 1.125rem
    }
}

@media(min-width:1200px) {

    .m-cards-tab--small .m-cards-tab__icon,
    .m-cards-tab--small .m-cards-tab__image img {
        height: var(--cards-tab-icon-size-md);
        margin: .5rem auto 1.5rem
    }

    .m-cards-tab--small .m-cards-tab__icon .abt-icon,
    .m-cards-tab--small .m-cards-tab__image img .abt-icon {
        font-size: var(--cards-tab-icon-size-md)
    }
}

.m-cards-tab--full-width {
    max-width: 100%
}

.m-cards-tab--full-width .slick-slider {
    padding-bottom: 1.25rem
}

@media(min-width:1200px) {
    .m-cards-tab--full-width .slick-slider {
        margin: 0 1.25rem
    }
}

.m-cards-tab--full-width .slick-prev {
    left: -20px
}

.m-cards-tab--full-width .slick-next {
    right: -20px
}

.a-indicator__dot,
.o-cards-carousel .slick-dots li button,
.a-indicator__dot-light,
.o-cards-carousel--dark .slick-dots button {
    width: var(--indicator-width);
    height: var(--indicator-height);
    border-radius: var(--indicator-border-radius);
    border: var(--indicator-border-width) solid var(--indicator-border-color);
    background-color: var(--indicator-dot);
    display: inline-block;
    margin: var(--indicator-dot-margin);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer
}

.a-indicator__dot:hover,
.o-cards-carousel .slick-dots li button:hover,
.a-indicator__dot-light:hover,
.o-cards-carousel--dark .slick-dots button:hover {
    background-color: var(--indicator-dot-hover-color)
}

.a-indicator--dark {
    background-color: var(--indicator-container-dark-bg)
}

.a-indicator__dot--active,
.o-cards-carousel .slick-dots li.slick-active button {
    background-color: var(--indicator-dot-active)
}

.a-indicator__dot--active:hover,
.o-cards-carousel .slick-dots li.slick-active button:hover {
    background-color: var(--indicator-dot-active)
}

.a-indicator__dot-light,
.o-cards-carousel--dark .slick-dots button {
    border-color: var(--indicator-light-dot)
}

.a-indicator__dot-light--active,
.o-cards-carousel--dark .slick-dots .slick-active button {
    background-color: var(--indicator-light-dot-active)
}

.a-indicator__dot-light--active:hover,
.o-cards-carousel--dark .slick-dots .slick-active button:hover {
    background-color: var(--indicator-light-dot-active)
}

.o-cards-carousel {
    height: auto
}

.o-cards-carousel .slick-slider {
    margin: 0 20px;
    padding-bottom: 30px
}

.o-cards-carousel .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.o-cards-carousel .slick-slide>div {
    height: 100%
}

.o-cards-carousel[data-no-indicators="true"] {
    padding-bottom: 0
}

.o-cards-carousel--dots-start.o-cards-carousel .slick-dots {
    width: 50%;
    left: 0
}

.o-cards-carousel--dots-end.o-cards-carousel .slick-dots {
    width: 50%;
    left: 50%
}

.o-cards-carousel--arrows-start .slick-prev {
    left: 10px;
    bottom: -5px;
    top: auto;
    right: auto
}

.o-cards-carousel--arrows-start .slick-next {
    left: 40px;
    bottom: -5px;
    top: auto;
    right: auto
}

.o-cards-carousel--arrows-end .slick-prev {
    left: auto;
    bottom: -5px;
    top: auto;
    right: 40px
}

.o-cards-carousel--arrows-end .slick-next {
    left: auto;
    bottom: -5px;
    top: auto;
    right: 10px
}

.o-cards-carousel--dark .slick-arrow:before {
    color: #fff
}

.o-cards-carousel .slick-arrow {
    z-index: 98
}

.o-cards-carousel .m-card {
    width: 100% !important
}

@media(max-width:991.98px) {
    .o-cards-carousel .slick-arrow {
        display: none !important
    }

    .o-cards-carousel .slick-slider {
        margin: 0
    }
}

.o-cards-carousel .slick-slide {
    height: auto;
    padding: 10px
}

.o-cards-carousel .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: auto;
    bottom: 10px;
    width: 100%;
    left: 0;
    padding: 0
}

.o-cards-carousel .slick-dots li {
    list-style-type: none;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0
}

.o-cards-carousel .slick-dots li button {
    padding: 0
}

.o-cards-carousel .slick-dots li button:before {
    content: none
}

@media(min-width:992px) {
    .a-breadcrumb {
        margin-left: -15px
    }
}

@media(max-width:991.98px) {
    .a-breadcrumb {
        margin-left: 7px
    }
}

.a-breadcrumb__list {
    font-size: var(--breadcrumb-font-size);
    font-family: var(--breadcrumb-font-family);
    line-height: var(--breadcrumb-line-height);
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
    list-style: none;
    padding: 0
}

.a-breadcrumb--active {
    color: var(--breadcrumb-color);
    font-weight: normal
}

.a-breadcrumb__item+.a-breadcrumb__item {
    padding-left: var(--breadcrumb-padding-left)
}

.a-breadcrumb__item+.a-breadcrumb__item::before {
    font-size: var(--breadcrumb-font-size);
    font-family: var(--breadcrumb-font-family);
    line-height: var(--breadcrumb-line-height);
    font-weight: normal;
    padding: var(--breadcrumb-padding);
    color: var(--breadcrumb-color);
    content: "/"
}

.a-backtotop {
    opacity: 0;
    position: fixed;
    bottom: var(--backtotop-button-bottom);
    right: var(--backtotop-button-horizontal-position);
    z-index: var(--backtotop-zindex)
}

.a-backtotop.show {
    opacity: 1;
    visibility: visible;
    cursor: pointer
}

.a-backtotop-wrapper {
    padding: var(--backtotop-padding-sm);
    text-transform: uppercase
}

.a-backtotop-wrapper .abt-icon {
    display: contents !important;
    font-weight: 600
}

.a-backtotop-wrapper span {
    padding-left: 5px
}

@media(max-width:767.98px) {
    .a-backtotop-wrapper span.hide-till-sm {
        display: none
    }
}

@media(min-width:768px) {
    .a-backtotop-wrapper .abt-icon.hide-from-sm {
        display: none !important
    }
}

.a-backtotop[data-btn-position="left"] {
    right: auto;
    left: var(--backtotop-button-horizontal-position)
}

@media(max-width:767.98px) {
    .a-backtotop[data-only-icon-mobile="true"] .abt-icon {
        font-size: var(--backtotop-icon-size-lg) !important
    }

    .a-backtotop[data-only-icon-mobile="true"] .btn {
        min-width: var(--backtotop-icon--min-width);
        min-height: var(--backtotop-icon--min-height);
        padding: var(--backtotop-icon-only-padding)
    }
}

.a-backtotop[data-btn-type="iconOnly"] .abt-icon {
    font-size: var(--backtotop-icon-size-lg) !important
}

.a-backtotop[data-btn-type="iconOnly"] .btn {
    min-width: var(--backtotop-icon--min-width);
    min-height: var(--backtotop-icon--min-height);
    padding: var(--backtotop-icon-only-padding)
}

.a-backtotop--secondary .btn,
.a-backtotop--secondary .btn:hover,
.a-backtotop--secondary .btn:focus,
.a-backtotop--secondary .btn:active {
    background-color: var(--backtotop-secondary-bg);
    color: var(--backtotop-secondary-color);
    border: 0
}

.a-backtotop--secondary .btn:hover,
.a-backtotop--secondary .btn:focus,
.a-backtotop--secondary .btn:active {
    -webkit-box-shadow: none;
    box-shadow: none
}

.a-backtotop--secondary .btn:hover .abt-icon:before,
.a-backtotop--secondary .btn:focus .abt-icon:before,
.a-backtotop--secondary .btn:active .abt-icon:before {
    color: var(--backtotop-secondary-color)
}

.a-backtotop--primary .btn,
.a-backtotop--primary .btn:hover,
.a-backtotop--primary .btn:focus,
.a-backtotop--primary .btn:active {
    background-color: var(--backtotop-primary-bg);
    color: var(--backtotop-primary-color);
    border: 0
}

.a-backtotop--primary .btn:hover,
.a-backtotop--primary .btn:focus,
.a-backtotop--primary .btn:active {
    -webkit-box-shadow: none;
    box-shadow: none
}

.a-backtotop--primary .btn:hover .abt-icon:before,
.a-backtotop--primary .btn:focus .abt-icon:before,
.a-backtotop--primary .btn:active .abt-icon:before {
    color: var(--backtotop-primary-color)
}

.assetsgallery .carousel img {
    width: 100%
}

.assetsgallery .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 44px;
    z-index: 11;
    margin: auto;
    background: rgba(255, 255, 255, 0.33);
    border: 0;
    outline: 0;
    border-radius: 50%;
    width: 44px
}

.assetsgallery .slick-arrow:focus {
    outline: 2px solid #000
}

.assetsgallery .slick-prev.slick-arrow {
    left: 30px;
    right: auto
}

.assetsgallery .slick-next.slick-arrow {
    right: 30px;
    left: auto
}

.assetsgallery .product-thumbnail-wrapper {
    display: none
}

.assetsgallery .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.assetsgallery .slick-slide {
    height: auto
}

.assetsgallery .slick-slide div {
    height: 100% !important;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 600px
}

.assetsgallery .slick-slide div img {
    height: 100% !important;
    -o-object-fit: contain;
    object-fit: contain
}

.assetsgallery .slick-dots {
    list-style: none;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.assetsgallery .slick-dots li {
    margin-right: 8px;
    width: 65px;
    height: 55px;
    background-size: cover;
    background-position: center;
    cursor: pointer
}

.assetsgallery .slick-dots li:focus {
    border: 2px solid #000
}

.assetsgallery .slick-dots li:last-child {
    margin-right: 0
}

.assetsgallery .slick-dots li.wistia-video__has-image:after {
    width: 25px;
    height: 25px;
    background-size: 120px
}

.assetsgallery .slick-dots li button {
    display: none
}

.assetsgallery .slick-dots li.slick-active {
    border: 1px solid #63666a
}

.assetsgallery-left-thumb .slick-dots {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    overflow-y: auto
}

.assetsgallery-left-thumb .slick-dots li {
    margin-bottom: 8px
}

.assetsgallery-left-thumb .slick-dots li:last-child {
    margin-bottom: 0
}

.assetsgallery-left-thumb .slick-list {
    margin-left: 70px
}

.assetsgallery-left-thumb .slick-prev.slick-arrow {
    left: 100px
}

.assetsgallery-right-thumb .slick-dots {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    overflow-y: auto
}

.assetsgallery-right-thumb .slick-dots li {
    margin-right: 0;
    margin-bottom: 8px
}

.assetsgallery-right-thumb .slick-dots li:last-child {
    margin-bottom: 0
}

.assetsgallery-right-thumb .slick-list {
    margin-right: 70px
}

.assetsgallery-right-thumb .slick-next.slick-arrow {
    right: 100px
}

.assetsgallery .wistia-video__has-image {
    position: relative
}

.assetsgallery .wistia-video__has-image:after {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../../abbott-platform/clientlibs/clientlib-site/resources/images/play-button-12043.svg);
    content: "";
    width: 56px;
    height: 56px;
    background-position: center;
    margin: auto;
    background-size: 285px
}

.assetsgallery-bottom-thumb .slick-dots {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin-top: 8px
}

.assetsgallery-bottom-thumb .slick-dots li {
    display: inline-block
}

.assetsgallery-bottom-thumb .slick-arrow {
    -webkit-transform: translateY(-75%);
    transform: translateY(-75%)
}

.assetsgallery-bottom-thumb .slick-arrow.abt-icon-left-arrow:before {
    font-size: 22px;
    width: 12.5px;
    height: 24px;
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
    float: left
}

.assetsgallery-bottom-thumb .slick-arrow.abt-icon-right-arrow:before {
    font-size: 22px;
    width: 12.5px;
    height: 24px;
    -webkit-transform: translateX(-18px);
    transform: translateX(-18px);
    float: right
}

.m-article-list {
    --article-list-background: #fff;
    --article-list-text-color: #000;
    --article-list-nav-color: #888;
    --article-list-nav-active-color: #001489;
    --article-list-nav-margin-right-mb: -0.9375rem;
    --article-list-nav-top-mb: 70px;
    --article-list-nav-top-tablet: 78px;
    --article-list-nav-top: 92px;
    --article-list-nav-padding-right-mb: .9375rem;
    --article-list-nav-list-padding-bottom: 3px;
    --article-list-nav-item-font-size: .875rem;
    --article-list-nav-item-line-height: 1.25rem;
    --article-list-nav-item-border-bottom: 1px solid #e6e1d7;
    --article-list-nav-item-padding: 1rem;
    --article-list-nav-item-active-border-height: 3px;
    --article-list-nav-item-active-bottom: -3px;
    --article-list-container-padding-bottom: .31rem;
    --article-list-content-list-margin-top: 2rem;
    --article-list-article-border-radius: 4px;
    --article-list-article-margin-bottom: 1.5rem;
    --article-list-article-height-mb: 160px;
    --article-list-article-img-margin-right: .75rem;
    --article-list-article-img-width-mb: 160px;
    --article-list-article-img-height-mb: 160px;
    --article-list-article-content-padding-mb: .5rem .5rem .5rem 0;
    --article-list-article-content-padding: 0 1rem;
    --article-list-article-title-font-size: 1.5rem;
    --article-list-article-title-line-height: 2rem;
    --article-list-skeleton-bg-1: #eee;
    --article-list-skeleton-bg-2: #ececeb;
    --article-list-item-background: transparent;
    --article-list-load-more-btn-margin-top-mb: 2rem;
    --article-list-load-more-btn-margin-top: 3rem;
    --article-list-app-background: #000;
    --article-list-app-text-color: #fff;
    --article-list-app-backbtn-padding: .31rem 0;
    --article-list-app-backbtn-width: 100%;
    --article-list-app-backbtn-height: 2.1875rem;
    --article-list-app-nav-color: #888;
    --article-list-app-nav-active-color: #fff;
    --article-list-app-nav-item-border-bottom: 1px solid #888;
    --article-list-app-item-background: #000;
    --article-list-app-content-list-margin-top: 1.5rem
}

.m-article-list__container {
    background: var(--article-list-background);
    padding-bottom: var(--article-list-container-padding-bottom)
}

.m-article-list__nav {
    margin-right: var(--article-list-nav-margin-right-mb);
    position: sticky;
    top: var(--article-list-nav-top-mb);
    z-index: 1
}

@media(min-width:768px) {
    .m-article-list__nav {
        margin-right: 0;
        top: var(--article-list-nav-top-tablet)
    }
}

@media(min-width:992px) {
    .m-article-list__nav {
        top: var(--article-list-nav-top)
    }
}

.m-article-list__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
    padding-bottom: var(--article-list-nav-list-padding-bottom);
    padding-right: var(--article-list-nav-padding-right-mb);
    list-style: none;
    white-space: nowrap;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

.m-article-list__nav-list::-webkit-scrollbar {
    display: none
}

@media(min-width:768px) {
    .m-article-list__nav-list {
        padding-right: 0
    }
}

.m-article-list__nav-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-article-list__nav-list li:last-child {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: var(--article-list-background)
}

.m-article-list__nav-item {
    color: var(--article-list-nav-color);
    font-size: var(--article-list-nav-item-font-size);
    line-height: var(--article-list-nav-item-line-height);
    font-weight: bold;
    text-transform: uppercase;
    background: var(--article-list-background);
    border-bottom: var(--article-list-nav-item-border-bottom);
    padding: var(--article-list-nav-item-padding);
    cursor: pointer
}

.m-article-list__nav-item--active {
    color: var(--article-list-nav-active-color);
    position: relative
}

.m-article-list__nav-item--active:after {
    content: "";
    display: block;
    background: var(--article-list-nav-active-color);
    width: 100%;
    height: var(--article-list-nav-item-active-border-height);
    position: absolute;
    bottom: var(--article-list-nav-item-active-bottom);
    left: 0
}

.m-article-list__content-list {
    margin: 0;
    margin-top: var(--article-list-content-list-margin-top);
    padding: 0;
    list-style: none
}

@media(min-width:768px) {
    .m-article-list__content-list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px
    }

    .m-article-list__content-list--grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 34px;
        grid-row-gap: 34px;
        gap: 34px
    }

    .m-article-list__content-list--grid .m-article-list__article {
        width: auto
    }

    .m-article-list__content-list--grid .m-article-list__article:first-child {
        grid-area: 1 / 1 / 3 / 3
    }

    .m-article-list__content-list--grid .m-article-list__article:first-child .m-article-list__article-img {
        aspect-ratio: 1
    }

    .m-article-list__content-list--grid .m-article-list__article:nth-child(2) {
        grid-area: 1 / 3 / 2 / 4
    }

    .m-article-list__content-list--grid .m-article-list__article:nth-child(3) {
        grid-area: 1 / 4 / 2 / 5
    }

    .m-article-list__content-list--grid .m-article-list__article:nth-child(4) {
        grid-area: 2 / 3 / 3 / 4
    }

    .m-article-list__content-list--grid .m-article-list__article:nth-child(5) {
        grid-area: 2 / 4 / 3 / 5
    }
}

@media(min-width:992px) {
    .m-article-list__content-list--grid .m-article-list__article:first-child .m-article-list__article-img {
        aspect-ratio: 2/1.5
    }
}

.m-article-list__article {
    background: var(--article-list-item-background);
    border-radius: var(--article-list-article-border-radius);
    margin-bottom: var(--article-list-article-margin-bottom);
    height: var(--article-list-article-height-mb);
    overflow: hidden
}

@media(min-width:768px) {
    .m-article-list__article {
        height: auto;
        margin: 0;
        -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16);
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16)
    }
}

.m-article-list__article-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%
}

@media(min-width:768px) {
    .m-article-list__article-link {
        display: block
    }
}

.m-article-list__article-link:hover,
.m-article-list__article-link:focus {
    text-decoration: none
}

.m-article-list__article-img {
    background: var(--article-list-skeleton-bg-1);
    border-radius: var(--article-list-article-border-radius);
    margin-right: var(--article-list-article-img-margin-right);
    width: var(--article-list-article-img-width-mb);
    height: var(--article-list-article-img-height-mb);
    overflow: hidden
}

.m-article-list__article-img img {
    max-width: 100%;
    min-width: 100%;
    min-height: 100%
}

@media(min-width:768px) {
    .m-article-list__article-img img {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        position: absolute
    }
}

@media(min-width:768px) {
    .m-article-list__article-img {
        border-radius: 0;
        width: auto;
        height: auto;
        margin: 0 0 24px 0;
        position: relative;
        aspect-ratio: 2.15/1
    }
}

.m-article-list__article-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: var(--article-list-article-content-padding-mb);
    height: 100%
}

@media(min-width:768px) {
    .m-article-list__article-content {
        padding: var(--article-list-article-content-padding)
    }
}

.m-article-list__article-title {
    color: var(--article-list-text-color)
}

@media(min-width:768px) {
    .m-article-list__article-title {
        font-size: var(--article-list-article-title-font-size);
        line-height: var(--article-list-article-title-line-height)
    }
}

.m-article-list__article-para {
    color: var(--article-list-text-color);
    font-size: var(--article-list-nav-item-font-size);
    letter-spacing: 0;
    line-height: var(--article-list-nav-item-line-height);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical
}

@media(min-width:768px) {
    .m-article-list__article-para {
        -webkit-line-clamp: 3
    }
}

.m-article-list__load-more-btn {
    text-align: center;
    margin-top: var(--article-list-load-more-btn-margin-top-mb);
    margin-bottom: var(--article-list-article-margin-bottom)
}

.m-article-list__load-more-btn .a-button {
    display: inline-block
}

@media(min-width:768px) {
    .m-article-list__load-more-btn {
        margin-top: var(--article-list-load-more-btn-margin-top)
    }
}

.m-article-list .is-loading .m-article-list__article-img,
.m-article-list .is-loading .m-article-list__article-para,
.m-article-list .is-loading .m-article-list__article-title {
    background: var(--article-list-skeleton-bg-1);
    background: linear-gradient(110deg, var(--article-list-skeleton-bg-1) 8%, var(--article-list-skeleton-bg-2) 18%, var(--article-list-skeleton-bg-1) 33%);
    background-size: 200% 100%;
    text-indent: -9999px;
    border-radius: var(--article-list-article-border-radius);
    -webkit-animation: 1s shine linear infinite;
    animation: 1s shine linear infinite
}

.m-article-list .is-loading .m-article-list__article-title {
    min-height: 18%
}

@media(min-width:768px) {
    .m-article-list .is-loading .m-article-list__article-title {
        min-height: 32px
    }
}

.m-article-list .is-loading .m-article-list__article-para {
    min-height: 50%
}

@media(min-width:768px) {
    .m-article-list .is-loading .m-article-list__article-para {
        min-height: 60px
    }
}

@-webkit-keyframes shine {
    to {
        background-position-x: -200%
    }
}

@keyframes shine {
    to {
        background-position-x: -200%
    }
}

.ab-mobile-app .m-article-list__container {
    background: var(--article-list-app-background)
}

.ab-mobile-app .m-article-list__back-btn {
    background: var(--article-list-app-background);
    position: fixed;
    top: 0;
    left: 0;
    padding: var(--article-list-app-backbtn-padding);
    width: var(--article-list-app-backbtn-width);
    height: var(--article-list-app-backbtn-height)
}

.ab-mobile-app .m-article-list__nav {
    top: 0
}

.ab-mobile-app .m-article-list__nav-list li:last-child {
    background: var(--article-list-app-background)
}

.ab-mobile-app .m-article-list__nav-item {
    color: var(--article-list-app-nav-color);
    background: var(--article-list-app-background);
    border-bottom: var(--article-list-app-nav-item-border-bottom)
}

.ab-mobile-app .m-article-list__nav-item--active {
    color: var(--article-list-app-nav-active-color)
}

.ab-mobile-app .m-article-list__content-list {
    margin-top: var(--article-list-app-content-list-margin-top)
}

.ab-mobile-app .m-article-list__article {
    background: var(--article-list-app-item-background)
}

.ab-mobile-app .m-article-list__article-title {
    color: var(--article-list-app-text-color)
}

.ab-mobile-app .m-article-list__article-para {
    color: var(--article-list-app-text-color)
}

.ab-mobile-app .m-article-list__load-more-btn .btn {
    color: var(--article-list-app-text-color);
    border-color: var(--article-list-app-text-color)
}

.m-alert-banner {
    background-color: var(--alert-banner-bg-color-snow-gray);
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999
}

.m-alert-banner__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: var(--alert-banner-padding);
    width: 100%;
    max-width: var(--alert-banner-container-max-width);
    position: relative;
    font-family: var(--alert-banner-font-family);
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media(max-width:991.98px) {
    .m-alert-banner__container {
        padding: var(--alert-banner-container-md-padding)
    }
}

@media(max-width:767.98px) {
    .m-alert-banner__container {
        padding: var(--alert-banner-container-sm-padding);
        position: relative
    }
}

.m-alert-banner__icon {
    color: var(--alert-banner-icon-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-alert-banner__icon p {
    margin-right: var(--alert-banner-icon-right-space);
    margin-top: var(--alert-banner-button-top-space)
}

.m-alert-banner__icon .abt-icon-alert::before {
    font-size: var(--alert-banner-icon-font-size)
}

.m-alert-banner__content {
    display: block;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

@media(max-width:767.98px) {
    .m-alert-banner__content {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

.m-alert-banner__content__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: var(--alert-banner-font-weight-bold);
    color: var(--alert-banner-dark-blue-color);
    font-size: var(--alert-banner-title-font-size);
    line-height: var(--alert-banner-line-height-15);
    margin: var(--alert-banner-title-margin) 0
}

.m-alert-banner__content__title p {
    margin-bottom: 0
}

@media(max-width:767.98px) {
    .m-alert-banner__content__title.content-collapsed p {
        margin-bottom: var(--alert-banner-title-collapsed-margin)
    }
}

.m-alert-banner__content__para {
    font-weight: var(--alert-banner-font-weight-light);
    color: var(--alert-banner-para-dark-gray-color);
    font-size: var(--alert-banner-para-font-size);
    line-height: var(--alert-banner-line-height-1)
}

.m-alert-banner__content__para p:last-child {
    color: var(--alert-banner-dark-blue-color);
    font-weight: var(--alert-banner-font-weight-bold);
    padding-bottom: 0
}

@media(max-width:767.98px) {
    .m-alert-banner__content__para p:last-child {
        padding-bottom: var(--alert-banner-bottom-padding-mobile);
        margin-bottom: var(--alert-banner-bottom-margin-mobile)
    }
}

.m-alert-banner__content__para a {
    text-decoration: underline
}

.m-alert-banner--button {
    position: static;
    width: auto;
    margin-left: var(--alert-banner-button-left-pc)
}

@media(max-width:991.98px) {
    .m-alert-banner--button {
        margin-left: var(--alert-banner-button-left-tab)
    }
}

@media(max-width:767.98px) {
    .m-alert-banner--button {
        position: absolute;
        width: 92%;
        bottom: var(--alert-banner-bottom-position-mobile);
        margin-left: 0;
        left: var(--alert-banner-left-position-mobile)
    }
}

.m-alert-banner--button button {
    background-color: var(--alert-banner-icon-color);
    color: var(--alert-banner-color-white);
    border-radius: var(--alert-banner-button-border-radius-04);
    border: var(--alert-banner-button-border-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-family: var(--alert-banner-font-family);
    font-size: var(--alert-banner-button-font-size);
    font-style: normal;
    font-weight: var(--alert-banner-font-weight-bold);
    line-height: var(--alert-banner-line-height-1);
    text-transform: uppercase;
    padding: var(--alert-banner-padding);
    cursor: pointer
}

.m-alert-banner--button button:hover {
    color: var(--alert-banner-color-white)
}

@media(max-width:767.98px) {
    .m-alert-banner--button button {
        width: 100%
    }
}

.m-alert-banner--button button span {
    letter-spacing: var(--alert-banner-button-lt-space);
    white-space: nowrap
}

@media(max-width:767.98px) {
    .m-alert-banner--button button span {
        text-align: center;
        width: 100%
    }
}

.m-alert-banner__collapse--icon {
    display: block;
    position: absolute;
    top: var(--alert-banner-position-top-037);
    right: var(--alert-banner-position-right-1)
}

.m-alert-banner__collapse--icon span {
    margin-right: 0;
    font-size: var(--alert-banner-para-font-size);
    color: var(--alert-banner-dark-blue-color);
    cursor: pointer
}

.m-alert-banner__collapse--icon .abt-icon {
    font-size: var(--alert-banner-para-font-size)
}

.m-alert-banner .d-none {
    display: none !important
}

.m-alert {
    border-radius: var(--alert-border-radius);
    padding: var(--alert-padding);
    position: relative;
    display: none
}

.m-alert--hide {
    display: none
}

.m-alert--show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.m-alert--wrapper .xf-content-height,
.m-alert--wrapper~.xf-content-height {
    min-height: auto;
    margin: 0
}

.m-alert__close-icon {
    position: absolute;
    top: 12px;
    right: 16px;
    cursor: pointer;
    color: var(--alert-close-icon-color)
}

.m-alert__icon {
    font-size: 1.5rem;
    margin-right: var(--alert-icon-margin-right)
}

.m-alert__content {
    padding-right: var(--alert-content-padding-right);
    width: 100%
}

.m-alert__title {
    color: var(--alert-title-color);
    font-size: var(--alert-title-font-size);
    font-weight: bold;
    line-height: var(--alert-title-line-height);
    padding-bottom: var(--alert-title-padding-bottom)
}

.m-alert__para {
    color: var(--alert-para-color);
    font-size: var(--alert-para-font-size);
    line-height: var(--alert-para-line-height)
}

.m-alert--success .m-alert {
    background-color: var(--alert-success-color)
}

.m-alert--success .m-alert__icon {
    color: var(--alert-success-icon-color)
}

.m-alert--danger .m-alert {
    background-color: var(--alert-danger-color)
}

.m-alert--danger .m-alert__icon {
    color: var(--alert-danger-icon-color)
}

.m-alert--warning .m-alert {
    background-color: var(--alert-warning-color)
}

.m-alert--warning .m-alert__icon {
    color: var(--alert-warning-icon-color)
}

.m-alert--info .m-alert,
.m-alert--info-deemphasized .m-alert {
    background-color: var(--alert-information-deemphasized-color)
}

.m-alert--info .m-alert__icon,
.m-alert--info-deemphasized .m-alert__icon {
    color: var(--alert-info-icon-color)
}

.m-alert--info-default .m-alert {
    background-color: var(--alert-information-default-color)
}

.m-alert--info-default .m-alert__icon {
    color: var(--alert-info-icon-color)
}

.m-alert--sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2
}

.m-alert__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.m-alert--containerwidth .m-alert__container {
    margin: 0 auto;
    padding-right: var(--alert-padding-right)
}

.m-alert--containerwidth .m-alert__container .m-alert__close-icon {
    position: relative;
    top: 0;
    right: 0
}

@media(min-width:576px) {
    .m-alert--containerwidth .m-alert__container {
        max-width: 540px
    }
}

@media(min-width:768px) {
    .m-alert--containerwidth .m-alert__container {
        max-width: 720px
    }
}

@media(min-width:992px) {
    .m-alert--containerwidth .m-alert__container {
        max-width: 960px
    }
}

@media(min-width:1200px) {
    .m-alert--containerwidth .m-alert__container {
        max-width: 1140px
    }
}

.m-address-suggestions--address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 15px 0;
    padding: 15px;
    border: var(--address-suggestion__border);
    border-radius: var(--address-suggestion__border-radius);
    cursor: pointer
}

.m-address-suggestions--address.selected {
    border: var(--address-suggestion__border--selected)
}

.m-address-suggestions--address .a-radio {
    margin: 0;
    padding-right: 0
}

.m-address-suggestions--address__info p {
    margin: 0;
    padding: 0
}

.m-account-navigation {
    width: 160px
}

.m-account-navigation__accordion-toggle {
    display: none;
    padding: 15px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.m-account-navigation__container {
    list-style: none;
    text-align: center;
    background-color: var(--account-navigation-bg);
    color: var(--account-navigation-content-color);
    font-weight: bold;
    max-width: 100%;
    text-transform: uppercase
}

.m-account-navigation__header {
    padding: var(--account-navigation-header-padding);
    margin: 0;
    border-bottom: var(--account-navigation-border-bottom);
    color: var(--account-navigation-title-color)
}

.m-account-navigation__text {
    text-align: center;
    text-decoration: none !important
}

.m-account-navigation__text[role="menuitem"]:focus-visible {
    outline: 2px solid var(--gray-darkest-color);
    outline-offset: 2px;
    border-radius: 1px
}

.m-account-navigation__icon {
    display: block
}

.m-account-navigation__icon em {
    font-size: 24px;
    color: var(--account-navigation-content-color)
}

.m-account-navigation ul {
    padding: 0
}

.m-account-navigation li {
    border-bottom: var(--account-navigation-border-bottom);
    height: var(--account-navigation-option-height);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.m-account-navigation li:last-child {
    border-bottom: 0
}

.m-account-navigation__item--active {
    border-left: var(--account-navigation-border-left)
}

@media(max-width:767.98px) {
    .m-account-navigation {
        margin-bottom: 30px;
        width: 100%
    }

    .m-account-navigation__header {
        display: none
    }

    .m-account-navigation__accordion-icon {
        margin-right: 10px
    }

    .m-account-navigation__accordion-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .m-account-navigation__accordion-toggle .abt-icon-down-arrow {
        height: 16px;
        width: 16px;
        -webkit-transition: 200ms;
        transition: 200ms
    }

    .m-account-navigation__accordion-toggle.open .abt-icon-down-arrow {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    .m-account-navigation__accordion-toggle.open+.m-account-navigation__accordion-content {
        display: block
    }

    .m-account-navigation__accordion-content {
        display: none
    }

    .m-account-navigation__accordion-content .m-account-navigation__text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        height: 100%
    }

    .m-account-navigation__accordion-content li {
        padding: 0 10px;
        height: var(--account-navigation-option-height--mobile)
    }

    .m-account-navigation__accordion-content .m-account-navigation__icon {
        margin-right: 10px
    }
}

.m-accordion {
    width: 100%;
    margin: var(--accordion-margin);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media(min-width:992px) {
    .m-accordion {
        max-width: var(--accordion-lg-max-width)
    }
}

.m-accordion__options {
    margin-bottom: var(--accordion-options-margin-bottom);
    padding-right: var(--accordion-options-padding-right)
}

.m-accordion__options button,
.m-accordion__options span {
    float: right;
    cursor: pointer;
    border: 0;
    background: 0
}

.m-accordion__options .m-accordion__collapse-title {
    display: none
}

.m-accordion__options .m-accordion__collapse-title.show {
    display: block
}

.m-accordion__options .m-accordion__expand-title {
    display: none
}

.m-accordion__options .m-accordion__expand-title.show {
    display: block
}

.m-accordion__content-items {
    border-top: var(--accordion-content-border);
    border-collapse: collapse
}

.m-accordion__content-items:nth-last-child(1) {
    border-bottom: var(--accordion-content-border)
}

.m-accordion__content-items .m-accordion__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer
}

.m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper {
    width: 90%;
    padding: var(--accordion-title-padding-sm)
}

@media(min-width:576px) {
    .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper {
        padding: var(--accordion-title-padding-lg)
    }
}

.m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h1,
.m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h2,
.m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3,
.m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h4,
.m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h5,
.m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h6 {
    font-size: var(--accordion-title-font-size);
    line-height: var(--accordion-title-line-height);
    color: var(--accordion-title-color);
    font-weight: normal;
    margin-bottom: 0
}

@media(min-width:576px) {

    .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h1,
    .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h2,
    .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3,
    .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h4,
    .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h5,
    .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h6 {
        font-size: var(--accordion-title-font-size-sm);
        line-height: var(--accordion-title-line-height-sm);
        color: var(--accordion-title-color-sm);
        font-weight: normal
    }
}

.m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper {
    border: 0;
    background: transparent;
    width: 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

@media(min-width:576px) {
    .m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper .m-accordion-icon {
    display: none
}

.m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper .m-accordion-icon.icon-visible {
    display: inline-block
}

.m-accordion__content-items .m-accordion__body {
    padding: var(--accordion-body-padding-sm)
}

@media(min-width:576px) {
    .m-accordion__content-items .m-accordion__body {
        padding: var(--accordion-body-padding-md)
    }
}

@media(min-width:992px) {
    .m-accordion__content-items .m-accordion__body {
        padding: var(--accordion-body-padding-lg)
    }
}

.abstractlist-horizontal .abstractlist-container {
    --abstractlist-item-padding: 0;
    --abstractlist-item-spacing: 16px;
    --abtractlist-item-width: 160px
}

.abstractlist-container {
    padding: var(--abstractlist-body-padding)
}

.abstractlist-title-wrapper {
    padding: var(--abstractlist-title-padding);
    font-size: var(--abstractlist-font);
    line-height: var(--abstractlist-line-height);
    color: var(--abstractlist-title-color)
}

.abstractlist-item-list {
    list-style-type: none;
    padding-left: 0
}

.abstractlist-horizontal .abstractlist-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: var(--abstractlist-item-spacing)
}

.abstractlist-item {
    padding: var(--abstractlist-item-padding);
    max-width: var(--abtractlist-item-width);
    overflow-wrap: break-word;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.abstractlist-item-link {
    font-size: var(--abstractlist-font);
    line-height: var(--abstractlist-line-height);
    color: var(--abstractlist-color)
}

.abstractlist-item-link.active {
    color: var(--abstractlist-item-active-color)
}

#site-section-popup-content.medical-popup-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex
}

#site-section-popup-content.medical-popup-wrapper .m-popup-content {
    max-width: 600px;
    background-color: #fff;
    padding: 50px 25px;
    margin: auto
}

@media only screen and (min-width:992px) {

    .header .o-header.o-header--full-width .header-search.headersearch,
    .header .o-header.o-header--full-width .header-search.headersearch .a-search.a-search--expand {
        width: 100%
    }
}

.header .m-link-stack .a-link__text {
    font-weight: normal !important;
    text-transform: uppercase
}

@media only screen and (min-width:992px) and (max-width:1199.98px) {
    .header .m-link-stack .a-link__text {
        font-size: .64rem
    }
}

@media only screen and (max-width:767.98px) {
    .header .m-link-stack .a-link__text {
        font-size: .8rem
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .header .m-link-stack .a-link__text {
        font-size: .8125rem
    }
}

.header .m-link-stack .m-link-stack__list-item .a-link .a-link__text {
    font-size: .8125rem;
    font-weight: normal !important;
    text-transform: uppercase
}

@media only screen and (max-width:767.98px) {
    .header .m-link-stack .m-link-stack__list-item .a-link .a-link__text {
        font-size: .6016rem
    }
}

.header .m-link-stack .m-link-stack__title h4 {
    font-size: .75rem;
    text-transform: uppercase
}

.header .o-header__search .a-search__input {
    font-weight: normal !important;
    text-transform: uppercase;
    padding: 10px 35px 5px 35px
}

@media only screen and (max-width:767.98px) {
    .header .o-header__search .a-search__input {
        font-size: 1rem
    }
}

@media only screen and (max-width:767.98px) {

    .header .o-header__search .a-search,
    .header .o-header__search .a-search__input {
        -webkit-appearance: inherit
    }
}

@media only screen and (min-width:992px) and (max-width:1199.98px) {
    .header .m-mega-menu__nested-menu .m-link-stack .a-link__text {
        font-size: .806rem;
        font-weight: normal !important;
        text-transform: uppercase
    }
}

@media only screen and (max-width:991.98px) {
    .header .m-mega-menu__mobile-products .m-mega-menu__mobile-item-link {
        --mega-menu-list-font-size: .8125rem;
        text-transform: uppercase
    }
}

@media only screen and (max-width:991.98px) {
    .header .m-mega-menu__mobile-products .m-mega-menu__mobile-sub-head {
        font-size: .75rem;
        text-transform: uppercase
    }
}

@media only screen and (min-width:992px) and (max-width:1199.98px) {
    .header .o-header__mega-menu .m-mega-menu__mobile .navbar .navbar-nav .nav-link {
        font-weight: normal !important;
        --mega-menu-link-letter-spacing: 0;
        --mega-menu-list-font-size: .921rem;
        text-transform: uppercase
    }
}

.header .o-header__mega-menu .m-mega-menu__mobile .navbar .navbar-nav .m-mega-menu__mobile-header {
    font-weight: bold;
    text-transform: uppercase
}

@media only screen and (max-width:991.98px) {
    .header .o-header__mega-menu .m-mega-menu__mobile .navbar .navbar-nav .m-mega-menu__mobile-header {
        padding-bottom: 7px;
        padding-top: 7px
    }
}

.header .o-header__mega-menu .m-mega-menu__mobile .navbar .m-link-stack {
    padding: var(--mega-menu-mobile-item)
}

.header .o-header__mega-menu .m-mega-menu__mobile .navbar .m-link-stack .m-link-stack--header .m-link-stack--title {
    font-weight: normal;
    margin-bottom: 0;
    --link-stack-h6-color: #fff
}

@media only screen and (max-width:991.98px) {
    html[lang*="il"] .header .o-header__sticky-section {
        margin-top: 34px;
        top: 34px
    }
}

.header .o-header__sticky-section .o-header__logo-section .o-header__logo-left .a-logo-comp--image {
    opacity: 1;
    position: relative
}

@media only screen and (max-width:991.98px) {
    .header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .navbar .navbar-collapse .navbar-collapse-wrapper {
        max-height: 90vh
    }

    .header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .navbar .navbar-collapse .navbar-collapse-wrapper .m-mega-menu__mobile-item-wrapper .link.button .a-link {
        --link-font-family: 'BrandonGrotesqueBlack'
    }
}

.header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .navbar .m-mega-menu__mobile-item-wrapper .navigation.bg-white-color .m-mega-menu__nested-menu:before {
    border-bottom: 12px solid #fff
}

.header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .navbar .m-mega-menu__mobile-item-wrapper .navigation.bg-white-color .m-mega-menu__nested-menu .m-mega-menu__nested-menu-wrapper .m-link-stack,
.header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .navbar .m-mega-menu__mobile-item-wrapper .navigation.bg-white-color .m-mega-menu__nested-menu .m-mega-menu__nested-menu-wrapper .m-link-stack .m-mega-menu__side-nav-transparent {
    --mega-menu-mob-bg: #fff
}

.header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .navbar .m-mega-menu__mobile-item-wrapper .navigation.hide-tertiary-navigation .m-mega-menu__nested-menu .m-mega-menu__nested-menu-wrapper .m-mega-menu__side-nav-transparent {
    display: none
}

.header .o-header__sticky-section .o-header__mega-menu .o-header__search.o-header__mob-search.expand .a-search--expand .a-search__input {
    padding-top: 10px;
    padding-bottom: 5px
}

@media only screen and (min-width:576px) and (max-width:991.98px) {
    .header .o-header__sticky-section .o-header__mega-menu .container {
        padding: 0 40px;
        max-width: 100%
    }

    .header .o-header__sticky-section .o-header__mega-menu .container .row {
        position: relative
    }
}

.header .o-header__sticky-section.sticky.show {
    --header-overlay-bg: #000
}

@media only screen and (min-width:992px) {
    .header .o-header__sticky-section.show .icon-mega-menu-wrapper {
        display: none
    }
}

@media only screen and (min-width:992px) {
    .header .o-header__sticky-section {
        display: flex;
        justify-content: space-between;
        padding: 0 40px;
        position: fixed;
        left: 0;
        top: 44px;
        right: 0;
        z-index: 999;
        min-height: 55px
    }

    html[lang*="il"] .header .o-header__sticky-section {
        top: 78px
    }

    .header .o-header__sticky-section.sticky .a-search.a-search--expand {
        max-height: fit-content
    }

    .header .o-header__sticky-section.sticky .a-search.a-search--expand .a-search__input {
        padding-bottom: 5px;
        padding-top: 9px
    }

    .header .o-header__sticky-section .o-header__logo-section .o-header__sticky-search {
        display: none
    }

    .header .o-header__sticky-section .o-header__mega-menu .container {
        padding-top: .3rem
    }

    .header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .m-mega-menu__mobile-item-wrapper:last-child,
    .header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .m-mega-menu__mobile-item-wrapper.mega-menu-wrapper--empty {
        margin-right: 0
    }

    .header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .m-mega-menu__mobile-item-wrapper .navigation .m-mega-menu__nested-menu .m-link-stack {
        padding-left: 0;
        padding-right: 0
    }
}

@media only screen and (min-width:992px) {
    .header .o-header__sticky-section .o-header__logo-section {
        align-self: center
    }

    .header .o-header__sticky-section .o-header__logo-section .container {
        padding-left: 0
    }

    .header .o-header__sticky-section .o-header__logo-section .container .a-logo-comp--image {
        min-width: 120px
    }
}

@media only screen and (min-width:576px) and (max-width:991.98px) {
    .header .o-header__sticky-section .o-header__logo-section .container {
        padding: 0 40px;
        max-width: 100%
    }
}

@media only screen and (min-width:992px) and (max-width:1199.98px) {
    .header .o-header__sticky-section .o-header__logo-section {
        margin-right: .75rem
    }
}

@media only screen and (min-width:1200px) {
    .header .o-header__sticky-section .o-header__logo-section {
        margin-right: 2.75rem
    }
}

@media only screen and (max-width:991.98px) {
    .header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .m-mega-menu__mobile-item-wrapper.wrapper--extra-space {
        padding-top: 15px
    }
}

@media only screen and (min-width:992px) {
    .header .o-header__sticky-section .icon-mega-menu-wrapper {
        display: flex
    }
}

@media only screen and (max-width:991.98px) {
    .header .o-header__sticky-section .o-header__search {
        display: block;
        position: absolute;
        bottom: 7px;
        right: 5%
    }

    .header .o-header__sticky-section .o-header__search .a-search .a-search__input {
        border: 0
    }
}

@media only screen and (min-width:992px) {
    .header .o-header__sticky-section .o-header__search {
        align-items: center;
        min-width: 185px !important
    }

    .header .o-header__sticky-section .o-header__search .a-search:not(.a-search--expand) {
        left: 0 !important;
        max-height: unset
    }

    .header .o-header__sticky-section .o-header__search .a-search:not(.a-search--expand) .a-search--icon-left {
        left: 160px;
        top: 12px
    }

    .header .o-header__sticky-section .o-header__search .a-search:not(.a-search--expand) .a-search__input {
        padding: .7rem 2.5rem .3rem .5rem;
        width: 185px !important
    }
}

@media only screen and (min-width:992px) {
    .header .o-header__secondary-top-nav {
        display: block !important;
        position: fixed;
        left: 0;
        right: 0;
        z-index: 9999
    }

    html[lang*="il"] .header .o-header__secondary-top-nav {
        top: 34px
    }
}

@media only screen and (min-width:992px) {
    .header .o-header__secondary-top-nav .container .row {
        margin-right: 0
    }
}

.header .o-header__secondary-top-nav .full-width {
    max-width: 100%;
    padding: 0 40px
}

.header .o-header__secondary-top-nav .o-header__user-activity .m-signup {
    display: none
}

.header .o-header__secondary-top-nav .o-header__user-activity .m-link-stack .m-link-stack__title {
    display: none
}

@media only screen and (min-width:992px) {
    .header .o-header__secondary-top-nav .o-header__user-activity .m-link-stack h6.m-link-stack--title {
        padding-top: 3px
    }
}

@media only screen and (min-width:992px) {
    html[lang*="vi"] .header .o-header__secondary-top-nav .o-header__user-activity .m-link-stack h6.m-link-stack--title {
        padding-top: 0
    }
}

@media only screen and (min-width:992px) {
    .header .o-header__secondary-top-nav .o-header__user-activity {
        left: 0 !important
    }
}

@media only screen and (min-width:992px) {
    .header .o-header__secondary-top-nav .o-header__user-activity div[id^="languagenavigation"] .a-link {
        display: flex;
        align-items: center;
        border-left: 2px solid #000;
        border-right: 2px solid #000;
        height: 2.5rem;
        padding: 0 10px
    }

    .header .o-header__secondary-top-nav .o-header__user-activity div[id^="languagenavigation"] .a-link .a-link__text {
        padding-right: 0
    }
}

@media only screen and (min-width:992px) {
    .header .o-header__secondary-top-nav .o-header__search {
        display: none
    }
}

@media only screen and (min-width:992px) {
    .header.header-linkstack-hover--links .o-header__user-activity .o-header__utility-nav .m-link-stack--dropdown {
        align-items: center;
        height: 2.5rem;
        padding-right: 0;
        cursor: pointer
    }

    .header.header-linkstack-hover--links .o-header__user-activity .o-header__utility-nav .m-link-stack--dropdown .m-link-stack__link {
        pointer-events: none
    }

    .header.header-linkstack-hover--links .o-header__user-activity .o-header__utility-nav .m-link-stack--dropdown .m-link-stack__link .abt-icon {
        display: none
    }

    .header.header-linkstack-hover--links .o-header__user-activity .o-header__utility-nav .m-link-stack--dropdown:hover .m-link-stack__link .a-link .a-link__text {
        color: #5bc2e7
    }

    .header.header-linkstack-hover--links .o-header__user-activity .o-header__utility-nav .m-link-stack--dropdown:hover .m-link-stack__dropdown-wrapper.d-none {
        display: block !important
    }

    .header.header-linkstack-hover--links .o-header__user-activity .o-header__utility-nav .m-link-stack--dropdown:hover .m-link-stack__dropdown-wrapper::before {
        right: 25%
    }
}

.header.header-simple-linkstack .o-header .o-header__wrapper .o-header__secondary-top-nav .container .justify-content-end .o-header__user-activity .o-header__utility-nav {
    position: relative;
    display: flex;
    align-items: baseline
}

@media only screen and (min-width:992px) {
    .header.header-simple-linkstack .o-header .o-header__wrapper .o-header__secondary-top-nav .container .justify-content-end .o-header__user-activity .o-header__utility-nav .linkstack:nth-last-child(2) .m-link-stack {
        padding-right: 1rem
    }
}

@media only screen and (min-width:992px) {
    .header.header-simple-linkstack .o-header .o-header__wrapper .o-header__secondary-top-nav .container .justify-content-end .o-header__user-activity .o-header__utility-nav .linkstack {
        padding: .75rem 1rem
    }
}

@media only screen and (min-width:992px) {
    .header.header-simple-linkstack .o-header .o-header__wrapper .o-header__secondary-top-nav .container .justify-content-end .o-header__user-activity .o-header__utility-nav .linkstack .m-link-stack {
        padding-right: 0
    }
}

.header.header-simple-linkstack .o-header .o-header__wrapper .o-header__secondary-top-nav .container .justify-content-end .o-header__user-activity .o-header__utility-nav .linkstack .m-link-stack .m-link-stack--header .abt-icon-down-arrow {
    display: none
}

.header.header-simple-linkstack .o-header .o-header__wrapper .o-header__secondary-top-nav .container .justify-content-end .o-header__user-activity .o-header__utility-nav .linkstack ul.js-collapsable-links {
    background-color: #d9dadb;
    position: absolute;
    top: 96%;
    min-width: 175px;
    z-index: 1005;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: .875rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    max-height: 262px;
    width: 180px;
    box-sizing: border-box;
    visibility: hidden
}

.header.header-simple-linkstack .o-header .o-header__wrapper .o-header__secondary-top-nav .container .justify-content-end .o-header__user-activity .o-header__utility-nav .linkstack ul.js-collapsable-links li.a-link {
    padding: 0
}

.header.header-simple-linkstack .o-header .o-header__wrapper .o-header__secondary-top-nav .container .justify-content-end .o-header__user-activity .o-header__utility-nav .linkstack ul.js-collapsable-links li.a-link a.a-link__text {
    font-size: .8125rem;
    font-weight: normal !important;
    text-transform: uppercase;
    display: block;
    padding: 3px 3px 3px 20px !important;
    clear: both;
    line-height: 1.42857143 !important;
    color: #333;
    text-align: left
}

.header.header-simple-linkstack .o-header .o-header__wrapper .o-header__secondary-top-nav .container .justify-content-end .o-header__user-activity .o-header__utility-nav .linkstack ul.js-collapsable-links li.a-link a.a-link__text:hover {
    color: #009cde
}

.header.header-simple-linkstack .o-header .o-header__wrapper .o-header__secondary-top-nav .container .justify-content-end .o-header__user-activity .o-header__utility-nav .linkstack ul.js-collapsable-links:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #d9d9d7;
    position: absolute;
    top: -11px;
    left: 15px
}

@media only screen and (min-width:992px) {
    .header .o-header__wrapper {
        height: 99px
    }
}

@media only screen and (max-width:991.98px) {
    .header .o-header.o-header--full-width .o-header__search {
        width: 90%
    }
}

.menu_dblock {
    display: block !important;
    visibility: visible !important
}

.menu_dnone {
    display: none !important
}

@media only screen and (min-width:768px) {
    .footer {
        margin-top: -50px !important
    }
}

@media only screen and (min-width:768px) {
    .footer.footer-float-up .container.float-footer-top {
        margin-top: -100px !important
    }
}

@media only screen and (max-width:991.98px) {
    .footer .o-footer__link-wrapper .m-link-stack .abt-icon-down-arrow {
        display: block
    }
}

@media only screen and (min-width:768px) {
    .footer .o-footer .m-link-stack .m-link-stack--header {
        display: none
    }

    .footer .o-footer .m-link-stack .d-none {
        display: block !important
    }
}

@media only screen and (max-width:767.98px) {

    .footer .o-footer .o-footer__top,
    .footer .o-footer .horizontal-divider {
        display: none
    }
}

.footer .o-footer .o-footer__top .row .o-footer__link-wrapper .m-link-stack .m-link-stack--content .a-link .a-link__text {
    font-size: .8rem;
    font-weight: normal !important;
    text-transform: uppercase
}

.footer .o-footer .o-footer__bottom .row .o-footer__copyright {
    font-size: .8rem;
    font-weight: 400
}

.footer .o-footer .o-footer__bottom .row .o-footer__bottom-section .o-footer__social-media .m-social-media .m-social-media--title {
    font-size: 1.1em;
    font-weight: normal !important
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .footer .o-footer .o-footer__bottom .row .o-footer__bottom-section .o-footer__social-media .m-social-media .m-social-media--title {
        font-size: .9em;
        margin-bottom: 0
    }
}

.footer.top-spacing-100:not(.float-footer-top) {
    padding-top: 100px !important
}

.footer.top-spacing-50:not(.float-footer-top) {
    padding-top: 50px !important
}

.footer.bg-color--yellow {
    background-color: #ffd100
}

.footer.bg-color--dark-yellow {
    background-color: #ded548
}

.footer.bg-color--green {
    background-color: #7ccc6c
}

.footer.bg-color--dark-green {
    background-color: #00b140
}

.footer.bg-color--fuscia {
    background-color: #aa0061
}

.footer.bg-color--dark-fuscia {
    background-color: #470a68
}

.footer.bg-color--orange {
    background-color: #e4002b
}

.footer.bg-color--dark-orange {
    background-color: #eeb33b
}

.footer.bg-color--cyan {
    background-color: #5bc2e7
}

.footer.bg-color--blue {
    background-color: #004f71
}

.footer.bg-color--dark-gray {
    background-color: #222731
}

.footer.bg-color--gray {
    background-color: #63666a
}

.footer.bg-color--white {
    background-color: #fff
}

.footer.bg-color--light-gray {
    background-color: #d9d9d6
}

.footer.bg-color--dark-cyan {
    background-color: #007589
}

.footer.bg-color--primary-blue {
    background-color: #009cde
}

.footer.bg-color--dark-blue {
    background-color: #002a3a
}

.footer.bg-color--mint {
    background-color: #64ccc9
}

.footer[class*="v2"] {
    margin-top: 0 !important
}

@media only screen and (min-width:768px) {
    .footer[class*="v2"] {
        margin-top: -80px !important
    }
}

.footer[class*="v2"]>.container {
    z-index: 10
}

@media(min-width:576px) {
    .footer[class*="v2"]>.container>section .a-container__content>.cmp-container {
        max-width: 540px
    }
}

@media(min-width:768px) {
    .footer[class*="v2"]>.container>section .a-container__content>.cmp-container {
        max-width: 720px
    }
}

@media(min-width:992px) {
    .footer[class*="v2"]>.container>section .a-container__content>.cmp-container {
        max-width: 960px
    }
}

@media(min-width:1200px) {
    .footer[class*="v2"]>.container>section .a-container__content>.cmp-container {
        max-width: 1140px;
        width: 78%
    }
}

.footer[class*="v2"]>.container>section .a-container__content>.cmp-container .columncontrol .logo {
    text-align: left
}

@media only screen and (min-width:768px) {
    .footer[class*="v2"]>.container>section .a-container__content>.cmp-container .columncontrol .logo {
        margin-left: 3em
    }
}

@media only screen and (min-width:1200px) {
    .footer[class*="v2"]>.container>section .a-container__content>.cmp-container .columncontrol .logo {
        margin-left: 0
    }
}

.footer[class*="v2"]>.container>section .a-container__content>.cmp-container .columncontrol+.text {
    padding: 60px 0 0;
    margin: 0
}

@media only screen and (min-width:768px) {
    .footer[class*="v2"]>.container>section .a-container__content>.cmp-container .columncontrol+.text {
        margin-left: 3em
    }
}

@media only screen and (min-width:1200px) {
    .footer[class*="v2"]>.container>section .a-container__content>.cmp-container .columncontrol+.text {
        margin-left: 0
    }
}

@media only screen and (max-width:991.98px) {
    .footer[class*="v2"]>.container>section .a-container__content>.cmp-container .columncontrol+.text {
        padding: 25px 0 0
    }
}

.grecaptcha-badge {
    z-index: 99
}

.corp-button-styling .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.corp-button-styling .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.corp-button-styling .btn:hover::after {
    bottom: 0;
    height: 100%
}

.corp-button-styling .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-remove-underline .btn:focus,
.button.button-remove-underline .btn:active {
    text-decoration: none
}

.button.button-hero-banner--variation .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-hero-banner--variation .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-hero-banner--variation .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-hero-banner--variation .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-hero-banner--variation .btn {
    --hero-banner-card-button-bg-color: #009cde;
    padding: 6px 12px 4px
}

.button.button-hero-banner--variation .btn:hover {
    background-color: #63666a !important
}

.button.button-hero-banner--variation .btn::after {
    background-color: #63666a !important
}

.button.button-featured-media-variation--color-magenta .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-magenta .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-magenta .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-magenta .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-magenta .btn {
    --hero-banner-card-button-bg-color: #aa0061;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-magenta .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #aa0061 !important
}

.button.button-featured-media-variation--color-magenta .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-white .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-white .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-white .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-white .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-white .btn {
    --hero-banner-card-button-bg-color: #fff;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-white .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #fff !important
}

.button.button-featured-media-variation--color-white .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-dark-gray .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-dark-gray .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-dark-gray .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-dark-gray .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-dark-gray .btn {
    --hero-banner-card-button-bg-color: #222731;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-dark-gray .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #222731 !important
}

.button.button-featured-media-variation--color-dark-gray .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-yellow .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-yellow .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-yellow .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-yellow .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-yellow .btn {
    --hero-banner-card-button-bg-color: #ffd100;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-yellow .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #ffd100 !important
}

.button.button-featured-media-variation--color-yellow .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-red .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-red .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-red .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-red .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-red .btn {
    --hero-banner-card-button-bg-color: #e4002b;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-red .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #e4002b !important
}

.button.button-featured-media-variation--color-red .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-light-gray .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-light-gray .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-light-gray .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-light-gray .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-light-gray .btn {
    --hero-banner-card-button-bg-color: #d9d9d6;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-light-gray .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #d9d9d6 !important
}

.button.button-featured-media-variation--color-light-gray .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-charcoal .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-charcoal .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-charcoal .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-charcoal .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-charcoal .btn {
    --hero-banner-card-button-bg-color: #222731;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-charcoal .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #222731 !important
}

.button.button-featured-media-variation--color-charcoal .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-medium-green .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-medium-green .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-medium-green .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-medium-green .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-medium-green .btn {
    --hero-banner-card-button-bg-color: #00b140;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-medium-green .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #00b140 !important
}

.button.button-featured-media-variation--color-medium-green .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-green .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-green .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-green .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-green .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-green .btn {
    --hero-banner-card-button-bg-color: #7ccc6c;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-green .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #7ccc6c !important
}

.button.button-featured-media-variation--color-green .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-purple .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-purple .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-purple .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-purple .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-purple .btn {
    --hero-banner-card-button-bg-color: #470a68;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-purple .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #470a68 !important
}

.button.button-featured-media-variation--color-purple .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-gold .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-gold .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-gold .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-gold .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-gold .btn {
    --hero-banner-card-button-bg-color: #eeb33b;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-gold .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #eeb33b !important
}

.button.button-featured-media-variation--color-gold .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-medium-blue .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-medium-blue .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-medium-blue .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-medium-blue .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-medium-blue .btn {
    --hero-banner-card-button-bg-color: #004f71;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-medium-blue .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #004f71 !important
}

.button.button-featured-media-variation--color-medium-blue .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-primary-blue .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-primary-blue .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-primary-blue .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-primary-blue .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-primary-blue .btn {
    --hero-banner-card-button-bg-color: #009cde;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-primary-blue .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #009cde !important
}

.button.button-featured-media-variation--color-primary-blue .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-dark-blue .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-dark-blue .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-dark-blue .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-dark-blue .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-dark-blue .btn {
    --hero-banner-card-button-bg-color: #002a3a;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-dark-blue .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #002a3a !important
}

.button.button-featured-media-variation--color-dark-blue .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-mint .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-mint .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-mint .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-mint .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-mint .btn {
    --hero-banner-card-button-bg-color: #64ccc9;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-mint .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #64ccc9 !important
}

.button.button-featured-media-variation--color-mint .btn::after {
    background-color: #2a2b33 !important
}

.button.button-featured-media-variation--color-light-blue .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-featured-media-variation--color-light-blue .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-featured-media-variation--color-light-blue .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-featured-media-variation--color-light-blue .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-featured-media-variation--color-light-blue .btn {
    --hero-banner-card-button-bg-color: #5bc2e7;
    --hero-banner-card-button-text-color: #2a2b33
}

.button.button-featured-media-variation--color-light-blue .btn:hover {
    background-color: #2a2b33 !important;
    box-shadow: none;
    color: #5bc2e7 !important
}

.button.button-featured-media-variation--color-light-blue .btn::after {
    background-color: #2a2b33 !important
}

.button.button-product-related--variation .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-product-related--variation .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-product-related--variation .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-product-related--variation .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-product-related--variation .btn {
    background-color: #009cde;
    color: #fff
}

.button.button-product-related--variation .btn:hover {
    background-color: #63666a !important;
    color: #fff
}

.button.button-product-related--variation .btn::after {
    background-color: #63666a !important
}

.button.button-life-to-the-fullest--variation .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-life-to-the-fullest--variation .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.button-life-to-the-fullest--variation .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-life-to-the-fullest--variation .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-life-to-the-fullest--variation .btn {
    --hero-banner-card-button-bg-color: #222731;
    --hero-banner-card-button-text-color: #fff;
    border-radius: 0
}

.button.button-life-to-the-fullest--variation .btn:hover {
    background-color: #63666a !important;
    box-shadow: none;
    color: #fff !important
}

.button.button-life-to-the-fullest--variation .btn::after {
    background-color: #63666a !important
}

.button.button-popup--container .btn {
    transition: all .3s
}

.button.button-popup--container .btn:hover {
    background-color: #63666a !important;
    color: #fff
}

.button .btn .abt-icon+span {
    padding-left: 20px
}

.button.a-button--lg .abt-icon {
    top: 15.1px
}

.button.a-button--sm .abt-icon {
    top: 9px
}

.button.a-button--primary-corp .btn {
    --button-font-size: 1rem;
    background-color: var(--button-primary-corp-bg);
    color: var(--button-primary-corp-text);
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .button.a-button--primary-corp .btn,
html[lang*="vi"] .button.a-button--primary-corp .btn,
html[lang*="ja"] .button.a-button--primary-corp .btn {
    font-family: 'Brandon Bold'
}

.button.a-button--primary-corp .btn:hover {
    background-color: var(--button-primary-corp-bg-hover);
    color: var(--button-primary-corp-text)
}

.button.a-button--news-letter-button .btn {
    background-color: #fff;
    color: #009cde;
    font-size: 1.125rem !important;
    font-weight: normal;
    float: left;
    border: 1px solid #d9d9d6;
    border-radius: 2px;
    min-width: 171px !important;
    max-width: 171px !important
}

.button.a-button--news-letter-button .btn:hover {
    background-color: #939799;
    color: #fff;
    box-shadow: none;
    border: solid 1px #fff
}

.button.a-button.a-button--tertiary-corp.button[class*="font-brandon-grotesque-"] .btn span {
    padding-top: 2px
}

.button.a-button.a-button--tertiary-corp .btn {
    color: var(--button-tertiary-corp-color)
}

@media only screen and (min-width:768px) {
    .button.a-button.a-button--tertiary-corp .btn {
        display: flex
    }

    .button.a-button.a-button--tertiary-corp .btn span {
        padding-left: 25px !important;
        text-align: left
    }
}

@media only screen and (max-width:767.98px) {
    .button.a-button.a-button--tertiary-corp .btn {
        border: 1px solid #004f71
    }

    .button.a-button.a-button--tertiary-corp .btn span {
        padding-left: 0
    }
}

.button.a-button.a-button--tertiary-corp .btn:hover,
.button.a-button.a-button--tertiary-corp .btn:focus {
    box-shadow: none;
    --button-box-shadow: none
}

.button.a-button.a-button--tertiary-corp .btn:hover .abt-icon:before {
    color: var(--button-tertiary-corp-color) !important
}

.button.a-button.a-button--tertiary-corp .btn .abt-icon {
    color: var(--button-tertiary-corp-color)
}

@media only screen and (max-width:767.98px) {
    .button.a-button.a-button--tertiary-corp .btn .abt-icon {
        display: none
    }
}

.button.a-button--corpnews-variation {
    justify-content: center
}

.button.a-button--corpnews-variation .btn {
    color: #009cde
}

.button.a-button--corpnews-variation .btn .abt-icon {
    top: 11px
}

@media only screen and (max-width:767.98px) {
    .button.a-button--corpnews-variation .btn {
        align-items: center;
        display: flex;
        justify-content: flex-end;
        padding: 0;
        text-align: right
    }

    .button.a-button--corpnews-variation .btn .abt-icon {
        position: unset
    }

    .button.a-button--corpnews-variation .btn span {
        padding: 4px 0 0 10px
    }
}

.button.a-button--corpnews-variation .btn:hover,
.button.a-button--corpnews-variation .btn:focus {
    box-shadow: none;
    --button-box-shadow: none
}

.button.a-button--corpnews-variation .btn:hover {
    color: #333
}

.button.a-button--corpnews-variation .btn:hover .abt-icon:before {
    color: #009cde !important
}

.button.a-button--corpnews-variation-2 {
    margin: 10px 0 !important
}

.button.a-button--corpnews-variation-2 .btn {
    color: #fff;
    background-color: #63666a;
    width: 100%;
    box-shadow: none;
    border-radius: 0
}

.button.a-button--corpnews-variation-2 .btn:hover {
    background-color: #009cde
}

.button.a-button--corpnews-variation-3 .btn {
    padding: 10px 0 5px
}

.button.button-stories-variation[class*="font-brandon-grotesque-"] .btn span {
    padding-top: 2px
}

.button.button-stories-variation .btn {
    color: #333;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center
}

.button.button-stories-variation .btn span {
    padding-right: 6px;
    padding-left: 8px
}

@media only screen and (max-width:767.98px) {
    .button.button-stories-variation .btn {
        padding: 0
    }

    .button.button-stories-variation .btn span {
        word-break: break-all
    }
}

.button.button-stories-variation .btn:hover,
.button.button-stories-variation .btn:focus {
    box-shadow: none;
    --button-box-shadow: none
}

.button.button-stories-variation .btn:hover {
    color: #009cde
}

.button.button-stories-variation .btn:hover .abt-icon:before {
    color: #009cde !important
}

.button.button-stories-variation.a-button--icon-right .abt-icon:not(.abt-icon-only) {
    position: unset
}

.button.list-of-items-variation.a-button--lg .abt-icon {
    top: unset
}

.button.list-of-items-variation.a-button--sm .abt-icon {
    top: unset
}

.button.list-of-items-variation .m-popup,
.button.list-of-items-variation .m-popup .a-link {
    width: 100%
}

.button.list-of-items-variation .btn {
    color: var(--button-tertiary-corp-color);
    display: flex;
    justify-content: space-between;
    padding: 0;
    width: 100%
}

.button.list-of-items-variation .btn span {
    padding: 0;
    text-align: left;
    width: 70%;
    word-wrap: break-word
}

.button.list-of-items-variation .btn:hover,
.button.list-of-items-variation .btn:focus {
    box-shadow: none;
    --button-box-shadow: none
}

.button.list-of-items-variation .btn:hover {
    color: #191b23
}

.button.list-of-items-variation .btn:hover .abt-icon:before {
    color: #191b23 !important
}

.button.list-of-items-variation .btn .abt-icon {
    color: var(--button-tertiary-corp-color);
    right: 70px
}

@media only screen and (max-width:767.98px) {
    .button.list-of-items-variation .btn .abt-icon {
        right: 10px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .button.list-of-items-variation .btn .abt-icon {
        right: 0
    }
}

.button.a-button--modal-button .btn {
    background-color: #5bc2e7;
    --button-padding-sm: 10px 20px;
    color: #2a2b33;
    font-family: 'BrandonGrotesqueBlack';
    font-size: 1.25rem;
    font-weight: normal
}

.button.a-button--modal-button .btn:hover {
    background-color: #004f71;
    color: #2a2b33
}

.button.a-button--modal-button .btn:focus {
    box-shadow: none;
    text-decoration: none
}

.button.a-button--hero-carousel-corp .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.a-button--hero-carousel-corp .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.a-button--hero-carousel-corp .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.a-button--hero-carousel-corp .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.a-button--hero-carousel-corp .btn {
    --hero-banner-card-button-bg-hover-color: #63666a;
    padding-bottom: 8px
}

.button.a-button--hero-carousel-corp .btn span {
    padding: 0 28px
}

.button.a-button--hero-carousel-corp[class*="font-brandon-grotesque-"] .btn {
    padding-bottom: 4px
}

.button.a-button--hero-carousel-corp-variation-2 .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.a-button--hero-carousel-corp-variation-2 .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.a-button--hero-carousel-corp-variation-2 .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.a-button--hero-carousel-corp-variation-2 .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.a-button--hero-carousel-corp-variation-2 .btn {
    --hero-banner-card-button-bg-hover-color: #63666a;
    padding-bottom: 8px
}

.button.a-button--hero-carousel-corp-variation-2 .btn span {
    padding: 0 28px
}

.button.a-button--hero-carousel-corp-variation-2[class*="font-brandon-grotesque-"] .btn {
    padding-bottom: 4px
}

.button.a-button--hero-carousel-corp-variation-2 .btn {
    --hero-banner-card-button-bg-color: var(--hero-banner-bg-color) !important;
    --hero-banner-card-button-bg-hover-color: #63666a;
    --hero-banner-card-button-text-color: #222731;
    --hero-banner-card-button-text-hover-color: var(--hero-banner-bg-color)
}

@media only screen and (max-width:767.98px) {
    .button.a-button--hero-carousel-corp-variation-2 .btn {
        --hero-banner-card-button-bg-color: #63666a !important
    }

    .button.a-button--hero-carousel-corp-variation-2 .btn,
    .button.a-button--hero-carousel-corp-variation-2 .btn * {
        color: var(--hero-banner-bg-color) !important
    }
}

.button.a-button--hero-primary-button .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.a-button--hero-primary-button .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.a-button--hero-primary-button .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.a-button--hero-primary-button .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.a-button--hero-primary-button .btn {
    padding-bottom: 4px;
    --hero-banner-card-button-bg-color: #019cde !important;
    --hero-banner-card-button-bg-hover-color: #fff;
    --hero-banner-card-button-text-color: #fff;
    --hero-banner-card-button-text-hover-color: #019cde
}

.button.a-button-style--sub-section-panel .btn {
    background-color: var(--hero-banner-card-button-bg-color);
    border: 0;
    color: var(--hero-banner-card-button-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.a-button-style--sub-section-panel .btn:hover {
    background-color: var(--hero-banner-card-button-bg-hover-color);
    color: var(--hero-banner-card-button-text-hover-color)
}

.button.a-button-style--sub-section-panel .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.a-button-style--sub-section-panel .btn::after {
    background: var(--hero-banner-card-button-bg-hover-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.a-button-style--sub-section-panel .btn {
    line-height: normal;
    font-weight: normal;
    padding: 8px 24px 6px;
    --hero-banner-card-button-bg-hover-color: #2a2b33;
    --hero-banner-card-button-text-color: #2a2b33;
    --hero-banner-card-button-text-hover-color: var(--hero-banner-card-button-bg-color)
}

@media only screen and (max-width:767.98px) {
    .button.a-button-style--sub-section-panel .btn {
        background-color: #2a2b33;
        --hero-banner-card-button-text-hover-color: #fff;
        --hero-banner-card-button-text-color: var(--hero-banner-card-button-bg-color);
        padding: 8px 24px
    }
}

.button.a-button-style--sub-section-panel[class*="font-brandon-grotesque-"] .btn {
    padding: 8px 24px 4px
}

.button.a-button--icon-left span {
    padding-left: 0
}

.button.a-button-corp--likebutton {
    margin-bottom: 0 !important
}

.button.a-button-corp--likebutton.font-brandon-bold .btn .abt-icon,
.button.a-button-corp--likebutton.font-brandon-medium .btn .abt-icon,
.button.a-button-corp--likebutton.font-brandon-regular .btn .abt-icon {
    left: 10%;
    top: 9px
}

.button.a-button-corp--likebutton .btn .abt-icon+span {
    padding-left: 0
}

.button.a-button-corp--likebutton+.like-count {
    margin-top: 5px !important;
    visibility: hidden
}

.button.a-button-corp--likebutton+.like-count * {
    color: #888b8d;
    font-family: 'BrandonGrotesqueMedium'
}

.button.a-button-corp--likebutton+.like-count::before {
    content: "("
}

.button.a-button-corp--likebutton+.like-count::after {
    content: ")"
}

.button.a-button-corp--likebutton+.like-count.visible {
    visibility: visible
}

.button.a-button-corp--likebutton+.like-count.left {
    text-align: left
}

.button.a-button-corp--likebutton+.like-count.right {
    text-align: right
}

.button.a-button-corp--likebutton+.like-count.center {
    text-align: center
}

.button.a-button-corp--likebutton .btn {
    background-color: var(--button-corp-likebutton-bg);
    border: var(--button-corp-likebutton-border);
    --button-padding-sm: 7px 8px;
    --button-border-radius: 2px;
    color: var(--button-corp-likebutton-text);
    font-weight: normal;
    transition: all .2s ease;
    text-transform: capitalize;
    width: auto;
    padding-left: 35px
}

.button.a-button-corp--likebutton .btn .abt-icon {
    left: 10px;
    top: 7px
}

.button.a-button-corp--likebutton .btn:hover {
    background-color: var(--button-corp-likebutton-bg-hover);
    box-shadow: none;
    color: var(--button-corp-likebutton-text-hover)
}

.button.a-button-corp--likebutton.like-this-variation .btn .abt-icon+span {
    padding-left: 20px !important
}

.button.a-button-corp--likebutton.like-this-variation .btn {
    border-radius: 0;
    padding: 10px;
    width: auto;
    height: 34px
}

.button.a-button-corp--likebutton.like-this-variation .btn .abt-icon {
    left: 10px;
    margin-top: 2px
}

.button .loadCount {
    padding-right: 10px
}

.button.liked .btn {
    background-color: var(--button-corp-likebutton-bg-hover);
    color: var(--button-corp-likebutton-text-hover);
    pointer-events: none
}

.button.button-variation--tags {
    display: inline-block;
    padding-right: 5px
}

.button.button-variation--tags .btn {
    background-color: #fff;
    border: 1px solid #009cde;
    --button-padding-sm: 7px 10px;
    --button-border-radius: 2px;
    color: #63666a;
    font-weight: normal;
    transition: all .2s ease;
    text-transform: capitalize
}

.button.button-variation--tags .btn:hover {
    background-color: #009cde;
    box-shadow: none;
    color: #fff
}

.button.a-button-corpnews-tertiary-text-color--black .btn {
    --button-corp-text-color: #000
}

.button.a-button-corpnews-tertiary-text-color--white .btn {
    --button-corp-text-color: #fff
}

.button.a-button-corpnews-tertiary-text-color--dark-blue .btn {
    --button-corp-text-color: #002a3a
}

.button.a-button-corpnews-tertiary-text-color--yellow .btn {
    --button-corp-text-color: #ffd100
}

.button.a-button-corpnews-tertiary-text-color--dark-yellow .btn {
    --button-corp-text-color: #ded548
}

.button.a-button-corpnews-tertiary-text-color--green .btn {
    --button-corp-text-color: #7ccc6c
}

.button.a-button-corpnews-tertiary-text-color--dark-green .btn {
    --button-corp-text-color: #00b140
}

.button.a-button-corpnews-tertiary-text-color--fuscia .btn {
    --button-corp-text-color: #aa0061
}

.button.a-button-corpnews-tertiary-text-color--dark-fuscia .btn {
    --button-corp-text-color: #470a68
}

.button.a-button-corpnews-tertiary-text-color--orange .btn {
    --button-corp-text-color: #e4002b
}

.button.a-button-corpnews-tertiary-text-color--dark-orange .btn {
    --button-corp-text-color: #eeb33b
}

.button.a-button-corpnews-tertiary-text-color--cyan .btn {
    --button-corp-text-color: #5bc2e7
}

.button.a-button-corpnews-tertiary-text-color--blue .btn {
    --button-corp-text-color: #004f71
}

.button.a-button-corpnews-tertiary-text-color--gray .btn {
    --button-corp-text-color: #63666a
}

.button.a-button-corpnews-tertiary-text-color--dark-gary .btn {
    --button-corp-text-color: #222731
}

.button.a-button-corpnews-tertiary-text-color--light-gray .btn {
    --button-corp-text-color: #d9d9d6
}

.button.a-button-corpnews-tertiary-text-color--medium-gray .btn {
    --button-corp-text-color: #939799
}

.button.a-button-corpnews-tertiary-text-color--button-gray .btn {
    --button-corp-text-color: #63666b
}

.button.a-button-corpnews-tertiary-text-color--dark-cyan .btn {
    --button-corp-text-color: #007589
}

.button.a-button-corpnews-tertiary-text-color--primary-blue .btn {
    --button-corp-text-color: #009cde
}

.button.a-button-corpnews-tertiary-text-color--mint .btn {
    --button-corp-text-color: #64ccc9
}

.button.a-button-corpnews-tertiary-text-color--bastille .btn {
    --button-corp-text-color: #2a2b33
}

.button.a-button-corpnews-tertiary-text-color--silver .btn {
    --button-corp-text-color: #ccc
}

.button.a-button-corp-bg-color--black .btn {
    --button-corp-bg-color: #000
}

.button.a-button-corp-bg-color--white .btn {
    --button-corp-bg-color: #fff
}

.button.a-button-corp-bg-color--dark-blue .btn {
    --button-corp-bg-color: #002a3a
}

.button.a-button-corp-bg-color--yellow .btn {
    --button-corp-bg-color: #ffd100
}

.button.a-button-corp-bg-color--dark-yellow .btn {
    --button-corp-bg-color: #ded548
}

.button.a-button-corp-bg-color--lemon-yellow .btn {
    --button-corp-bg-color: #fffc57
}

.button.a-button-corp-bg-color--green .btn {
    --button-corp-bg-color: #7ccc6c
}

.button.a-button-corp-bg-color--dark-green .btn {
    --button-corp-bg-color: #00b140
}

.button.a-button-corp-bg-color--fuscia .btn {
    --button-corp-bg-color: #aa0061
}

.button.a-button-corp-bg-color--dark-fuscia .btn {
    --button-corp-bg-color: #470a68
}

.button.a-button-corp-bg-color--orange .btn {
    --button-corp-bg-color: #e4002b
}

.button.a-button-corp-bg-color--dark-orange .btn {
    --button-corp-bg-color: #eeb33b
}

.button.a-button-corp-bg-color--cyan .btn {
    --button-corp-bg-color: #5bc2e7
}

.button.a-button-corp-bg-color--blue .btn {
    --button-corp-bg-color: #004f71
}

.button.a-button-corp-bg-color--gray .btn {
    --button-corp-bg-color: #63666a
}

.button.a-button-corp-bg-color--dark-gary .btn {
    --button-corp-bg-color: #222731
}

.button.a-button-corp-bg-color--light-gray .btn {
    --button-corp-bg-color: #d9d9d6
}

.button.a-button-corp-bg-color--medium-gray .btn {
    --button-corp-bg-color: #939799
}

.button.a-button-corp-bg-color--button-gray .btn {
    --button-corp-bg-color: #63666b
}

.button.a-button-corp-bg-color--dark-cyan .btn {
    --button-corp-bg-color: #007589
}

.button.a-button-corp-bg-color--primary-blue .btn {
    --button-corp-bg-color: #009cde
}

.button.a-button-corp-bg-color--mint .btn {
    --button-corp-bg-color: #64ccc9
}

.button.a-button-corp-bg-color--bastille .btn {
    --button-corp-bg-color: #2a2b33
}

.button.a-button-corp-bg-color--silver .btn {
    --button-corp-bg-color: #ccc
}

.button.button-variation--corp-primary .btn {
    background-color: var(--button-corp-bg-color);
    border: 0;
    color: var(--button-corp-text-color);
    position: relative;
    transition: all .3s ease;
    z-index: 0
}

.button.button-variation--corp-primary .btn:hover {
    background-color: var(--button-corp-text-color);
    color: var(--button-corp-bg-color)
}

.button.button-variation--corp-primary .btn:hover::after {
    bottom: 0;
    height: 100%
}

.button.button-variation--corp-primary .btn::after {
    background: var(--button-corp-text-color);
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1
}

.button.button-no-style {
    display: flex
}

.button.button-no-style .btn {
    background: 0;
    font-family: 'BrandonGrotesqueBold';
    clear: both;
    color: #2a2b33;
    margin-top: 3px;
    font-size: .875rem;
    line-height: 1em;
    text-transform: uppercase;
    padding-left: 0
}

.button.button-no-style .btn:focus {
    box-shadow: none;
    text-decoration: none
}

.button.button-no-style:hover {
    cursor: pointer;
    background-color: transparent;
    box-shadow: none
}

.button.button-variation--scroll-up {
    bottom: 20px;
    display: none;
    margin: 0 !important;
    position: fixed;
    right: 5%;
    z-index: 98
}

.button.button-variation--scroll-up .btn {
    background-color: #222731;
    padding: 20px 24px
}

.button.button-variation--scroll-up .btn:hover,
.button.button-variation--scroll-up .btn:focus {
    background-color: #555
}

.button.button-variation--scroll-up .btn .abt-icon {
    color: #fff
}

.button.button-sub-section-panel-variation-2 .btn {
    color: #d9d9d6;
    background-color: #00747e;
    padding: 10px;
    box-shadow: inset 0 0 0 #d9d9d6;
    transition: ease-out .3s;
    border: 0;
    border-radius: 0
}

.button.button-sub-section-panel-variation-2 .btn:hover {
    box-shadow: inset 0 40px 0 #d9d9d6;
    color: #00747e
}

@media only screen and (max-width:767.98px) {
    .button.button-sub-section-panel-variation-2 {
        width: 50%
    }

    .button.button-sub-section-panel-variation-2 .btn {
        color: #d9d9d6;
        background-color: #222731
    }

    .button.button-sub-section-panel-variation-2 .btn:hover {
        color: #00747e;
        background-color: #d9d9d6
    }
}

.button.button--font-style .btn {
    font-family: 'BrandonGrotesqueBold' !important;
    font-size: .875rem !important;
    font-weight: 500
}

@media only screen and (min-width:992px) {
    .button.button-cta--variation-accordion {
        width: 85%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .button.button-cta--variation-accordion {
        width: 90%
    }
}

.button.button-cta--variation-accordion .btn {
    background: 0;
    border-bottom: 1px solid #dbdbdb;
    border-top: 0;
    color: #00747e;
    display: flex;
    padding: 1.35rem 1rem;
    width: 100%
}

.button.button-cta--variation-accordion .btn .abt-icon {
    font-weight: 700
}

.button.button-cta--variation-accordion .btn span {
    font-weight: normal;
    padding-left: 5px
}

.button.button-cta--variation-accordion .btn:hover {
    background: #f4f4f4;
    box-shadow: none
}

.button.button-cta--variation-accordion .btn:hover .abt-icon::before {
    --button-color-hover: #343434
}

.button.button-cta--variation-accordion .btn span:hover {
    color: #343434
}

.button.button-icon--extreme-right .abt-icon:not(.abt-icon-only) {
    display: inherit;
    right: 0
}

.button.nutrition-news .btn {
    display: flex;
    text-align: left
}

.button.nutrition-news .btn:hover {
    box-shadow: none;
    text-decoration: none
}

.button.nutrition-news .btn .abt-icon {
    padding-top: 5px
}

.button.nutrition-news .btn span {
    padding-left: 2px
}

.button.nutrition-news .btn .abt-icon-right-arrow:before {
    color: #888b8d;
    font-size: .625rem
}

.button.text--left .btn {
    text-align: left
}

.button.text--right .btn {
    text-align: right
}

.button.button-20px .btn {
    font-size: 1.25rem !important
}

.button.button-product-variation .btn {
    border-radius: 0;
    font-size: .875rem;
    padding: 5px 15px 1px;
    margin-bottom: 10px;
    margin-top: 10px
}

.button.button-careers-variation a.btn {
    color: #fff !important
}

.button.a-button-14px a span {
    font-size: .875rem !important
}

@media only screen and (min-width:992px) {
    .button.video-btn-icon-adjustment .btn .abt-icon {
        position: absolute;
        top: 8px
    }
}

.button.btn-red-varient .btn {
    background: #e4002b !important
}

.button.btn-red-varient .btn:hover span {
    color: #e4002b
}

.button.white-text-btn .btn {
    color: #fff !important
}

.m-card.m-card--honerlist-variation .m-card-link:hover *,
.m-card.m-card--honerlist-variation .m-card-link:active *,
.m-card.m-card--honerlist-variation .m-card-link:focus * {
    color: #23527c !important
}

.m-card.m-card--variation-featured-items .m-card__body {
    padding-left: 0;
    padding-top: 13px;
    padding-right: 0;
    padding-bottom: 8px
}

@media only screen and (max-width:767.98px) {
    .m-card.m-card--variation-featured-items .m-card__image img {
        height: 150px;
        width: 220px
    }
}

.m-card.m-card--variation-featured-items+.list-of-items-variation .btn .abt-icon {
    right: 0
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-card.m-card--variation-featured-items+.list-of-items-variation .btn .abt-icon {
        right: 75px
    }
}

.m-card.m-card--image-down {
    flex-direction: column-reverse
}

.m-card.m-card--image-down .m-card-link {
    display: flex;
    flex-direction: column-reverse
}

.m-card.m-card--border-none::before {
    box-shadow: none;
    border: 0
}

.m-card.m-card--box-shadow-none::before {
    box-shadow: none
}

.m-card.m-card--show-border::before {
    --card-border: 1px solid #d9d9d6
}

.m-card.m-card--text-align--center .m-card__body {
    text-align: center
}

.m-card.m-card__title-white {
    --card-title-color: #fff
}

.m-card.m-card__title-yellow {
    --card-title-color: #ffd100
}

.m-card.m-card__title-dark-yellow {
    --card-title-color: #ded548
}

.m-card.m-card__title-green {
    --card-title-color: #7ccc6c
}

.m-card.m-card__title-dark-green {
    --card-title-color: #00b140
}

.m-card.m-card__title-fuscia {
    --card-title-color: #aa0061
}

.m-card.m-card__title-dark-fuscia {
    --card-title-color: #470a68
}

.m-card.m-card__title-orange {
    --card-title-color: #e4002b
}

.m-card.m-card__title-medium-orange {
    --card-title-color: #ff6900
}

.m-card.m-card__title-dark-orange {
    --card-title-color: #eeb33b
}

.m-card.m-card__title-cyan {
    --card-title-color: #5bc2e7
}

.m-card.m-card__title-blue {
    --card-title-color: #004f71
}

.m-card.m-card__title-gray {
    --card-title-color: #63666a
}

.m-card.m-card__title-dark-grey {
    --card-title-color: #222731
}

.m-card.m-card__title-light-grey {
    --card-title-color: #d9d9d6
}

.m-card.m-card__title-primary-black {
    --card-title-color: #000
}

.m-card.m-card__title-multitexticon-blue {
    --card-title-color: #6ec7e5
}

.m-card.m-card__title-dark-charcoal {
    --card-title-color: #333
}

.m-card.m-card__title-bastile {
    --card-title-color: #2a2b33
}

.m-card.m-card__title-primary-blue {
    --card-title-color: #009cde
}

.m-card.m-card__title-dark-tangerine {
    --card-title-color: #ff9d14
}

.m-card.m-card__description-white {
    --card-description-color: #fff
}

.m-card.m-card__description-yellow {
    --card-description-color: #ffd100
}

.m-card.m-card__description-dark-yellow {
    --card-description-color: #ded548
}

.m-card.m-card__description-green {
    --card-description-color: #7ccc6c
}

.m-card.m-card__description-dark-green {
    --card-description-color: #00b140
}

.m-card.m-card__description-fuscia {
    --card-description-color: #aa0061
}

.m-card.m-card__description-dark-fuscia {
    --card-description-color: #470a68
}

.m-card.m-card__description-orange {
    --card-description-color: #e4002b
}

.m-card.m-card__description-medium-orange {
    --card-description-color: #ff6900
}

.m-card.m-card__description-dark-orange {
    --card-description-color: #eeb33b
}

.m-card.m-card__description-cyan {
    --card-description-color: #5bc2e7
}

.m-card.m-card__description-blue {
    --card-description-color: #004f71
}

.m-card.m-card__description-gray {
    --card-description-color: #63666a
}

.m-card.m-card__description-dark-grey {
    --card-description-color: #222731
}

.m-card.m-card__description-light-grey {
    --card-description-color: #d9d9d6
}

.m-card.m-card__description-primary-black {
    --card-description-color: #000
}

.m-card.m-card__description-multitexticon-blue {
    --card-description-color: #6ec7e5
}

.m-card.m-card__description-dark-charcoal {
    --card-description-color: #333
}

.m-card.m-card__description-bastile {
    --card-description-color: #2a2b33
}

.m-card.m-card__description-primary-blue {
    --card-description-color: #009cde
}

.m-card.m-card-variation--multitexticon.mob-img--left {
    --card-media-height-mobile: 120px
}

.m-card.m-card-variation--multitexticon.mob-img--left.mob-multitexticon-unset-display {
    display: unset !important
}

.m-card.m-card-variation--multitexticon.mob-img--left .m-card__media {
    --card-media-height: 120px
}

@media only screen and (min-width:992px) {
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card__body {
        --card-body-padding: 5px 0 0 0;
        min-height: 180px
    }
}

@media only screen and (max-width:767.98px) {

    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link),
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link {
        align-items: center;
        display: flex;
        flex-direction: row;
        justify-content: center
    }

    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__media,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__media {
        width: 20%
    }

    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__media .m-card__image .cmp-image__image,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__media .m-card__image .cmp-image__image {
        width: 100%
    }

    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body {
        padding: 8px 0 0 13px;
        width: 80%;
        word-wrap: break-word
    }

    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title,
    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title *,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title * {
        text-align: left !important
    }

    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__description,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__description,
    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__description *,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__description * {
        text-align: left !important
    }
}

@media only screen and (max-width:991.98px) {

    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title,
    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title *,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title *,
    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h1,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h1,
    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h2,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h2,
    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h3,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h3,
    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h4,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h4,
    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h5,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h5,
    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h6,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h6,
    .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+p,
    .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+p {
        font-family: 'BrandonGrotesqueBold' !important;
        text-transform: uppercase;
        margin: 0;
        line-height: 1.125em
    }

    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title *,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title *,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h1,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h1,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h2,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h2,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h3,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h3,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h4,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h4,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h5,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h5,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h6,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h6,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+p,
    html[lang*="cn"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+p,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title *,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title *,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h1,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h1,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h2,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h2,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h3,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h3,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h4,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h4,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h5,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h5,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h6,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h6,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+p,
    html[lang*="ja"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+p,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title *,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title *,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h1,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h1,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h2,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h2,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h3,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h3,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h4,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h4,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h5,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h5,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+h6,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+h6,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left:not(.m-card-link) .m-card__body .m-card__title+p,
    html[lang*="vi"] .m-card.m-card-variation--multitexticon.mob-img--left .m-card-link .m-card__body .m-card__title+p {
        font-family: 'Brandon Bold' !important
    }
}

.m-card.m-card-variation--multitexticon.mob-img--right {
    --card-media-height-mobile: 120px;
    padding-right: 8px
}

.m-card.m-card-variation--multitexticon.mob-img--right .m-card__media {
    --card-media-height: 120px
}

@media only screen and (min-width:992px) {
    .m-card.m-card-variation--multitexticon.mob-img--right .m-card__body {
        --card-body-padding: 5px 0 0 0;
        min-height: 180px
    }
}

@media only screen and (max-width:767.98px) {
    .m-card.m-card-variation--multitexticon.mob-img--right .m-card-link {
        align-items: center;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center
    }

    .m-card.m-card-variation--multitexticon.mob-img--right .m-card-link .m-card__media {
        width: 20%
    }

    .m-card.m-card-variation--multitexticon.mob-img--right .m-card-link .m-card__media .m-card__image .cmp-image__image {
        width: 100%
    }

    .m-card.m-card-variation--multitexticon.mob-img--right .m-card-link .m-card__body {
        padding: 16px 8px 0 0;
        width: 80%;
        word-wrap: break-word
    }

    .m-card.m-card-variation--multitexticon.mob-img--right .m-card-link .m-card__body .m-card__title,
    .m-card.m-card-variation--multitexticon.mob-img--right .m-card-link .m-card__body .m-card__title * {
        text-align: right !important
    }

    .m-card.m-card-variation--multitexticon.mob-img--right .m-card-link .m-card__body .m-card__description * {
        text-align: right !important
    }
}

.m-card.m-card--featureitem-font .m-card__body h1,
.m-card.m-card--featureitem-font .m-card__body h2,
.m-card.m-card--featureitem-font .m-card__body h3,
.m-card.m-card--featureitem-font .m-card__body h4,
.m-card.m-card--featureitem-font .m-card__body h5,
.m-card.m-card--featureitem-font .m-card__body h6,
.m-card.m-card--featureitem-font .m-card__body p {
    font-family: 'Georgia' !important
}

.m-card.m-card--featureditem .m-card-link .m-card__title,
.m-card.m-card--featureditem .m-card-link .m-card__title~h1,
.m-card.m-card--featureditem .m-card-link .m-card__title~h2,
.m-card.m-card--featureditem .m-card-link .m-card__title~h3,
.m-card.m-card--featureditem .m-card-link .m-card__title~h4,
.m-card.m-card--featureditem .m-card-link .m-card__title~h5,
.m-card.m-card--featureditem .m-card-link .m-card__title~h6,
.m-card.m-card--featureditem .m-card-link .m-card__title~p {
    color: #428bca
}

.m-card.m-card--featureditem .m-card-link:hover .m-card__title,
.m-card.m-card--featureditem .m-card-link:hover .m-card__title~h1,
.m-card.m-card--featureditem .m-card-link:hover .m-card__title~h2,
.m-card.m-card--featureditem .m-card-link:hover .m-card__title~h3,
.m-card.m-card--featureditem .m-card-link:hover .m-card__title~h4,
.m-card.m-card--featureditem .m-card-link:hover .m-card__title~h5,
.m-card.m-card--featureditem .m-card-link:hover .m-card__title~h6,
.m-card.m-card--featureditem .m-card-link:hover .m-card__title~p {
    color: #2a6496
}

.m-card.m-card--featureditem .m-card__body .m-card__title,
.m-card.m-card--featureditem .m-card__body .m-card__title~h1,
.m-card.m-card--featureditem .m-card__body .m-card__title~h2,
.m-card.m-card--featureditem .m-card__body .m-card__title~h3,
.m-card.m-card--featureditem .m-card__body .m-card__title~h4,
.m-card.m-card--featureditem .m-card__body .m-card__title~h5,
.m-card.m-card--featureditem .m-card__body .m-card__title~h6,
.m-card.m-card--featureditem .m-card__body .m-card__title~p,
.m-card.m-card--featureditem .m-card__body .m-card__title * {
    font-family: 'Microsoft YaHei' !important;
    font-weight: 700
}

.m-card.m-card--featureditem .m-card__body .m-card__description * {
    font-family: 'Georgia'
}

.m-card.m-card--featureditem .m-card__media {
    --card-media-height: 160px
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-card.m-card--featureditem .m-card__media {
        --card-media-height: 60px !important
    }

    .m-card.m-card--featureditem .m-card__media .cmp-image__image {
        object-fit: fill !important;
        width: 135px !important;
        height: 100%
    }
}

.m-card.m-card--featureditem .m-card__media .cmp-image__image {
    object-fit: fill;
    width: 220px;
    height: 100%
}

.m-card.m-card-variation--executive {
    min-height: 330px
}

.m-card.m-card-variation--executive::before {
    border: 1px solid #d9d9d6;
    border-radius: 0;
    box-shadow: none
}

.m-card.card-productimage-font .m-card__body h1,
.m-card.card-productimage-font .m-card__body h2,
.m-card.card-productimage-font .m-card__body h3,
.m-card.card-productimage-font .m-card__body h4,
.m-card.card-productimage-font .m-card__body h5,
.m-card.card-productimage-font .m-card__body h6 {
    font-family: 'BrandonGrotesqueBold';
    font-size: .93rem
}

.m-card.card-productimage-font .m-card__body .m-card__description p {
    font-family: 'Georgia';
    font-size: .8rem
}

.m-card.m-card--listofreports-font .m-card__body {
    justify-content: center
}

.m-card.m-card--listofreports-font .m-card__body *,
.m-card.m-card--listofreports-font .m-card__body .m-card__title {
    font-family: 'BrandonGrotesqueBold';
    font-weight: 500;
    line-height: 1.125em;
    text-transform: uppercase
}

.m-card.m-card--listofreports-font.m-card--horizontal .m-card__media {
    --card-horizontal-media-height: 150px
}

@media only screen and (max-width:767.98px) {
    .m-card.m-card--listofreports-font.m-card--horizontal .m-card__media {
        --card-horizontal-media-width-mobile: 170px
    }
}

.m-card.m-card--listofreports-font.m-card--horizontal .m-card__media .m-card__image .cmp-image__image {
    border: 1px solid #ccc;
    height: 100%
}

@media only screen and (max-width:767.98px) {
    .m-card.m-card--listofreports-font.m-card--horizontal .m-card__media .m-card__image .cmp-image__image {
        height: 150px
    }
}

.m-card.card--no-media .m-card__media {
    display: none
}

@media only screen and (max-width:767.98px) {
    .m-card.card-mob--no-media .m-card__media {
        display: none
    }
}

.m-card.card-mob--no-media .m-card__body {
    padding: 0 !important;
    width: 100% !important
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-card.card-lg--full-width {
        width: 100% !important
    }
}

.m-card.card--social-links {
    background-color: #fff;
    height: auto !important;
    margin: 0;
    width: 100%
}

@media only screen and (min-width:768px) {
    .m-card.card--social-links {
        border-bottom: 1px solid #ccc
    }
}

.m-card.card--social-links .m-card__media {
    height: 80px
}

.m-card.card--social-links .m-card__body {
    padding: 0
}

.m-card.card--social-links .m-card__body .m-card__title {
    color: #2a2b33;
    line-height: 1.125em;
    --font-family: 'Georgia'
}

.m-card.card--social-links .m-card__body .m-card__description,
.m-card.card--social-links .m-card__body .m-card__description * {
    color: #2a2b33;
    text-transform: uppercase;
    --font-family: 'BrandonGrotesqueBold'
}

.m-card.card--external-news-panel {
    --card-width: 100%
}

.m-card.card--external-news-panel .m-card-link:hover {
    background-color: #eee
}

.m-card.card--external-news-panel .m-card-link .m-card__body {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0
}

.m-card.card--external-news-panel .m-card-link .m-card__body .m-card__title {
    font-size: .9rem;
    color: #2a2b33;
    font-family: 'Georgia';
    font-weight: normal !important
}

.m-card.card--external-news-panel .m-card-link .m-card__body .m-card__description p {
    color: #ccc;
    font-family: 'Georgia';
    font-size: .9rem;
    margin-top: -5px
}

.m-card.m-card--featurelist-font .m-card__body .m-card__title {
    font-family: 'Georgia' !important;
    font-size: 1.25rem !important;
    font-weight: 500
}

.m-card.m-card--featurelist-font .m-card__body .m-card__description p {
    font-family: 'Georgia';
    font-size: .875rem
}

.m-card.m-card--remove-padding .m-card__body {
    padding: 0
}

.m-card.m-card--remove-padding .nonclickablelink {
    display: none
}

html[lang*='en'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='en'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='en'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='en'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='en'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='en'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='en'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='en'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='zh'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='zh'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='zh'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='zh'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='zh'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='zh'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='zh'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='zh'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='id'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='id'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='id'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='id'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='id'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='id'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='id'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='id'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='tr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='tr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='tr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='tr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='tr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='tr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='tr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='tr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='es'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='es'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='es'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='es'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='es'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='es'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='es'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='es'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='gr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='gr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='gr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='gr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='gr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='gr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='gr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='gr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='it'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='it'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='it'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='it'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='it'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='it'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='it'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='it'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='nl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='nl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='nl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='nl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='nl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='nl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='nl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='nl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='pl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='pl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='pl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='pl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='pl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='pl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='pl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='pl'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='pt'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='pt'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='pt'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='pt'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='pt'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='pt'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='pt'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='pt'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='sk'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='sk'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='sk'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='sk'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='sk'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='sk'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='sk'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='sk'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='cz'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='cz'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='cz'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='cz'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='cz'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='cz'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='cz'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='cz'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='fr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='fr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='fr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='fr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='fr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='fr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='fr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='fr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='de'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='de'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='de'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='de'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='de'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='de'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='de'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='de'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='ch'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='ch'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='ch'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='ch'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='ch'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='ch'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='ch'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='ch'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='ar'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='ar'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='ar'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='ar'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='ar'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='ar'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='ar'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='ar'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='ua'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='ua'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='ua'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='ua'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='ua'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='ua'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='ua'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='ua'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='ca'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='ca'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='ca'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='ca'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='ca'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='ca'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='ca'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='ca'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6 {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='ja'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='ja'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='ja'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='ja'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='ja'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='ja'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='ja'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6 {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='kr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='kr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='kr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='kr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='kr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='kr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='kr'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='th'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='th'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='th'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='th'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='th'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='th'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='th'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='th'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6,
html[lang*='tw'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='tw'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='tw'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='tw'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='tw'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='tw'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='tw'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='tw'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6 {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .m-card.m-card-title--font-bold .m-card__body .m-card__title,
html[lang*='vi'] .m-card.m-card-title--font-bold .m-card__body .m-card__title *,
html[lang*='vi'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h1,
html[lang*='vi'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h2,
html[lang*='vi'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h3,
html[lang*='vi'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h4,
html[lang*='vi'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h5,
html[lang*='vi'] .m-card.m-card-title--font-bold .m-card__body .m-card__title+h6 {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='en'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='en'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='en'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='en'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='en'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='en'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='en'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='zh'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='zh'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='zh'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='zh'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='zh'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='zh'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='zh'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='zh'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='id'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='id'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='id'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='id'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='id'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='id'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='id'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='id'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='tr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='tr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='tr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='tr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='tr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='tr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='tr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='tr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='es'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='es'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='es'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='es'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='es'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='es'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='es'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='es'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='gr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='gr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='gr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='gr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='gr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='gr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='gr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='gr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='it'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='it'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='it'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='it'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='it'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='it'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='it'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='it'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='nl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='nl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='nl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='nl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='nl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='nl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='nl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='nl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='pl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='pl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='pl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='pl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='pl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='pl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='pl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='pl'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='pt'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='pt'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='pt'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='pt'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='pt'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='pt'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='pt'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='pt'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='sk'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='sk'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='sk'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='sk'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='sk'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='sk'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='sk'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='sk'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='cz'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='cz'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='cz'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='cz'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='cz'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='cz'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='cz'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='cz'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='fr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='fr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='fr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='fr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='fr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='fr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='fr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='fr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='de'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='de'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='de'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='de'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='de'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='de'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='de'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='de'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='ch'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='ch'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='ch'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='ch'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='ch'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='ch'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='ch'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='ch'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='ar'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='ar'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='ar'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='ar'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='ar'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='ar'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='ar'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='ar'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='ua'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='ua'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='ua'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='ua'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='ua'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='ua'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='ua'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='ua'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='ca'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='ca'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='ca'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='ca'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='ca'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='ca'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='ca'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='ca'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6 {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='kr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='kr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='kr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='kr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='kr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='kr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='kr'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='th'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='th'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='th'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='th'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='th'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='th'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='th'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='th'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6,
html[lang*='tw'] .m-card.m-card-title--font-medium .m-card__body .m-card__title,
html[lang*='tw'] .m-card.m-card-title--font-medium .m-card__body .m-card__title *,
html[lang*='tw'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h1,
html[lang*='tw'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h2,
html[lang*='tw'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h3,
html[lang*='tw'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h4,
html[lang*='tw'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h5,
html[lang*='tw'] .m-card.m-card-title--font-medium .m-card__body .m-card__title+h6 {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='en'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='en'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='en'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='en'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='en'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='en'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='en'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='zh'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='zh'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='zh'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='zh'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='zh'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='zh'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='zh'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='zh'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='id'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='id'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='id'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='id'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='id'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='id'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='id'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='id'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='tr'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='tr'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='tr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='tr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='tr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='tr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='tr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='tr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='es'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='es'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='es'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='es'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='es'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='es'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='es'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='es'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='gr'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='gr'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='gr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='gr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='gr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='gr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='gr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='gr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='it'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='it'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='it'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='it'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='it'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='it'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='it'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='it'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='nl'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='nl'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='nl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='nl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='nl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='nl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='nl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='nl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='pl'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='pl'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='pl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='pl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='pl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='pl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='pl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='pl'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='pt'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='pt'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='pt'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='pt'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='pt'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='pt'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='pt'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='pt'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='sk'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='sk'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='sk'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='sk'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='sk'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='sk'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='sk'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='sk'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='cz'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='cz'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='cz'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='cz'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='cz'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='cz'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='cz'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='cz'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='fr'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='fr'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='fr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='fr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='fr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='fr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='fr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='fr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='de'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='de'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='de'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='de'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='de'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='de'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='de'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='de'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='ch'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='ch'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='ch'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='ch'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='ch'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='ch'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='ch'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='ch'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='ar'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='ar'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='ar'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='ar'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='ar'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='ar'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='ar'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='ar'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='ua'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='ua'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='ua'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='ua'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='ua'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='ua'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='ua'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='ua'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='ca'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='ca'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='ca'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='ca'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='ca'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='ca'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='ca'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='ca'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6 {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='kr'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='kr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='kr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='kr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='kr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='kr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='kr'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='th'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='th'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='th'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='th'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='th'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='th'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='th'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='th'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6,
html[lang*='tw'] .m-card.m-card-title--font-black .m-card__body .m-card__title,
html[lang*='tw'] .m-card.m-card-title--font-black .m-card__body .m-card__title *,
html[lang*='tw'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h1,
html[lang*='tw'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h2,
html[lang*='tw'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h3,
html[lang*='tw'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h4,
html[lang*='tw'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h5,
html[lang*='tw'] .m-card.m-card-title--font-black .m-card__body .m-card__title+h6 {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='en'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='en'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='en'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='en'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='en'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='en'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='en'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='zh'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='zh'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='zh'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='zh'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='zh'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='zh'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='zh'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='zh'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='id'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='id'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='id'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='id'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='id'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='id'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='id'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='id'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='tr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='tr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='tr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='tr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='tr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='tr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='tr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='tr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='es'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='es'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='es'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='es'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='es'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='es'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='es'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='es'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='gr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='gr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='gr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='gr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='gr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='gr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='gr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='gr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='it'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='it'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='it'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='it'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='it'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='it'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='it'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='it'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='nl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='nl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='nl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='nl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='nl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='nl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='nl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='nl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='pl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='pl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='pl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='pl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='pl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='pl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='pl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='pl'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='pt'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='pt'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='pt'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='pt'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='pt'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='pt'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='pt'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='pt'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='sk'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='sk'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='sk'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='sk'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='sk'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='sk'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='sk'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='sk'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='cz'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='cz'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='cz'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='cz'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='cz'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='cz'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='cz'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='cz'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='fr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='fr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='fr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='fr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='fr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='fr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='fr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='fr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='de'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='de'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='de'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='de'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='de'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='de'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='de'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='de'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='ch'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='ch'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='ch'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='ch'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='ch'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='ch'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='ch'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='ch'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='ar'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='ar'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='ar'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='ar'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='ar'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='ar'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='ar'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='ar'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='ua'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='ua'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='ua'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='ua'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='ua'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='ua'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='ua'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='ua'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='ca'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='ca'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='ca'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='ca'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='ca'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='ca'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='ca'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='ca'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6 {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='kr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='kr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='kr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='kr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='kr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='kr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='kr'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='th'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='th'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='th'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='th'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='th'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='th'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='th'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='th'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6,
html[lang*='tw'] .m-card.m-card-title--font-regular .m-card__body .m-card__title,
html[lang*='tw'] .m-card.m-card-title--font-regular .m-card__body .m-card__title *,
html[lang*='tw'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h1,
html[lang*='tw'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h2,
html[lang*='tw'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h3,
html[lang*='tw'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h4,
html[lang*='tw'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h5,
html[lang*='tw'] .m-card.m-card-title--font-regular .m-card__body .m-card__title+h6 {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='en'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='en'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='en'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='en'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='en'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='en'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='en'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='zh'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='zh'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='zh'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='zh'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='zh'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='zh'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='zh'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='zh'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='id'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='id'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='id'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='id'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='id'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='id'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='id'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='id'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='tr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='tr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='tr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='tr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='tr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='tr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='tr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='tr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='es'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='es'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='es'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='es'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='es'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='es'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='es'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='es'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='gr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='gr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='gr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='gr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='gr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='gr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='gr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='gr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='it'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='it'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='it'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='it'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='it'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='it'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='it'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='it'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='nl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='nl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='nl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='nl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='nl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='nl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='nl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='nl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='pl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='pl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='pl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='pl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='pl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='pl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='pl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='pl'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='pt'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='pt'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='pt'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='pt'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='pt'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='pt'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='pt'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='pt'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='sk'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='sk'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='sk'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='sk'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='sk'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='sk'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='sk'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='sk'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='cz'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='cz'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='cz'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='cz'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='cz'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='cz'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='cz'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='cz'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='fr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='fr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='fr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='fr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='fr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='fr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='fr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='fr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='de'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='de'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='de'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='de'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='de'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='de'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='de'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='de'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='ch'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='ch'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='ch'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='ch'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='ch'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='ch'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='ch'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='ch'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='ar'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='ar'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='ar'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='ar'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='ar'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='ar'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='ar'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='ar'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='ua'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='ua'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='ua'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='ua'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='ua'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='ua'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='ua'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='ua'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='ca'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='ca'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='ca'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='ca'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='ca'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='ca'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='ca'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='ca'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6 {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='kr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='kr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='kr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='kr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='kr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='kr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='kr'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='th'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='th'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='th'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='th'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='th'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='th'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='th'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='th'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6,
html[lang*='tw'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='tw'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='tw'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='tw'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='tw'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='tw'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='tw'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='tw'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6 {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .m-card.m-card-title--font-thin .m-card__body .m-card__title,
html[lang*='vi'] .m-card.m-card-title--font-thin .m-card__body .m-card__title *,
html[lang*='vi'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h1,
html[lang*='vi'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h2,
html[lang*='vi'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h3,
html[lang*='vi'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h4,
html[lang*='vi'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h5,
html[lang*='vi'] .m-card.m-card-title--font-thin .m-card__body .m-card__title+h6 {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='en'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='en'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='en'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='en'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='en'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='en'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='en'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='zh'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='zh'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='zh'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='zh'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='zh'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='zh'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='zh'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='zh'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='id'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='id'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='id'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='id'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='id'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='id'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='id'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='id'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='tr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='tr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='tr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='tr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='tr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='tr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='tr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='tr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='es'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='es'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='es'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='es'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='es'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='es'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='es'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='es'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='gr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='gr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='gr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='gr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='gr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='gr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='gr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='gr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='it'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='it'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='it'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='it'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='it'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='it'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='it'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='it'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='nl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='nl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='nl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='nl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='nl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='nl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='nl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='nl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='pl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='pl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='pl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='pl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='pl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='pl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='pl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='pl'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='pt'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='pt'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='pt'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='pt'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='pt'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='pt'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='pt'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='pt'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='sk'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='sk'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='sk'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='sk'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='sk'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='sk'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='sk'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='sk'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='cz'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='cz'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='cz'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='cz'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='cz'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='cz'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='cz'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='cz'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='fr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='fr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='fr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='fr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='fr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='fr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='fr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='fr'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='de'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='de'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='de'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='de'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='de'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='de'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='de'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='de'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='ch'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='ch'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='ch'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='ch'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='ch'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='ch'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='ch'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='ch'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='ar'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='ar'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='ar'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='ar'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='ar'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='ar'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='ar'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='ar'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='ua'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='ua'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='ua'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='ua'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='ua'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='ua'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='ua'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='ua'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6,
html[lang*='ca'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='ca'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='ca'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='ca'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='ca'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='ca'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='ca'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='ca'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6 {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .m-card.m-card-title--font-italic .m-card__body .m-card__title,
html[lang*='vi'] .m-card.m-card-title--font-italic .m-card__body .m-card__title *,
html[lang*='vi'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h1,
html[lang*='vi'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h2,
html[lang*='vi'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h3,
html[lang*='vi'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h4,
html[lang*='vi'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h5,
html[lang*='vi'] .m-card.m-card-title--font-italic .m-card__body .m-card__title+h6 {
    --font-family: 'Segoe UI Italic'
}

html[lang*='en'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='en'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='zh'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='zh'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='id'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='id'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='tr'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='tr'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='es'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='es'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='gr'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='gr'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='it'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='it'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='nl'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='nl'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='pl'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='pl'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='pt'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='pt'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='sk'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='sk'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='cz'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='cz'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='fr'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='fr'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='de'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='de'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='ch'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='ch'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='ar'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='ar'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='ua'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='ua'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='ca'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='ca'] .m-card.m-card-description--font-bold .m-card__body .m-card__description * {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='ja'] .m-card.m-card-description--font-bold .m-card__body .m-card__description * {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='kr'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='th'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='th'] .m-card.m-card-description--font-bold .m-card__body .m-card__description *,
html[lang*='tw'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='tw'] .m-card.m-card-description--font-bold .m-card__body .m-card__description * {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .m-card.m-card-description--font-bold .m-card__body .m-card__description,
html[lang*='vi'] .m-card.m-card-description--font-bold .m-card__body .m-card__description * {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='en'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='zh'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='zh'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='id'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='id'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='tr'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='tr'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='es'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='es'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='gr'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='gr'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='it'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='it'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='nl'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='nl'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='pl'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='pl'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='pt'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='pt'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='sk'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='sk'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='cz'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='cz'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='fr'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='fr'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='de'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='de'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='ch'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='ch'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='ar'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='ar'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='ua'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='ua'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='ca'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='ca'] .m-card.m-card-description--font-medium .m-card__body .m-card__description * {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='kr'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='th'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='th'] .m-card.m-card-description--font-medium .m-card__body .m-card__description *,
html[lang*='tw'] .m-card.m-card-description--font-medium .m-card__body .m-card__description,
html[lang*='tw'] .m-card.m-card-description--font-medium .m-card__body .m-card__description * {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='en'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='zh'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='zh'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='id'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='id'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='tr'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='tr'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='es'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='es'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='gr'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='gr'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='it'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='it'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='nl'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='nl'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='pl'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='pl'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='pt'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='pt'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='sk'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='sk'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='cz'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='cz'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='fr'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='fr'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='de'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='de'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='ch'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='ch'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='ar'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='ar'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='ua'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='ua'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='ca'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='ca'] .m-card.m-card-description--font-black .m-card__body .m-card__description * {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='kr'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='th'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='th'] .m-card.m-card-description--font-black .m-card__body .m-card__description *,
html[lang*='tw'] .m-card.m-card-description--font-black .m-card__body .m-card__description,
html[lang*='tw'] .m-card.m-card-description--font-black .m-card__body .m-card__description * {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='en'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='zh'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='zh'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='id'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='id'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='tr'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='tr'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='es'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='es'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='gr'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='gr'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='it'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='it'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='nl'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='nl'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='pl'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='pl'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='pt'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='pt'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='sk'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='sk'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='cz'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='cz'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='fr'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='fr'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='de'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='de'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='ch'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='ch'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='ar'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='ar'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='ua'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='ua'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='ca'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='ca'] .m-card.m-card-description--font-regular .m-card__body .m-card__description * {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='kr'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='th'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='th'] .m-card.m-card-description--font-regular .m-card__body .m-card__description *,
html[lang*='tw'] .m-card.m-card-description--font-regular .m-card__body .m-card__description,
html[lang*='tw'] .m-card.m-card-description--font-regular .m-card__body .m-card__description * {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='en'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='zh'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='zh'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='id'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='id'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='tr'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='tr'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='es'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='es'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='gr'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='gr'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='it'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='it'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='nl'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='nl'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='pl'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='pl'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='pt'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='pt'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='sk'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='sk'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='cz'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='cz'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='fr'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='fr'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='de'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='de'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='ch'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='ch'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='ar'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='ar'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='ua'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='ua'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='ca'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='ca'] .m-card.m-card-description--font-thin .m-card__body .m-card__description * {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='kr'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='th'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='th'] .m-card.m-card-description--font-thin .m-card__body .m-card__description *,
html[lang*='tw'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='tw'] .m-card.m-card-description--font-thin .m-card__body .m-card__description * {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .m-card.m-card-description--font-thin .m-card__body .m-card__description,
html[lang*='vi'] .m-card.m-card-description--font-thin .m-card__body .m-card__description * {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='en'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='zh'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='zh'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='id'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='id'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='tr'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='tr'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='es'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='es'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='gr'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='gr'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='it'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='it'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='nl'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='nl'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='pl'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='pl'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='pt'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='pt'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='sk'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='sk'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='cz'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='cz'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='fr'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='fr'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='de'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='de'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='ch'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='ch'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='ar'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='ar'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='ua'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='ua'] .m-card.m-card-description--font-italic .m-card__body .m-card__description *,
html[lang*='ca'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='ca'] .m-card.m-card-description--font-italic .m-card__body .m-card__description * {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .m-card.m-card-description--font-italic .m-card__body .m-card__description,
html[lang*='vi'] .m-card.m-card-description--font-italic .m-card__body .m-card__description * {
    --font-family: 'Segoe UI Italic'
}

.m-card.m-card-title--font-arial {
    --card-title-font-family: 'Arial'
}

.m-card.m-card-title--font-brandon-grotesque-medium {
    --card-title-font-family: 'BrandonGrotesqueMedium'
}

.m-card.m-card-title--font-brandon-grotesque-black {
    --card-title-font-family: 'BrandonGrotesqueBlack'
}

.m-card.m-card-title--font-brandon-grotesque-regular {
    --card-title-font-family: 'BrandonGrotesqueRegular'
}

.m-card.m-card-title--font-brandon-grotesque-bold {
    --card-title-font-family: 'BrandonGrotesqueBold'
}

.m-card.m-card-title--font-georgia {
    --card-title-font-family: 'Georgia'
}

.m-card.m-card-title--font-meiryo {
    --card-title-font-family: 'Meiryo'
}

.m-card.m-card-title--font-segoe-ui {
    --card-title-font-family: 'Segoe UI'
}

.m-card.m-card-title--font-times-new-roman {
    --card-title-font-family: 'Times New Roman'
}

.m-card.m-card-title--font-extazy-black {
    --card-title-font-family: 'Extazy Black'
}

.m-card.m-card-title--font-extazy-bold {
    --card-title-font-family: 'Extazy Bold'
}

.m-card.m-card-title--font-extazy-light {
    --card-title-font-family: 'Extazy Light'
}

.m-card.m-card-title--font-extazy-regular {
    --card-title-font-family: 'Extazy Regular'
}

.m-card.m-card-title--font-noto-sans-thin {
    --card-title-font-family: 'Noto Sans TC Thin'
}

.m-card.m-card-title--font-noto-sans-light {
    --card-title-font-family: 'Noto Sans TC Light'
}

.m-card.m-card-title--font-noto-sans-regular {
    --card-title-font-family: 'Noto Sans TC Regular'
}

.m-card.m-card-title--font-noto-sans-medium {
    --card-title-font-family: 'Noto Sans TC Medium'
}

.m-card.m-card-title--font-noto-sans-bold {
    --card-title-font-family: 'Noto Sans TC Bold'
}

.m-card.m-card-title--font-noto-sans-black {
    --card-title-font-family: 'Noto Sans TC Black'
}

.m-card.m-card-title--font-microsoft-ya-hei {
    --card-title-font-family: 'Microsoft YaHei'
}

.m-card.m-card-title--font-calibri {
    --card-title-font-family: 'Calibri'
}

.m-card.m-card-title--font-sans-serif {
    --card-title-font-family: 'sans-serif'
}

.m-card.m-card-title--font-noto-sans-kr {
    --card-title-font-family: '"Noto Sans KR", sans-serif'
}

.m-card.m-card-title--font-mercury-text-g1-roman {
    --card-title-font-family: 'Mercury Text G1 Roman'
}

.m-card.m-card-title--font-Helvetica-neue {
    --card-title-font-family: 'Helvetica Neue'
}

.m-card.m-card-title--font-hiragino-mincho-pron {
    --card-title-font-family: 'Hiragino Mincho ProN', 'MS PGothic'
}

.m-card.m-card-title--font-malgun-gothic-w35-regular {
    --card-title-font-family: 'Malgun Gothic W35 Regular'
}

.m-card.m-card-title--font-noto-sans-sc-regular {
    --card-title-font-family: 'Noto Sans SC Regular'
}

.m-card.m-card-title--font-noto-sans-vi-regular {
    --card-title-font-family: 'Noto Sans Regular'
}

.m-card.m-card-title--font-noto-serif-vi-regular {
    --card-title-font-family: 'Noto Serif Regular'
}

.m-card.m-card-title--font-brandon-medium {
    --card-title-font-family: 'Brandon Medium'
}

.m-card.m-card-title--font-brandon-bold {
    --card-title-font-family: 'Brandon Bold'
}

.m-card.m-card-title--font-brandon-regular {
    --card-title-font-family: 'Brandon Regular'
}

.m-card.m-card-description--font-arial {
    --card-description-font-family: 'Arial'
}

.m-card.m-card-description--font-brandon-grotesque-medium {
    --card-description-font-family: 'BrandonGrotesqueMedium'
}

.m-card.m-card-description--font-brandon-grotesque-black {
    --card-description-font-family: 'BrandonGrotesqueBlack'
}

.m-card.m-card-description--font-brandon-grotesque-regular {
    --card-description-font-family: 'BrandonGrotesqueRegular'
}

.m-card.m-card-description--font-brandon-grotesque-bold {
    --card-description-font-family: 'BrandonGrotesqueBold'
}

.m-card.m-card-description--font-georgia {
    --card-description-font-family: 'Georgia'
}

.m-card.m-card-description--font-meiryo {
    --card-description-font-family: 'Meiryo'
}

.m-card.m-card-description--font-segoe-ui {
    --card-description-font-family: 'Segoe UI'
}

.m-card.m-card-description--font-times-new-roman {
    --card-description-font-family: 'Times New Roman'
}

.m-card.m-card-description--font-extazy-black {
    --card-description-font-family: 'Extazy Black'
}

.m-card.m-card-description--font-extazy-bold {
    --card-description-font-family: 'Extazy Bold'
}

.m-card.m-card-description--font-extazy-light {
    --card-description-font-family: 'Extazy Light'
}

.m-card.m-card-description--font-extazy-regular {
    --card-description-font-family: 'Extazy Regular'
}

.m-card.m-card-description--font-noto-sans-thin {
    --card-description-font-family: 'Noto Sans TC Thin'
}

.m-card.m-card-description--font-noto-sans-light {
    --card-description-font-family: 'Noto Sans TC Light'
}

.m-card.m-card-description--font-noto-sans-regular {
    --card-description-font-family: 'Noto Sans TC Regular'
}

.m-card.m-card-description--font-noto-sans-medium {
    --card-description-font-family: 'Noto Sans TC Medium'
}

.m-card.m-card-description--font-noto-sans-bold {
    --card-description-font-family: 'Noto Sans TC Bold'
}

.m-card.m-card-description--font-noto-sans-black {
    --card-description-font-family: 'Noto Sans TC Black'
}

.m-card.m-card-description--font-microsoft-ya-hei {
    --card-description-font-family: 'Microsoft YaHei'
}

.m-card.m-card-description--font-calibri {
    --card-description-font-family: 'Calibri'
}

.m-card.m-card-description--font-sans-serif {
    --card-description-font-family: 'sans-serif'
}

.m-card.m-card-description--font-noto-sans-kr {
    --card-description-font-family: '"Noto Sans KR", sans-serif'
}

.m-card.m-card-description--font-mercury-text-g1-roman {
    --card-description-font-family: 'Mercury Text G1 Roman'
}

.m-card.m-card-description--font-Helvetica-neue {
    --card-description-font-family: 'Helvetica Neue'
}

.m-card.m-card-description--font-hiragino-mincho-pron {
    --card-description-font-family: 'Hiragino Mincho ProN', 'MS PGothic'
}

.m-card.m-card-description--font-malgun-gothic-w35-regular {
    --card-description-font-family: 'Malgun Gothic W35 Regular'
}

.m-card.m-card-description--font-noto-sans-sc-regular {
    --card-description-font-family: 'Noto Sans SC Regular'
}

.m-card.m-card-description--font-noto-sans-vi-regular {
    --card-description-font-family: 'Noto Sans Regular'
}

.m-card.m-card-description--font-noto-serif-vi-regular {
    --card-description-font-family: 'Noto Serif Regular'
}

.m-card.m-card-description--font-brandon-medium {
    --card-description-font-family: 'Brandon Medium'
}

.m-card.m-card-description--font-brandon-bold {
    --card-description-font-family: 'Brandon Bold'
}

.m-card.m-card-description--font-brandon-regular {
    --card-description-font-family: 'Brandon Regular'
}

.m-card.m-card-bg-hover--light-gray .m-card-link:hover {
    background-color: #eee
}

.m-card.m-card-bg-hover--video-popup-gray .m-card-link:hover {
    background-color: #d9d9d7
}

.m-card.m-card-pull-quotes {
    --card-media-height: 110px;
    display: flex !important;
    flex-direction: row;
    width: 100%
}

.m-card.m-card-pull-quotes .m-card__media {
    flex: 0 0 25%
}

@media only screen and (max-width:767.98px) {
    .m-card.m-card-pull-quotes .m-card__media {
        flex: 0 0 22%;
        --card-media-height-mobile: 80px
    }
}

@media only screen and (min-width:1441px) {
    .m-card.m-card-pull-quotes .m-card__media {
        flex: 0 0 23%
    }
}

.m-card.m-card-pull-quotes .m-card__media .cmp-image {
    align-items: start;
    justify-content: left
}

.m-card.m-card-pull-quotes .m-card__body {
    --card-body-padding: 0
}

@media only screen and (min-width:1441px) {
    .m-card.m-card-pull-quotes .m-card__body {
        flex: 0 0 70%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-card.m-card-pull-quotes .m-card__body {
        --card-body-padding: 0 0 0 12px
    }
}

@media only screen and (max-width:767.98px) {
    .m-card.m-card-pull-quotes .m-card__body {
        --card-body-padding: 0 0 0 8px
    }
}

.m-card.m-card-pull-quotes .m-card__body * {
    margin: 0
}

.m-card.card--video-popup {
    --card-border: 1px solid #ccc;
    --card-border-radius: 0;
    --card-box-shadow: 0;
    --card-media-border-radius: 0;
    margin-bottom: 20px;
    margin-top: 0
}

.m-card.card--video-popup:hover .m-card-link {
    background-color: #d9d9d7
}

.m-card.card--video-popup:hover .m-card-link .m-card__media {
    background-color: unset
}

@media only screen and (min-width:768px) {
    .m-card.card--video-popup .m-card-link {
        height: 100%
    }
}

.m-card.card--video-popup .m-card-link .m-card__media .toggle-overlay .hover-text {
    font-family: 'BrandonGrotesqueBold';
    font-weight: 700
}

.m-card.card--video-popup .m-card-link .nonClickableLink {
    display: none
}

@media only screen and (max-width:767.98px) {
    .m-card.card--video-popup {
        width: 100%
    }

    .m-card.card--video-popup .m-card-link {
        display: flex;
        flex-direction: row-reverse
    }

    .m-card.card--video-popup .m-card-link .m-card__media {
        border-radius: 0;
        height: auto;
        min-height: 90px;
        width: 30%
    }

    .m-card.card--video-popup .m-card-link .m-card__media .abt-icon {
        display: none
    }

    .m-card.card--video-popup .m-card-link .m-card__body {
        width: 70%;
        padding-bottom: 0
    }

    .m-card.card--video-popup .m-card-link .m-card__body .m-card__title {
        margin-bottom: 0;
        font-size: .875em
    }

    .m-card.card--video-popup .m-card-link .m-card__body .m-card__description {
        display: none
    }
}

.m-card.card-variation--product-related-info-panel {
    --card-border: 0;
    --card-border-radius: 0;
    --card-box-shadow: 0;
    --card-media-border-radius: 0;
    margin-bottom: 20px;
    margin-top: 0
}

.m-card.card-variation--product-related-info-panel .m-card-link .m-card__media .toggle-overlay .hover-text {
    font-family: 'BrandonGrotesqueBold';
    font-weight: 700
}

.m-card.card-variation--product-related-info-panel .m-card-link .m-card__media .toggle-overlay .story-overlay {
    background-color: rgba(0, 0, 0, 0.6)
}

.m-card.card-variation--product-related-info-panel .m-card-link .nonClickableLink {
    display: none
}

@media only screen and (max-width:767.98px) {
    .m-card.card-variation--product-related-info-panel {
        border-bottom: 1px solid #888b8d;
        width: 100%;
        padding: 10px 0
    }

    .m-card.card-variation--product-related-info-panel .m-card-link {
        display: flex;
        flex-direction: row-reverse
    }

    .m-card.card-variation--product-related-info-panel .m-card-link .m-card__media {
        border-radius: 0;
        height: auto;
        min-height: 90px;
        width: 30%
    }

    .m-card.card-variation--product-related-info-panel .m-card-link .m-card__media .m-card__wrap .toggle-overlay .abt-icon {
        --card-icon-color: #7f7f7f
    }

    .m-card.card-variation--product-related-info-panel .m-card-link .m-card__body {
        width: 70%;
        padding-bottom: 0
    }

    .m-card.card-variation--product-related-info-panel .m-card-link .m-card__body .m-card__title {
        margin-bottom: 0;
        font-size: .875em
    }

    .m-card.card-variation--product-related-info-panel .m-card-link .m-card__body .m-card__description {
        display: none
    }
}

.m-card.card-varient-media-center .m-card-link .m-card__body h4,
.m-card.card-varient-media-center .m-card-link .m-card__body .m-card__title {
    font-size: 1.25rem
}

.m-card.card-varient-media-center .m-card-link .m-card__body .m-card__description p {
    line-height: 1.125rem
}

.title.a-title-color--yellow {
    --title-text-color: #ffd100;
    --title-text-hover-color: #ffd100;
    --title-link-text-color: #ffd100;
    --title-link-text-hover-color: #ffd100
}

.title.a-title-color--dark-yellow {
    --title-link-text-color: #ded548;
    --title-link-text-hover-color: #ded548;
    --title-text-color: #ded548;
    --title-text-hover-color: #ded548
}

.title.a-title-color--green {
    --title-link-text-color: #7ccc6c;
    --title-link-text-hover-color: #7ccc6c;
    --title-text-color: #7ccc6c;
    --title-text-hover-color: #7ccc6c
}

.title.a-title-color--dark-green {
    --title-link-text-color: #00b140;
    --title-link-text-hover-color: #00b140;
    --title-text-color: #00b140;
    --title-text-hover-color: #00b140
}

.title.a-title-color--fuscia {
    --title-link-text-color: #aa0061;
    --title-link-text-hover-color: #aa0061;
    --title-text-color: #aa0061;
    --title-text-hover-color: #aa0061
}

.title.a-title-color--dark-fuscia {
    --title-link-text-color: #470a68;
    --title-link-text-hover-color: #470a68;
    --title-text-color: #470a68;
    --title-text-hover-color: #470a68
}

.title.a-title-color--orange {
    --title-link-text-color: #e4002b;
    --title-link-text-hover-color: #e4002b;
    --title-text-color: #e4002b;
    --title-text-hover-color: #e4002b
}

.title.a-title-color--dark-orange {
    --title-link-text-color: #eeb33b;
    --title-link-text-hover-color: #eeb33b;
    --title-text-color: #eeb33b;
    --title-text-hover-color: #eeb33b
}

.title.a-title-color--cyan {
    --title-link-text-color: #5bc2e7;
    --title-link-text-hover-color: #5bc2e7;
    --title-text-color: #5bc2e7;
    --title-text-hover-color: #5bc2e7
}

.title.a-title-color--blue {
    --title-link-text-color: #004f71;
    --title-link-text-hover-color: #004f71;
    --title-text-color: #004f71;
    --title-text-hover-color: #004f71
}

.title.a-title-color--gray {
    --title-link-text-color: #63666a;
    --title-link-text-hover-color: #63666a;
    --title-text-color: #63666a;
    --title-text-hover-color: #63666a
}

.title.a-title-color--dark-gray {
    --title-link-text-color: #222731;
    --title-link-text-hover-color: #222731;
    --title-text-color: #222731;
    --title-text-hover-color: #222731
}

.title.a-title-color--light-gray {
    --title-link-text-color: #d9d9d6;
    --title-link-text-hover-color: #d9d9d6;
    --title-text-color: #d9d9d6;
    --title-text-hover-color: #d9d9d6
}

.title.a-title-color--medium-gray {
    --title-link-text-color: #939799;
    --title-link-text-hover-color: #939799;
    --title-text-color: #939799;
    --title-text-hover-color: #939799
}

.title.a-title-color--button-gray {
    --title-link-text-color: #63666b;
    --title-link-text-hover-color: #63666b;
    --title-text-color: #63666b;
    --title-text-hover-color: #63666b
}

.title.a-title-color--dark-cyan {
    --title-link-text-color: #007589;
    --title-link-text-hover-color: #007589;
    --title-text-color: #007589;
    --title-text-hover-color: #007589
}

.title.a-title-color--primary-blue {
    --title-link-text-color: #009cde;
    --title-link-text-hover-color: #009cde;
    --title-text-color: #009cde;
    --title-text-hover-color: #009cde
}

.title.a-title-color--button-hover-blue {
    --title-link-text-color: #019cde;
    --title-link-text-hover-color: #019cde;
    --title-text-color: #019cde;
    --title-text-hover-color: #019cde
}

.title.a-title-color--mint {
    --title-link-text-color: #64ccc9;
    --title-link-text-hover-color: #64ccc9;
    --title-text-color: #64ccc9;
    --title-text-hover-color: #64ccc9
}

.title.a-title-color--white {
    --title-link-text-color: #fff;
    --title-link-text-hover-color: #fff;
    --title-text-color: #fff;
    --title-text-hover-color: #fff
}

.title.a-title-color--black {
    --title-link-text-color: #000;
    --title-link-text-hover-color: #000;
    --title-text-color: #000;
    --title-text-hover-color: #000
}

.title.a-title-color--dark-charcoal {
    --title-link-text-color: #333;
    --title-link-text-hover-color: #333;
    --title-text-color: #333;
    --title-text-hover-color: #333
}

@media only screen and (max-width:767.98px) {
    .title.a-mobile-title-color--black {
        --title-text-color: #000;
        --title-link-text-color: #000;
        --title-link-text-hover-color: #000;
        --title-text-hover-color: #000
    }

    .title.a-mobile-title-color--white {
        --title-link-text-color: #fff;
        --title-link-text-hover-color: #fff;
        --title-text-color: #fff;
        --title-text-hover-color: #fff
    }

    .title.a-mobile-title-color--gray {
        --title-link-text-color: #63666a;
        --title-link-text-hover-color: #63666a;
        --title-text-color: #63666a;
        --title-text-hover-color: #63666a
    }

    .title.a-mobile-title-color--medium-gray {
        --title-link-text-color: #939799;
        --title-link-text-hover-color: #939799;
        --title-text-color: #939799;
        --title-text-hover-color: #939799
    }

    .title.a-mobile-title-color--light-gray {
        --title-link-text-color: #d9d9d6;
        --title-link-text-hover-color: #d9d9d6;
        --title-text-color: #d9d9d6;
        --title-text-hover-color: #d9d9d6
    }

    .title.a-mobile-title-color--dark-gray {
        --title-link-text-color: #222731;
        --title-link-text-hover-color: #222731;
        --title-text-color: #222731;
        --title-text-hover-color: #222731
    }

    .title.a-mobile-title-color--button-gray {
        --title-link-text-color: #63666b;
        --title-link-text-hover-color: #63666b;
        --title-text-color: #63666b;
        --title-text-hover-color: #63666b
    }

    .title.a-mobile-title-color--green {
        --title-link-text-color: #7ccc6c;
        --title-link-text-hover-color: #7ccc6c;
        --title-text-color: #7ccc6c;
        --title-text-hover-color: #7ccc6c
    }

    .title.a-mobile-title-color--dark-green {
        --title-link-text-color: #00b140;
        --title-link-text-hover-color: #00b140;
        --title-text-color: #00b140;
        --title-text-hover-color: #00b140
    }

    .title.a-mobile-title-color--fuscia {
        --title-link-text-color: #aa0061;
        --title-link-text-hover-color: #aa0061;
        --title-text-color: #aa0061;
        --title-text-hover-color: #aa0061
    }

    .title.a-mobile-title-color--primary-blue {
        --title-link-text-color: #009cde;
        --title-link-text-hover-color: #009cde;
        --title-text-color: #009cde;
        --title-text-hover-color: #009cde
    }

    .title.a-mobile-title-color--button-hover-blue {
        --title-link-text-color: #019cde;
        --title-link-text-hover-color: #019cde;
        --title-text-color: #019cde;
        --title-text-hover-color: #019cde
    }

    .title.a-mobile-title-color--orange {
        --title-link-text-color: #e4002b;
        --title-link-text-hover-color: #e4002b;
        --title-text-color: #e4002b;
        --title-text-hover-color: #e4002b
    }

    .title.a-mobile-title-color--dark-orange {
        --title-link-text-color: #eeb33b;
        --title-link-text-hover-color: #eeb33b;
        --title-text-color: #eeb33b;
        --title-text-hover-color: #eeb33b
    }

    .title.a-mobile-title-color--cyan {
        --title-link-text-color: #5bc2e7;
        --title-link-text-hover-color: #5bc2e7;
        --title-text-color: #5bc2e7;
        --title-text-hover-color: #5bc2e7
    }

    .title.a-mobile-title-color--yellow {
        --title-text-color: #ffd100;
        --title-text-hover-color: #ffd100;
        --title-link-text-color: #ffd100;
        --title-link-text-hover-color: #ffd100
    }

    .title.a-mobile-title-color--dark-fuscia {
        --title-link-text-color: #470a68;
        --title-link-text-hover-color: #470a68;
        --title-text-color: #470a68;
        --title-text-hover-color: #470a68
    }

    .title.a-mobile-title-color--dark-yellow {
        --title-link-text-color: #ded548;
        --title-link-text-hover-color: #ded548;
        --title-text-color: #ded548;
        --title-text-hover-color: #ded548
    }

    .title.a-mobile-title-color--mint {
        --title-link-text-color: #64ccc9;
        --title-link-text-hover-color: #64ccc9;
        --title-text-color: #64ccc9;
        --title-text-hover-color: #64ccc9
    }
}

.title.text-top-spacing-50 {
    padding-top: 3rem !important
}

.title.text-top-spacing-80 {
    padding-top: 5rem !important
}

.title.a-title-bg-color--yellow {
    --title-bg-color: #ffd100;
    --title-bg-hover-color: #ffd100
}

.title.a-title-bg-color--dark-yellow {
    --title-bg-color: #ded548;
    --title-bg-hover-color: #ded548
}

.title.a-title-bg-color--alice-blue {
    --title-bg-color: #dff0ff;
    --title-bg-hover-color: #dff0ff
}

.title.a-title-bg-color--green {
    --title-bg-color: #7ccc6c;
    --title-bg-hover-color: #7ccc6c
}

.title.a-title-bg-color--dark-green {
    --title-bg-color: #00b140;
    --title-bg-hover-color: #00b140
}

.title.a-title-bg-color--fuscia {
    --title-bg-color: #aa0061;
    --title-bg-hover-color: #aa0061
}

.title.a-title-bg-color--dark-fuscia {
    --title-bg-color: #470a68;
    --title-bg-hover-color: #470a68
}

.title.a-title-bg-color--orange {
    --title-bg-color: #e4002b;
    --title-bg-hover-color: #e4002b
}

.title.a-title-bg-color--dark-orange {
    --title-bg-color: #eeb33b;
    --title-bg-hover-color: #eeb33b
}

.title.a-title-bg-color--cyan {
    --title-bg-color: #5bc2e7;
    --title-bg-hover-color: #5bc2e7
}

.title.a-title-bg-color--blue {
    --title-bg-color: #004f71;
    --title-bg-hover-color: #004f71
}

.title.a-title-bg-color--gray {
    --title-bg-color: #63666a;
    --title-bg-hover-color: #63666a
}

.title.a-title-bg-color--dark-gray {
    --title-bg-color: #222731;
    --title-bg-hover-color: #222731
}

.title.a-title-bg-color--light-gray {
    --title-bg-color: #d9d9d6;
    --title-bg-hover-color: #d9d9d6
}

.title.a-title-bg-color--medium-gray {
    --title-bg-color: #939799;
    --title-bg-hover-color: #939799
}

.title.a-title-bg-color--bastille {
    --title-bg-color: #2a2b33;
    --title-bg-hover-color: #2a2b33
}

.title.a-title-bg-color--button-gray {
    --title-bg-color: #63666b;
    --title-bg-hover-color: #63666b
}

.title.a-title-bg-color--dark-cyan {
    --title-bg-color: #007589;
    --title-bg-hover-color: #007589
}

.title.a-title-bg-color--primary-blue {
    --title-bg-color: #009cde;
    --title-bg-hover-color: #009cde
}

.title.a-title-bg-color--button-hover-blue {
    --title-bg-color: #019cde;
    --title-bg-hover-color: #019cde
}

.title.a-title-bg-color--mint {
    --title-bg-color: #64ccc9;
    --title-bg-hover-color: #64ccc9
}

.title.a-title-bg-color--white {
    --title-bg-color: #fff;
    --title-bg-hover-color: #fff
}

.title.a-title-bg-color--black {
    --title-bg-color: #000;
    --title-bg-hover-color: #000
}

.title.a-title-bg-color--transparent {
    --title-bg-color: transparent;
    --title-bg-hover-color: transparent;
    --title-dark-bg: transparent;
    --title-light-bg: transparent
}

.title.a-title-border-color--white .cmp-title__text,
.title.a-title-border-color--white h1,
.title.a-title-border-color--white h2,
.title.a-title-border-color--white h3,
.title.a-title-border-color--white h4,
.title.a-title-border-color--white h5,
.title.a-title-border-color--white h6 {
    border: 1px solid #fff
}

.title.a-title-border-color--white .cmp-title__text::before,
.title.a-title-border-color--white h1::before,
.title.a-title-border-color--white h2::before,
.title.a-title-border-color--white h3::before,
.title.a-title-border-color--white h4::before,
.title.a-title-border-color--white h5::before,
.title.a-title-border-color--white h6::before,
.title.a-title-border-color--white .cmp-title__text::after,
.title.a-title-border-color--white h1::after,
.title.a-title-border-color--white h2::after,
.title.a-title-border-color--white h3::after,
.title.a-title-border-color--white h4::after,
.title.a-title-border-color--white h5::after,
.title.a-title-border-color--white h6::after {
    border-top: 1px solid #fff
}

.title.a-title-border-color--medium-gray .cmp-title__text,
.title.a-title-border-color--medium-gray h1,
.title.a-title-border-color--medium-gray h2,
.title.a-title-border-color--medium-gray h3,
.title.a-title-border-color--medium-gray h4,
.title.a-title-border-color--medium-gray h5,
.title.a-title-border-color--medium-gray h6 {
    border: 1px solid #939799
}

.title.a-title-border-color--medium-gray .cmp-title__text::before,
.title.a-title-border-color--medium-gray h1::before,
.title.a-title-border-color--medium-gray h2::before,
.title.a-title-border-color--medium-gray h3::before,
.title.a-title-border-color--medium-gray h4::before,
.title.a-title-border-color--medium-gray h5::before,
.title.a-title-border-color--medium-gray h6::before,
.title.a-title-border-color--medium-gray .cmp-title__text::after,
.title.a-title-border-color--medium-gray h1::after,
.title.a-title-border-color--medium-gray h2::after,
.title.a-title-border-color--medium-gray h3::after,
.title.a-title-border-color--medium-gray h4::after,
.title.a-title-border-color--medium-gray h5::after,
.title.a-title-border-color--medium-gray h6::after {
    border-top: 1px solid #939799
}

.title.a-title-border-color--black .cmp-title__text,
.title.a-title-border-color--black h1,
.title.a-title-border-color--black h2,
.title.a-title-border-color--black h3,
.title.a-title-border-color--black h4,
.title.a-title-border-color--black h5,
.title.a-title-border-color--black h6 {
    border: 1px solid #000
}

.title.a-title-border-color--black .cmp-title__text::before,
.title.a-title-border-color--black h1::before,
.title.a-title-border-color--black h2::before,
.title.a-title-border-color--black h3::before,
.title.a-title-border-color--black h4::before,
.title.a-title-border-color--black h5::before,
.title.a-title-border-color--black h6::before,
.title.a-title-border-color--black .cmp-title__text::after,
.title.a-title-border-color--black h1::after,
.title.a-title-border-color--black h2::after,
.title.a-title-border-color--black h3::after,
.title.a-title-border-color--black h4::after,
.title.a-title-border-color--black h5::after,
.title.a-title-border-color--black h6::after {
    border-top: 1px solid #000
}

.title.a-title-border-color--gray .cmp-title__text,
.title.a-title-border-color--gray h1,
.title.a-title-border-color--gray h2,
.title.a-title-border-color--gray h3,
.title.a-title-border-color--gray h4,
.title.a-title-border-color--gray h5,
.title.a-title-border-color--gray h6 {
    border: 1px solid #63666a
}

.title.a-title-border-color--gray .cmp-title__text::before,
.title.a-title-border-color--gray h1::before,
.title.a-title-border-color--gray h2::before,
.title.a-title-border-color--gray h3::before,
.title.a-title-border-color--gray h4::before,
.title.a-title-border-color--gray h5::before,
.title.a-title-border-color--gray h6::before,
.title.a-title-border-color--gray .cmp-title__text::after,
.title.a-title-border-color--gray h1::after,
.title.a-title-border-color--gray h2::after,
.title.a-title-border-color--gray h3::after,
.title.a-title-border-color--gray h4::after,
.title.a-title-border-color--gray h5::after,
.title.a-title-border-color--gray h6::after {
    border-top: 1px solid #63666a
}

.title.a-title-border-color--match-text .cmp-title__text,
.title.a-title-border-color--match-text h1,
.title.a-title-border-color--match-text h2,
.title.a-title-border-color--match-text h3,
.title.a-title-border-color--match-text h4,
.title.a-title-border-color--match-text h5,
.title.a-title-border-color--match-text h6 {
    border: 1px solid var(--title-text-color)
}

.title.a-title-border-color--match-text .cmp-title__text::before,
.title.a-title-border-color--match-text h1::before,
.title.a-title-border-color--match-text h2::before,
.title.a-title-border-color--match-text h3::before,
.title.a-title-border-color--match-text h4::before,
.title.a-title-border-color--match-text h5::before,
.title.a-title-border-color--match-text h6::before,
.title.a-title-border-color--match-text .cmp-title__text::after,
.title.a-title-border-color--match-text h1::after,
.title.a-title-border-color--match-text h2::after,
.title.a-title-border-color--match-text h3::after,
.title.a-title-border-color--match-text h4::after,
.title.a-title-border-color--match-text h5::after,
.title.a-title-border-color--match-text h6::after {
    border-top: 1px solid var(--title-text-color)
}

.title.a-title-border-color--match-bg .cmp-title__text,
.title.a-title-border-color--match-bg h1,
.title.a-title-border-color--match-bg h2,
.title.a-title-border-color--match-bg h3,
.title.a-title-border-color--match-bg h4,
.title.a-title-border-color--match-bg h5,
.title.a-title-border-color--match-bg h6 {
    border: 1px solid var(--title-bg-color)
}

.title.a-title-border-color--match-bg .cmp-title__text::before,
.title.a-title-border-color--match-bg h1::before,
.title.a-title-border-color--match-bg h2::before,
.title.a-title-border-color--match-bg h3::before,
.title.a-title-border-color--match-bg h4::before,
.title.a-title-border-color--match-bg h5::before,
.title.a-title-border-color--match-bg h6::before,
.title.a-title-border-color--match-bg .cmp-title__text::after,
.title.a-title-border-color--match-bg h1::after,
.title.a-title-border-color--match-bg h2::after,
.title.a-title-border-color--match-bg h3::after,
.title.a-title-border-color--match-bg h4::after,
.title.a-title-border-color--match-bg h5::after,
.title.a-title-border-color--match-bg h6::after {
    border-top: 1px solid var(--title-bg-color)
}

.title.a-title-text-no-border .cmp-title__text {
    border: 0 !important
}

.title.a-title-bg-hover-color:hover {
    --title-bg-hover-color: #d9d9d6;
    transition: all .5s
}

.title.a-title-bg-hover-color:hover .cmp-title__text {
    --title-text-hover-color: var(--title-bg-color)
}

.title.a-title-bg-hover-color:hover .cmp-title__text .cmp-title__link {
    --title-link-text-hover-color: var(--title-bg-color);
    text-decoration: none
}

@media only screen and (max-width:767.98px) {

    .title.a-title-mob-border-color--white .cmp-title__text,
    .title.a-title-mob-border-color--white h1,
    .title.a-title-mob-border-color--white h2,
    .title.a-title-mob-border-color--white h3,
    .title.a-title-mob-border-color--white h4,
    .title.a-title-mob-border-color--white h5,
    .title.a-title-mob-border-color--white h6 {
        border: 1px solid #fff
    }

    .title.a-title-mob-border-color--white .cmp-title__text::before,
    .title.a-title-mob-border-color--white h1::before,
    .title.a-title-mob-border-color--white h2::before,
    .title.a-title-mob-border-color--white h3::before,
    .title.a-title-mob-border-color--white h4::before,
    .title.a-title-mob-border-color--white h5::before,
    .title.a-title-mob-border-color--white h6::before,
    .title.a-title-mob-border-color--white .cmp-title__text::after,
    .title.a-title-mob-border-color--white h1::after,
    .title.a-title-mob-border-color--white h2::after,
    .title.a-title-mob-border-color--white h3::after,
    .title.a-title-mob-border-color--white h4::after,
    .title.a-title-mob-border-color--white h5::after,
    .title.a-title-mob-border-color--white h6::after {
        border-top: 1px solid #fff
    }

    .title.a-title-mob-border-color--yellow .cmp-title__text,
    .title.a-title-mob-border-color--yellow h1,
    .title.a-title-mob-border-color--yellow h2,
    .title.a-title-mob-border-color--yellow h3,
    .title.a-title-mob-border-color--yellow h4,
    .title.a-title-mob-border-color--yellow h5,
    .title.a-title-mob-border-color--yellow h6 {
        border: 1px solid #ffd100
    }

    .title.a-title-mob-border-color--yellow .cmp-title__text::before,
    .title.a-title-mob-border-color--yellow h1::before,
    .title.a-title-mob-border-color--yellow h2::before,
    .title.a-title-mob-border-color--yellow h3::before,
    .title.a-title-mob-border-color--yellow h4::before,
    .title.a-title-mob-border-color--yellow h5::before,
    .title.a-title-mob-border-color--yellow h6::before,
    .title.a-title-mob-border-color--yellow .cmp-title__text::after,
    .title.a-title-mob-border-color--yellow h1::after,
    .title.a-title-mob-border-color--yellow h2::after,
    .title.a-title-mob-border-color--yellow h3::after,
    .title.a-title-mob-border-color--yellow h4::after,
    .title.a-title-mob-border-color--yellow h5::after,
    .title.a-title-mob-border-color--yellow h6::after {
        border-top: 1px solid #ffd100
    }

    .title.a-title-mob-border-color--green .cmp-title__text,
    .title.a-title-mob-border-color--green h1,
    .title.a-title-mob-border-color--green h2,
    .title.a-title-mob-border-color--green h3,
    .title.a-title-mob-border-color--green h4,
    .title.a-title-mob-border-color--green h5,
    .title.a-title-mob-border-color--green h6 {
        border: 1px solid #7ccc6c
    }

    .title.a-title-mob-border-color--green .cmp-title__text::before,
    .title.a-title-mob-border-color--green h1::before,
    .title.a-title-mob-border-color--green h2::before,
    .title.a-title-mob-border-color--green h3::before,
    .title.a-title-mob-border-color--green h4::before,
    .title.a-title-mob-border-color--green h5::before,
    .title.a-title-mob-border-color--green h6::before,
    .title.a-title-mob-border-color--green .cmp-title__text::after,
    .title.a-title-mob-border-color--green h1::after,
    .title.a-title-mob-border-color--green h2::after,
    .title.a-title-mob-border-color--green h3::after,
    .title.a-title-mob-border-color--green h4::after,
    .title.a-title-mob-border-color--green h5::after,
    .title.a-title-mob-border-color--green h6::after {
        border-top: 1px solid #7ccc6c
    }

    .title.a-title-mob-border-color--fuscia .cmp-title__text,
    .title.a-title-mob-border-color--fuscia h1,
    .title.a-title-mob-border-color--fuscia h2,
    .title.a-title-mob-border-color--fuscia h3,
    .title.a-title-mob-border-color--fuscia h4,
    .title.a-title-mob-border-color--fuscia h5,
    .title.a-title-mob-border-color--fuscia h6 {
        border: 1px solid #aa0061
    }

    .title.a-title-mob-border-color--fuscia .cmp-title__text::before,
    .title.a-title-mob-border-color--fuscia h1::before,
    .title.a-title-mob-border-color--fuscia h2::before,
    .title.a-title-mob-border-color--fuscia h3::before,
    .title.a-title-mob-border-color--fuscia h4::before,
    .title.a-title-mob-border-color--fuscia h5::before,
    .title.a-title-mob-border-color--fuscia h6::before,
    .title.a-title-mob-border-color--fuscia .cmp-title__text::after,
    .title.a-title-mob-border-color--fuscia h1::after,
    .title.a-title-mob-border-color--fuscia h2::after,
    .title.a-title-mob-border-color--fuscia h3::after,
    .title.a-title-mob-border-color--fuscia h4::after,
    .title.a-title-mob-border-color--fuscia h5::after,
    .title.a-title-mob-border-color--fuscia h6::after {
        border-top: 1px solid #aa0061
    }

    .title.a-title-mob-border-color--orange .cmp-title__text,
    .title.a-title-mob-border-color--orange h1,
    .title.a-title-mob-border-color--orange h2,
    .title.a-title-mob-border-color--orange h3,
    .title.a-title-mob-border-color--orange h4,
    .title.a-title-mob-border-color--orange h5,
    .title.a-title-mob-border-color--orange h6 {
        border: 1px solid #e4002b
    }

    .title.a-title-mob-border-color--orange .cmp-title__text::before,
    .title.a-title-mob-border-color--orange h1::before,
    .title.a-title-mob-border-color--orange h2::before,
    .title.a-title-mob-border-color--orange h3::before,
    .title.a-title-mob-border-color--orange h4::before,
    .title.a-title-mob-border-color--orange h5::before,
    .title.a-title-mob-border-color--orange h6::before,
    .title.a-title-mob-border-color--orange .cmp-title__text::after,
    .title.a-title-mob-border-color--orange h1::after,
    .title.a-title-mob-border-color--orange h2::after,
    .title.a-title-mob-border-color--orange h3::after,
    .title.a-title-mob-border-color--orange h4::after,
    .title.a-title-mob-border-color--orange h5::after,
    .title.a-title-mob-border-color--orange h6::after {
        border-top: 1px solid #e4002b
    }

    .title.a-title-mob-border-color--cyan .cmp-title__text,
    .title.a-title-mob-border-color--cyan h1,
    .title.a-title-mob-border-color--cyan h2,
    .title.a-title-mob-border-color--cyan h3,
    .title.a-title-mob-border-color--cyan h4,
    .title.a-title-mob-border-color--cyan h5,
    .title.a-title-mob-border-color--cyan h6 {
        border: 1px solid #5bc2e7
    }

    .title.a-title-mob-border-color--cyan .cmp-title__text::before,
    .title.a-title-mob-border-color--cyan h1::before,
    .title.a-title-mob-border-color--cyan h2::before,
    .title.a-title-mob-border-color--cyan h3::before,
    .title.a-title-mob-border-color--cyan h4::before,
    .title.a-title-mob-border-color--cyan h5::before,
    .title.a-title-mob-border-color--cyan h6::before,
    .title.a-title-mob-border-color--cyan .cmp-title__text::after,
    .title.a-title-mob-border-color--cyan h1::after,
    .title.a-title-mob-border-color--cyan h2::after,
    .title.a-title-mob-border-color--cyan h3::after,
    .title.a-title-mob-border-color--cyan h4::after,
    .title.a-title-mob-border-color--cyan h5::after,
    .title.a-title-mob-border-color--cyan h6::after {
        border-top: 1px solid #5bc2e7
    }

    .title.a-title-mob-border-color--blue .cmp-title__text,
    .title.a-title-mob-border-color--blue h1,
    .title.a-title-mob-border-color--blue h2,
    .title.a-title-mob-border-color--blue h3,
    .title.a-title-mob-border-color--blue h4,
    .title.a-title-mob-border-color--blue h5,
    .title.a-title-mob-border-color--blue h6 {
        border: 1px solid #004f71
    }

    .title.a-title-mob-border-color--blue .cmp-title__text::before,
    .title.a-title-mob-border-color--blue h1::before,
    .title.a-title-mob-border-color--blue h2::before,
    .title.a-title-mob-border-color--blue h3::before,
    .title.a-title-mob-border-color--blue h4::before,
    .title.a-title-mob-border-color--blue h5::before,
    .title.a-title-mob-border-color--blue h6::before,
    .title.a-title-mob-border-color--blue .cmp-title__text::after,
    .title.a-title-mob-border-color--blue h1::after,
    .title.a-title-mob-border-color--blue h2::after,
    .title.a-title-mob-border-color--blue h3::after,
    .title.a-title-mob-border-color--blue h4::after,
    .title.a-title-mob-border-color--blue h5::after,
    .title.a-title-mob-border-color--blue h6::after {
        border-top: 1px solid #004f71
    }

    .title.a-title-mob-border-color--primary-blue .cmp-title__text,
    .title.a-title-mob-border-color--primary-blue h1,
    .title.a-title-mob-border-color--primary-blue h2,
    .title.a-title-mob-border-color--primary-blue h3,
    .title.a-title-mob-border-color--primary-blue h4,
    .title.a-title-mob-border-color--primary-blue h5,
    .title.a-title-mob-border-color--primary-blue h6 {
        border: 1px solid #009cde
    }

    .title.a-title-mob-border-color--primary-blue .cmp-title__text::before,
    .title.a-title-mob-border-color--primary-blue h1::before,
    .title.a-title-mob-border-color--primary-blue h2::before,
    .title.a-title-mob-border-color--primary-blue h3::before,
    .title.a-title-mob-border-color--primary-blue h4::before,
    .title.a-title-mob-border-color--primary-blue h5::before,
    .title.a-title-mob-border-color--primary-blue h6::before,
    .title.a-title-mob-border-color--primary-blue .cmp-title__text::after,
    .title.a-title-mob-border-color--primary-blue h1::after,
    .title.a-title-mob-border-color--primary-blue h2::after,
    .title.a-title-mob-border-color--primary-blue h3::after,
    .title.a-title-mob-border-color--primary-blue h4::after,
    .title.a-title-mob-border-color--primary-blue h5::after,
    .title.a-title-mob-border-color--primary-blue h6::after {
        border-top: 1px solid #009cde
    }

    .title.a-title-mob-border-color--red .cmp-title__text,
    .title.a-title-mob-border-color--red h1,
    .title.a-title-mob-border-color--red h2,
    .title.a-title-mob-border-color--red h3,
    .title.a-title-mob-border-color--red h4,
    .title.a-title-mob-border-color--red h5,
    .title.a-title-mob-border-color--red h6 {
        border: 1px solid #e4002b
    }

    .title.a-title-mob-border-color--red .cmp-title__text::before,
    .title.a-title-mob-border-color--red h1::before,
    .title.a-title-mob-border-color--red h2::before,
    .title.a-title-mob-border-color--red h3::before,
    .title.a-title-mob-border-color--red h4::before,
    .title.a-title-mob-border-color--red h5::before,
    .title.a-title-mob-border-color--red h6::before,
    .title.a-title-mob-border-color--red .cmp-title__text::after,
    .title.a-title-mob-border-color--red h1::after,
    .title.a-title-mob-border-color--red h2::after,
    .title.a-title-mob-border-color--red h3::after,
    .title.a-title-mob-border-color--red h4::after,
    .title.a-title-mob-border-color--red h5::after,
    .title.a-title-mob-border-color--red h6::after {
        border-top: 1px solid #e4002b
    }

    .title.a-title-mob-border-color--magenta .cmp-title__text,
    .title.a-title-mob-border-color--magenta h1,
    .title.a-title-mob-border-color--magenta h2,
    .title.a-title-mob-border-color--magenta h3,
    .title.a-title-mob-border-color--magenta h4,
    .title.a-title-mob-border-color--magenta h5,
    .title.a-title-mob-border-color--magenta h6 {
        border: 1px solid #aa0061
    }

    .title.a-title-mob-border-color--magenta .cmp-title__text::before,
    .title.a-title-mob-border-color--magenta h1::before,
    .title.a-title-mob-border-color--magenta h2::before,
    .title.a-title-mob-border-color--magenta h3::before,
    .title.a-title-mob-border-color--magenta h4::before,
    .title.a-title-mob-border-color--magenta h5::before,
    .title.a-title-mob-border-color--magenta h6::before,
    .title.a-title-mob-border-color--magenta .cmp-title__text::after,
    .title.a-title-mob-border-color--magenta h1::after,
    .title.a-title-mob-border-color--magenta h2::after,
    .title.a-title-mob-border-color--magenta h3::after,
    .title.a-title-mob-border-color--magenta h4::after,
    .title.a-title-mob-border-color--magenta h5::after,
    .title.a-title-mob-border-color--magenta h6::after {
        border-top: 1px solid #aa0061
    }

    .title.a-title-mob-border-color--button-hover-blue .cmp-title__text,
    .title.a-title-mob-border-color--button-hover-blue h1,
    .title.a-title-mob-border-color--button-hover-blue h2,
    .title.a-title-mob-border-color--button-hover-blue h3,
    .title.a-title-mob-border-color--button-hover-blue h4,
    .title.a-title-mob-border-color--button-hover-blue h5,
    .title.a-title-mob-border-color--button-hover-blue h6 {
        border: 1px solid #019cde
    }

    .title.a-title-mob-border-color--button-hover-blue .cmp-title__text::before,
    .title.a-title-mob-border-color--button-hover-blue h1::before,
    .title.a-title-mob-border-color--button-hover-blue h2::before,
    .title.a-title-mob-border-color--button-hover-blue h3::before,
    .title.a-title-mob-border-color--button-hover-blue h4::before,
    .title.a-title-mob-border-color--button-hover-blue h5::before,
    .title.a-title-mob-border-color--button-hover-blue h6::before,
    .title.a-title-mob-border-color--button-hover-blue .cmp-title__text::after,
    .title.a-title-mob-border-color--button-hover-blue h1::after,
    .title.a-title-mob-border-color--button-hover-blue h2::after,
    .title.a-title-mob-border-color--button-hover-blue h3::after,
    .title.a-title-mob-border-color--button-hover-blue h4::after,
    .title.a-title-mob-border-color--button-hover-blue h5::after,
    .title.a-title-mob-border-color--button-hover-blue h6::after {
        border-top: 1px solid #019cde
    }

    .title.a-title-mob-border-color--mint .cmp-title__text,
    .title.a-title-mob-border-color--mint h1,
    .title.a-title-mob-border-color--mint h2,
    .title.a-title-mob-border-color--mint h3,
    .title.a-title-mob-border-color--mint h4,
    .title.a-title-mob-border-color--mint h5,
    .title.a-title-mob-border-color--mint h6 {
        border: 1px solid #64ccc9
    }

    .title.a-title-mob-border-color--mint .cmp-title__text::before,
    .title.a-title-mob-border-color--mint h1::before,
    .title.a-title-mob-border-color--mint h2::before,
    .title.a-title-mob-border-color--mint h3::before,
    .title.a-title-mob-border-color--mint h4::before,
    .title.a-title-mob-border-color--mint h5::before,
    .title.a-title-mob-border-color--mint h6::before,
    .title.a-title-mob-border-color--mint .cmp-title__text::after,
    .title.a-title-mob-border-color--mint h1::after,
    .title.a-title-mob-border-color--mint h2::after,
    .title.a-title-mob-border-color--mint h3::after,
    .title.a-title-mob-border-color--mint h4::after,
    .title.a-title-mob-border-color--mint h5::after,
    .title.a-title-mob-border-color--mint h6::after {
        border-top: 1px solid #64ccc9
    }

    .title.a-title-mob-border-color--gold .cmp-title__text,
    .title.a-title-mob-border-color--gold h1,
    .title.a-title-mob-border-color--gold h2,
    .title.a-title-mob-border-color--gold h3,
    .title.a-title-mob-border-color--gold h4,
    .title.a-title-mob-border-color--gold h5,
    .title.a-title-mob-border-color--gold h6 {
        border: 1px solid #eeb33b
    }

    .title.a-title-mob-border-color--gold .cmp-title__text::before,
    .title.a-title-mob-border-color--gold h1::before,
    .title.a-title-mob-border-color--gold h2::before,
    .title.a-title-mob-border-color--gold h3::before,
    .title.a-title-mob-border-color--gold h4::before,
    .title.a-title-mob-border-color--gold h5::before,
    .title.a-title-mob-border-color--gold h6::before,
    .title.a-title-mob-border-color--gold .cmp-title__text::after,
    .title.a-title-mob-border-color--gold h1::after,
    .title.a-title-mob-border-color--gold h2::after,
    .title.a-title-mob-border-color--gold h3::after,
    .title.a-title-mob-border-color--gold h4::after,
    .title.a-title-mob-border-color--gold h5::after,
    .title.a-title-mob-border-color--gold h6::after {
        border-top: 1px solid #eeb33b
    }

    .title.a-title-mob-border-color--purple .cmp-title__text,
    .title.a-title-mob-border-color--purple h1,
    .title.a-title-mob-border-color--purple h2,
    .title.a-title-mob-border-color--purple h3,
    .title.a-title-mob-border-color--purple h4,
    .title.a-title-mob-border-color--purple h5,
    .title.a-title-mob-border-color--purple h6 {
        border: 1px solid #470a68
    }

    .title.a-title-mob-border-color--purple .cmp-title__text::before,
    .title.a-title-mob-border-color--purple h1::before,
    .title.a-title-mob-border-color--purple h2::before,
    .title.a-title-mob-border-color--purple h3::before,
    .title.a-title-mob-border-color--purple h4::before,
    .title.a-title-mob-border-color--purple h5::before,
    .title.a-title-mob-border-color--purple h6::before,
    .title.a-title-mob-border-color--purple .cmp-title__text::after,
    .title.a-title-mob-border-color--purple h1::after,
    .title.a-title-mob-border-color--purple h2::after,
    .title.a-title-mob-border-color--purple h3::after,
    .title.a-title-mob-border-color--purple h4::after,
    .title.a-title-mob-border-color--purple h5::after,
    .title.a-title-mob-border-color--purple h6::after {
        border-top: 1px solid #470a68
    }

    .title.a-title-mob-border-color--black .cmp-title__text,
    .title.a-title-mob-border-color--black h1,
    .title.a-title-mob-border-color--black h2,
    .title.a-title-mob-border-color--black h3,
    .title.a-title-mob-border-color--black h4,
    .title.a-title-mob-border-color--black h5,
    .title.a-title-mob-border-color--black h6 {
        border: 1px solid #000
    }

    .title.a-title-mob-border-color--black .cmp-title__text::before,
    .title.a-title-mob-border-color--black h1::before,
    .title.a-title-mob-border-color--black h2::before,
    .title.a-title-mob-border-color--black h3::before,
    .title.a-title-mob-border-color--black h4::before,
    .title.a-title-mob-border-color--black h5::before,
    .title.a-title-mob-border-color--black h6::before,
    .title.a-title-mob-border-color--black .cmp-title__text::after,
    .title.a-title-mob-border-color--black h1::after,
    .title.a-title-mob-border-color--black h2::after,
    .title.a-title-mob-border-color--black h3::after,
    .title.a-title-mob-border-color--black h4::after,
    .title.a-title-mob-border-color--black h5::after,
    .title.a-title-mob-border-color--black h6::after {
        border-top: 1px solid #000
    }

    .title.a-title-mob-border-color--medium-gray .cmp-title__text,
    .title.a-title-mob-border-color--medium-gray h1,
    .title.a-title-mob-border-color--medium-gray h2,
    .title.a-title-mob-border-color--medium-gray h3,
    .title.a-title-mob-border-color--medium-gray h4,
    .title.a-title-mob-border-color--medium-gray h5,
    .title.a-title-mob-border-color--medium-gray h6 {
        border: 1px solid #939799
    }

    .title.a-title-mob-border-color--medium-gray .cmp-title__text::before,
    .title.a-title-mob-border-color--medium-gray h1::before,
    .title.a-title-mob-border-color--medium-gray h2::before,
    .title.a-title-mob-border-color--medium-gray h3::before,
    .title.a-title-mob-border-color--medium-gray h4::before,
    .title.a-title-mob-border-color--medium-gray h5::before,
    .title.a-title-mob-border-color--medium-gray h6::before,
    .title.a-title-mob-border-color--medium-gray .cmp-title__text::after,
    .title.a-title-mob-border-color--medium-gray h1::after,
    .title.a-title-mob-border-color--medium-gray h2::after,
    .title.a-title-mob-border-color--medium-gray h3::after,
    .title.a-title-mob-border-color--medium-gray h4::after,
    .title.a-title-mob-border-color--medium-gray h5::after,
    .title.a-title-mob-border-color--medium-gray h6::after {
        border-top: 1px solid #939799
    }

    .title.a-title-mob-border-color--light-gray .cmp-title__text,
    .title.a-title-mob-border-color--light-gray h1,
    .title.a-title-mob-border-color--light-gray h2,
    .title.a-title-mob-border-color--light-gray h3,
    .title.a-title-mob-border-color--light-gray h4,
    .title.a-title-mob-border-color--light-gray h5,
    .title.a-title-mob-border-color--light-gray h6 {
        border: 1px solid #d9d9d6
    }

    .title.a-title-mob-border-color--light-gray .cmp-title__text::before,
    .title.a-title-mob-border-color--light-gray h1::before,
    .title.a-title-mob-border-color--light-gray h2::before,
    .title.a-title-mob-border-color--light-gray h3::before,
    .title.a-title-mob-border-color--light-gray h4::before,
    .title.a-title-mob-border-color--light-gray h5::before,
    .title.a-title-mob-border-color--light-gray h6::before,
    .title.a-title-mob-border-color--light-gray .cmp-title__text::after,
    .title.a-title-mob-border-color--light-gray h1::after,
    .title.a-title-mob-border-color--light-gray h2::after,
    .title.a-title-mob-border-color--light-gray h3::after,
    .title.a-title-mob-border-color--light-gray h4::after,
    .title.a-title-mob-border-color--light-gray h5::after,
    .title.a-title-mob-border-color--light-gray h6::after {
        border-top: 1px solid #d9d9d6
    }

    .title.a-title-mob-border-color--dark-gray .cmp-title__text,
    .title.a-title-mob-border-color--dark-gray h1,
    .title.a-title-mob-border-color--dark-gray h2,
    .title.a-title-mob-border-color--dark-gray h3,
    .title.a-title-mob-border-color--dark-gray h4,
    .title.a-title-mob-border-color--dark-gray h5,
    .title.a-title-mob-border-color--dark-gray h6 {
        border: 1px solid #222731
    }

    .title.a-title-mob-border-color--dark-gray .cmp-title__text::before,
    .title.a-title-mob-border-color--dark-gray h1::before,
    .title.a-title-mob-border-color--dark-gray h2::before,
    .title.a-title-mob-border-color--dark-gray h3::before,
    .title.a-title-mob-border-color--dark-gray h4::before,
    .title.a-title-mob-border-color--dark-gray h5::before,
    .title.a-title-mob-border-color--dark-gray h6::before,
    .title.a-title-mob-border-color--dark-gray .cmp-title__text::after,
    .title.a-title-mob-border-color--dark-gray h1::after,
    .title.a-title-mob-border-color--dark-gray h2::after,
    .title.a-title-mob-border-color--dark-gray h3::after,
    .title.a-title-mob-border-color--dark-gray h4::after,
    .title.a-title-mob-border-color--dark-gray h5::after,
    .title.a-title-mob-border-color--dark-gray h6::after {
        border-top: 1px solid #222731
    }

    .title.a-title-mob-border-color--button-gray .cmp-title__text,
    .title.a-title-mob-border-color--button-gray h1,
    .title.a-title-mob-border-color--button-gray h2,
    .title.a-title-mob-border-color--button-gray h3,
    .title.a-title-mob-border-color--button-gray h4,
    .title.a-title-mob-border-color--button-gray h5,
    .title.a-title-mob-border-color--button-gray h6 {
        border: 1px solid #63666b
    }

    .title.a-title-mob-border-color--button-gray .cmp-title__text::before,
    .title.a-title-mob-border-color--button-gray h1::before,
    .title.a-title-mob-border-color--button-gray h2::before,
    .title.a-title-mob-border-color--button-gray h3::before,
    .title.a-title-mob-border-color--button-gray h4::before,
    .title.a-title-mob-border-color--button-gray h5::before,
    .title.a-title-mob-border-color--button-gray h6::before,
    .title.a-title-mob-border-color--button-gray .cmp-title__text::after,
    .title.a-title-mob-border-color--button-gray h1::after,
    .title.a-title-mob-border-color--button-gray h2::after,
    .title.a-title-mob-border-color--button-gray h3::after,
    .title.a-title-mob-border-color--button-gray h4::after,
    .title.a-title-mob-border-color--button-gray h5::after,
    .title.a-title-mob-border-color--button-gray h6::after {
        border-top: 1px solid #63666b
    }

    .title.a-title-mob-border-color--gray .cmp-title__text,
    .title.a-title-mob-border-color--gray h1,
    .title.a-title-mob-border-color--gray h2,
    .title.a-title-mob-border-color--gray h3,
    .title.a-title-mob-border-color--gray h4,
    .title.a-title-mob-border-color--gray h5,
    .title.a-title-mob-border-color--gray h6 {
        border: 1px solid #63666a
    }

    .title.a-title-mob-border-color--gray .cmp-title__text::before,
    .title.a-title-mob-border-color--gray h1::before,
    .title.a-title-mob-border-color--gray h2::before,
    .title.a-title-mob-border-color--gray h3::before,
    .title.a-title-mob-border-color--gray h4::before,
    .title.a-title-mob-border-color--gray h5::before,
    .title.a-title-mob-border-color--gray h6::before,
    .title.a-title-mob-border-color--gray .cmp-title__text::after,
    .title.a-title-mob-border-color--gray h1::after,
    .title.a-title-mob-border-color--gray h2::after,
    .title.a-title-mob-border-color--gray h3::after,
    .title.a-title-mob-border-color--gray h4::after,
    .title.a-title-mob-border-color--gray h5::after,
    .title.a-title-mob-border-color--gray h6::after {
        border-top: 1px solid #63666a
    }
}

.title.a-title--more-info-panel-icon .cmp-title {
    padding: 30px 15px
}

.title.a-title--more-info-panel-icon .cmp-title .cmp-title__text {
    display: inline;
    padding: 0
}

.title.a-title--more-info-panel-icon .cmp-title .cmp-title__text::after {
    content: "\ea1c";
    font-family: "Abbott-icon", serif !important;
    height: 25px;
    transition: all .5s ease;
    width: 15px;
    position: relative;
    left: 0;
    top: -4px;
    display: inline-block;
    vertical-align: middle
}

@media only screen and (max-width:767.98px) {
    .title.a-title--more-info-panel-icon .cmp-title .cmp-title__text::after {
        top: -3px
    }
}

.title.a-title-hover .cmp-title a:hover,
.title.a-title-hover .cmp-title a:focus {
    text-decoration: none
}

.title.a-title--border-remove .cmp-title__text {
    --title-border: 0;
    --title-top-border: 0
}

.title.a-title--small .cmp-title__text,
.title.a-title--small h1,
.title.a-title--small h2,
.title.a-title--small h3,
.title.a-title--small h4,
.title.a-title--small h5,
.title.a-title--small h6 {
    width: 50%;
    max-width: 350px
}

@media only screen and (max-width:767.98px) {

    .title.a-title--small .cmp-title__text,
    .title.a-title--small h1,
    .title.a-title--small h2,
    .title.a-title--small h3,
    .title.a-title--small h4,
    .title.a-title--small h5,
    .title.a-title--small h6 {
        padding: 8px;
        width: 45%
    }
}

.title.a-title--small .cmp-title__text::before,
.title.a-title--small h1::before,
.title.a-title--small h2::before,
.title.a-title--small h3::before,
.title.a-title--small h4::before,
.title.a-title--small h5::before,
.title.a-title--small h6::before,
.title.a-title--small .cmp-title__text::after,
.title.a-title--small h1::after,
.title.a-title--small h2::after,
.title.a-title--small h3::after,
.title.a-title--small h4::after,
.title.a-title--small h5::after,
.title.a-title--small h6::after {
    width: 50%
}

@media only screen and (max-width:767.98px) {

    .title.a-title--small.font-brandon-grotesque-bold .cmp-title__text,
    .title.a-title--small.font-brandon-grotesque-black .cmp-title__text,
    .title.a-title--small.font-brandon-grotesque-regular .cmp-title__text,
    .title.a-title--small.font-brandon-grotesque-medium .cmp-title__text,
    .title.a-title--small.font-brandon-grotesque-bold h1,
    .title.a-title--small.font-brandon-grotesque-black h1,
    .title.a-title--small.font-brandon-grotesque-regular h1,
    .title.a-title--small.font-brandon-grotesque-medium h1,
    .title.a-title--small.font-brandon-grotesque-bold h2,
    .title.a-title--small.font-brandon-grotesque-black h2,
    .title.a-title--small.font-brandon-grotesque-regular h2,
    .title.a-title--small.font-brandon-grotesque-medium h2,
    .title.a-title--small.font-brandon-grotesque-bold h3,
    .title.a-title--small.font-brandon-grotesque-black h3,
    .title.a-title--small.font-brandon-grotesque-regular h3,
    .title.a-title--small.font-brandon-grotesque-medium h3,
    .title.a-title--small.font-brandon-grotesque-bold h4,
    .title.a-title--small.font-brandon-grotesque-black h4,
    .title.a-title--small.font-brandon-grotesque-regular h4,
    .title.a-title--small.font-brandon-grotesque-medium h4,
    .title.a-title--small.font-brandon-grotesque-bold h5,
    .title.a-title--small.font-brandon-grotesque-black h5,
    .title.a-title--small.font-brandon-grotesque-regular h5,
    .title.a-title--small.font-brandon-grotesque-medium h5,
    .title.a-title--small.font-brandon-grotesque-bold h6,
    .title.a-title--small.font-brandon-grotesque-black h6,
    .title.a-title--small.font-brandon-grotesque-regular h6,
    .title.a-title--small.font-brandon-grotesque-medium h6 {
        padding-bottom: 1px;
        padding-top: 8px
    }
}

.title.a-title-margin--remove-bottom {
    margin-bottom: 0
}

.title.a-title-margin--remove-bottom .cmp-title__text,
.title.a-title-margin--remove-bottom h1,
.title.a-title-margin--remove-bottom h2,
.title.a-title-margin--remove-bottom h3,
.title.a-title-margin--remove-bottom h4,
.title.a-title-margin--remove-bottom h5,
.title.a-title-margin--remove-bottom h6 {
    margin-bottom: 0
}

.title.a-title-margin--remove-top {
    margin-top: 0 !important
}

.title.a-title-margin--remove-top .cmp-title__text,
.title.a-title-margin--remove-top h1,
.title.a-title-margin--remove-top h2,
.title.a-title-margin--remove-top h3,
.title.a-title-margin--remove-top h4,
.title.a-title-margin--remove-top h5,
.title.a-title-margin--remove-top h6 {
    margin-top: 0 !important
}

.title.a-title-variation--articlebreifnew .cmp-title__text,
.title.a-title-variation--articlebreifnew h1,
.title.a-title-variation--articlebreifnew h2,
.title.a-title-variation--articlebreifnew h3,
.title.a-title-variation--articlebreifnew h4,
.title.a-title-variation--articlebreifnew h5,
.title.a-title-variation--articlebreifnew h6 {
    padding: 10px 20px
}

.title.section-title .cmp-title * {
    font-family: 'BrandonGrotesqueBold';
    line-height: 1;
    text-transform: uppercase
}

.title.cm-title .cmp-title * {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1.25em;
    line-height: 1.125rem;
    text-align: center;
    text-transform: uppercase
}

.title.title-variation--article-text .cmp-title * {
    font-size: 3.125rem
}

@media only screen and (max-width:767.98px) {
    .title.title-variation--article-text .cmp-title * {
        font-size: 1.5rem
    }
}

.title.title-remove--padding .cmp-title__text {
    --title-padding: 0
}

@media only screen and (min-width:992px) {

    .title.font-brandon-grotesque-bold h6.cmp-title__text,
    .title.font-brandon-grotesque-black h6.cmp-title__text,
    .title.font-brandon-grotesque-regular h6.cmp-title__text,
    .title.font-brandon-grotesque-medium h6.cmp-title__text {
        padding-bottom: 7px !important
    }
}

@media only screen and (max-width:991.98px) {

    .title.font-brandon-grotesque-bold h6.cmp-title__text,
    .title.font-brandon-grotesque-black h6.cmp-title__text,
    .title.font-brandon-grotesque-regular h6.cmp-title__text,
    .title.font-brandon-grotesque-medium h6.cmp-title__text {
        padding-bottom: 3px !important;
        padding-top: 6px !important
    }
}

@media only screen and (min-width:992px) {

    .title.font-brandon-grotesque-bold h5.cmp-title__text,
    .title.font-brandon-grotesque-black h5.cmp-title__text,
    .title.font-brandon-grotesque-regular h5.cmp-title__text,
    .title.font-brandon-grotesque-medium h5.cmp-title__text {
        padding-bottom: 5px !important
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {

    .title.font-brandon-grotesque-bold h5.cmp-title__text,
    .title.font-brandon-grotesque-black h5.cmp-title__text,
    .title.font-brandon-grotesque-regular h5.cmp-title__text,
    .title.font-brandon-grotesque-medium h5.cmp-title__text {
        padding-bottom: 4px !important
    }
}

@media only screen and (max-width:767.98px) {

    .title.font-brandon-grotesque-bold h5.cmp-title__text,
    .title.font-brandon-grotesque-black h5.cmp-title__text,
    .title.font-brandon-grotesque-regular h5.cmp-title__text,
    .title.font-brandon-grotesque-medium h5.cmp-title__text {
        padding-bottom: 3px !important
    }
}

.title.font-brandon-grotesque-bold h4.cmp-title__text,
.title.font-brandon-grotesque-black h4.cmp-title__text,
.title.font-brandon-grotesque-regular h4.cmp-title__text,
.title.font-brandon-grotesque-medium h4.cmp-title__text {
    padding-bottom: 5px
}

@media only screen and (min-width:768px) and (max-width:991.98px) {

    .title.font-brandon-grotesque-bold h4.cmp-title__text,
    .title.font-brandon-grotesque-black h4.cmp-title__text,
    .title.font-brandon-grotesque-regular h4.cmp-title__text,
    .title.font-brandon-grotesque-medium h4.cmp-title__text {
        padding-bottom: 3px
    }
}

.title.font-brandon-grotesque-bold h3.cmp-title__text,
.title.font-brandon-grotesque-black h3.cmp-title__text,
.title.font-brandon-grotesque-regular h3.cmp-title__text,
.title.font-brandon-grotesque-medium h3.cmp-title__text {
    padding-bottom: 3px
}

@media only screen and (min-width:768px) and (max-width:991.98px) {

    .title.font-brandon-grotesque-bold h3.cmp-title__text,
    .title.font-brandon-grotesque-black h3.cmp-title__text,
    .title.font-brandon-grotesque-regular h3.cmp-title__text,
    .title.font-brandon-grotesque-medium h3.cmp-title__text {
        padding-bottom: 0
    }
}

.title.font-brandon-grotesque-bold h2.cmp-title__text,
.title.font-brandon-grotesque-black h2.cmp-title__text,
.title.font-brandon-grotesque-regular h2.cmp-title__text,
.title.font-brandon-grotesque-medium h2.cmp-title__text {
    padding-bottom: 0
}

.title.font-brandon-grotesque-bold h1.cmp-title__text,
.title.font-brandon-grotesque-black h1.cmp-title__text,
.title.font-brandon-grotesque-regular h1.cmp-title__text,
.title.font-brandon-grotesque-medium h1.cmp-title__text {
    padding-bottom: 0
}

@media only screen and (min-width:992px) {

    .title.font-brandon-grotesque-bold h1.cmp-title__text,
    .title.font-brandon-grotesque-black h1.cmp-title__text,
    .title.font-brandon-grotesque-regular h1.cmp-title__text,
    .title.font-brandon-grotesque-medium h1.cmp-title__text {
        padding-top: 14px
    }
}

@media only screen and (max-width:991.98px) {

    .title.font-brandon-grotesque-bold h1.cmp-title__text,
    .title.font-brandon-grotesque-black h1.cmp-title__text,
    .title.font-brandon-grotesque-regular h1.cmp-title__text,
    .title.font-brandon-grotesque-medium h1.cmp-title__text {
        padding-top: 9px
    }
}

@media only screen and (max-width:767.98px) {

    .title.article-subheading--color-purple h4,
    .title.article-subheading--color-mint h4,
    .title.article-subheading--color-fuscia h4,
    .title.article-subheading--color-medium-blue h4,
    .title.article-subheading--color-gold h4,
    .title.article-subheading--color-red h4,
    .title.article-subheading--color-medium-green h4,
    .title.article-subheading--color-light-blue h4 {
        display: block;
        float: left;
        width: 100%
    }
}

.title.article-subheading--color-purple h4 a,
.title.article-subheading--color-mint h4 a,
.title.article-subheading--color-fuscia h4 a,
.title.article-subheading--color-medium-blue h4 a,
.title.article-subheading--color-gold h4 a,
.title.article-subheading--color-red h4 a,
.title.article-subheading--color-medium-green h4 a,
.title.article-subheading--color-light-blue h4 a {
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.875rem
}

@media only screen and (max-width:767.98px) {

    .title.article-subheading--color-purple h4 a,
    .title.article-subheading--color-mint h4 a,
    .title.article-subheading--color-fuscia h4 a,
    .title.article-subheading--color-medium-blue h4 a,
    .title.article-subheading--color-gold h4 a,
    .title.article-subheading--color-red h4 a,
    .title.article-subheading--color-medium-green h4 a,
    .title.article-subheading--color-light-blue h4 a {
        display: block;
        float: left
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {

    .title.article-subheading--color-purple h4 a,
    .title.article-subheading--color-mint h4 a,
    .title.article-subheading--color-fuscia h4 a,
    .title.article-subheading--color-medium-blue h4 a,
    .title.article-subheading--color-gold h4 a,
    .title.article-subheading--color-red h4 a,
    .title.article-subheading--color-medium-green h4 a,
    .title.article-subheading--color-light-blue h4 a {
        font-size: 1.125rem
    }
}

.title.article-subheading--color-purple h4 span.devider,
.title.article-subheading--color-mint h4 span.devider,
.title.article-subheading--color-fuscia h4 span.devider,
.title.article-subheading--color-medium-blue h4 span.devider,
.title.article-subheading--color-gold h4 span.devider,
.title.article-subheading--color-red h4 span.devider,
.title.article-subheading--color-medium-green h4 span.devider,
.title.article-subheading--color-light-blue h4 span.devider {
    margin-left: 20px;
    margin-right: 20px
}

.title.article-subheading--color-purple h4 span,
.title.article-subheading--color-mint h4 span,
.title.article-subheading--color-fuscia h4 span,
.title.article-subheading--color-medium-blue h4 span,
.title.article-subheading--color-gold h4 span,
.title.article-subheading--color-red h4 span,
.title.article-subheading--color-medium-green h4 span,
.title.article-subheading--color-light-blue h4 span {
    font-size: 1.25rem;
    line-height: 1.875rem;
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d !important
}

@media only screen and (max-width:767.98px) {

    .title.article-subheading--color-purple h4 span,
    .title.article-subheading--color-mint h4 span,
    .title.article-subheading--color-fuscia h4 span,
    .title.article-subheading--color-medium-blue h4 span,
    .title.article-subheading--color-gold h4 span,
    .title.article-subheading--color-red h4 span,
    .title.article-subheading--color-medium-green h4 span,
    .title.article-subheading--color-light-blue h4 span {
        display: block;
        float: left
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {

    .title.article-subheading--color-purple h4 span,
    .title.article-subheading--color-mint h4 span,
    .title.article-subheading--color-fuscia h4 span,
    .title.article-subheading--color-medium-blue h4 span,
    .title.article-subheading--color-gold h4 span,
    .title.article-subheading--color-red h4 span,
    .title.article-subheading--color-medium-green h4 span,
    .title.article-subheading--color-light-blue h4 span {
        font-size: 1.125rem
    }
}

.title.article-subheading--color-purple h4 a {
    color: #470a68 !important
}

.title.article-subheading--color-mint h4 a {
    color: #64ccc9 !important
}

.title.article-subheading--color-fuscia h4 a {
    color: #aa0061 !important
}

.title.article-subheading--color-medium-blue h4 a {
    color: #004f71 !important
}

.title.article-subheading--color-gold h4 a {
    color: #eeb33b !important
}

.title.article-subheading--color-red h4 a {
    color: #e4002b !important
}

.title.article-subheading--color-medium-green h4 a {
    color: #00b140 !important
}

.title.article-subheading--color-light-blue h4 a {
    color: #5bc2e7 !important
}

.title.title-20px .cmp-title h4 {
    font-size: .8rem;
    line-height: 1.8
}

@media only screen and (min-width:992px) {
    .title.title-20px .cmp-title h4 {
        font-size: 1.25rem;
        line-height: 1.2
    }
}

@media only screen and (min-width:992px) {
    .title #honors-awards-title .cmp-title__text a {
        font-size: 1.75rem
    }
}

.title.title-28px .cmp-title__text a {
    font-size: 1.25rem;
    line-height: 1.2
}

@media only screen and (min-width:992px) {
    .title.title-28px .cmp-title__text a {
        font-size: 1.75rem
    }
}

@media only screen and (max-width:767.98px) {
    .title #our-philantropic-vision-title h4 {
        width: 50%;
        font-size: .8rem
    }
}

.linkstack.linkstack--list-of-item .m-link-stack .m-link-stack--header .m-link-stack--title {
    font-family: 'BrandonGrotesqueRegular';
    font-weight: 700;
    --link-stack-h6-color: #2a2b33;
    margin: 0;
    text-transform: uppercase
}

.linkstack.linkstack--list-of-item .m-link-stack .m-link-stack--header .abt-icon-down-arrow {
    display: none !important
}

.linkstack.linkstack--list-of-item .m-link-stack .m-link-stack--content {
    display: block !important;
    padding: 0
}

.linkstack.linkstack--list-of-item .m-link-stack .m-link-stack--content .a-link {
    margin-top: 2.1875rem
}

@media only screen and (max-width:991.98px) {
    .linkstack.linkstack--list-of-item .m-link-stack .m-link-stack--content .a-link {
        margin-top: 1.05rem
    }
}

.linkstack.linkstack--list-of-item .m-link-stack .m-link-stack--content .a-link .a-link__text {
    --link-stack-color: #004f71;
    font-weight: 700;
    font-family: 'BrandonGrotesqueRegular';
    text-transform: uppercase
}

.linkstack.linkstack--list-of-item .m-link-stack .m-link-stack--content .a-link .a-link__text:hover {
    --link-stack-color: #2a2b33
}

.linkstack.linkstack--list-type {
    width: 100%
}

@media only screen and (min-width:768px) {
    .linkstack.linkstack--list-type {
        border-bottom: 1px solid #d9dadb
    }
}

.linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link {
    display: inline-block;
    height: 36px;
    padding: 12px 9px 0;
    font-size: .875rem;
    margin-right: 0;
    line-height: .875em;
    text-transform: uppercase;
    background-color: #d1d3d4
}

.linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link:hover {
    background-color: var(--link-stack-list-type-hover-bg-color)
}

.linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link:hover:hover .a-link__text {
    color: #000
}

.linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link .a-link__text {
    color: var(--link-stack-list-type-text-color)
}

.linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link .a-link__text:hover {
    color: #000 !important
}

.linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link.type-active-tab {
    background: var(--link-stack-list-type-hover-bg-color)
}

.linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link.type-active-tab .a-link__text {
    color: #000
}

@media only screen and (max-width:767.98px) {
    .linkstack.linkstack--list-type .m-link-stack {
        margin: 10px
    }

    .linkstack.linkstack--list-type .m-link-stack .abt-icon-down-arrow {
        color: #5bc2e7 !important;
        -moz-transition: all .5s linear;
        -webkit-transition: all .5s linear;
        transition: all .5s linear
    }

    .linkstack.linkstack--list-type .m-link-stack .abt-icon-down-arrow::before {
        content: "\e907";
        vertical-align: middle !important
    }

    .linkstack.linkstack--list-type .m-link-stack .rotate-arrow {
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--header {
        padding: 10px;
        width: 100%;
        background: #191b23
    }

    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--title {
        color: #5bc2e7 !important
    }

    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--content>li:first-child {
        display: none !important
    }

    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--content {
        width: 100%;
        background: #d1d3d4;
        padding-inline-start: 0
    }

    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link .a-link__text {
        color: #000 !important
    }
}

@media only screen and (min-width:768px) {
    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--header {
        display: none
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--content {
        padding-left: 0 !important;
        display: block !important
    }

    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link {
        display: inline-block;
        height: 36px;
        padding: 12px 9px 0;
        font-size: .875rem;
        margin-right: 0;
        line-height: .875em;
        text-transform: uppercase;
        background-color: #d1d3d4
    }

    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link:hover {
        background-color: var(--link-stack-list-type-hover-bg-color)
    }

    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link:hover:hover .a-link__text {
        color: #000
    }

    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link .a-link__text {
        color: var(--link-stack-list-type-text-color)
    }

    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link .a-link__text:hover {
        color: #000 !important
    }

    .linkstack.linkstack--list-type .m-link-stack .m-link-stack--content .a-link.type-active-tab {
        background: var(--link-stack-list-type-hover-bg-color)
    }
}

.linkstack.linkstack--list-type.link-type--selected {
    background-color: var(--link-stack-list-type-text-color);
    color: var(--link-stack-list-type-text-color)
}

.linkstack.linkstack--tabs {
    width: 100%;
    border-bottom: 1px solid #d9dadb
}

.linkstack.linkstack--tabs .m-link-stack .m-link-stack--content {
    padding-left: 0 !important
}

.linkstack.linkstack--tabs .m-link-stack .m-link-stack--content .a-link {
    display: inline-block;
    height: 36px;
    padding: 12px 9px 0;
    font-size: .875rem;
    margin-right: 0;
    line-height: .875em;
    text-transform: uppercase;
    background-color: #d1d3d4
}

.linkstack.linkstack--tabs .m-link-stack .m-link-stack--content .a-link:hover {
    background-color: var(--link-stack-list-type-hover-bg-color)
}

.linkstack.linkstack--tabs .m-link-stack .m-link-stack--content .a-link:hover:hover .a-link__text {
    color: #000
}

.linkstack.linkstack--tabs .m-link-stack .m-link-stack--content .a-link .a-link__text {
    color: var(--link-stack-list-type-text-color)
}

.linkstack.linkstack--tabs .m-link-stack .m-link-stack--content .a-link .a-link__text:hover {
    color: #000 !important
}

.linkstack.linkstack--tabs .m-link-stack .m-link-stack--content .a-link.type-active-tab {
    background: var(--link-stack-list-type-hover-bg-color)
}

.linkstack.linkstack--tabs .m-link-stack .m-link-stack--content .a-link.type-active-tab .a-link__text {
    color: #000
}

@media only screen and (max-width:767.98px) {
    .linkstack.linkstack--tabs .m-link-stack .m-link-stack--content .a-link {
        padding: 12px 9px 0;
        font-size: .75rem
    }
}

.linkstack.linkstack--tabs.link-type--selected {
    background-color: var(--link-stack-list-type-text-color);
    color: var(--link-stack-list-type-text-color)
}

.linkstack.linkstack--list-type-red {
    --link-stack-list-type-text-color: red;
    --link-stack-list-type-bg-color: red;
    --selected-bg: red
}

.linkstack.type-text-color-yellow .a-link {
    --link-stack-list-type-text-color: #ffd100;
    --link-stack-list-type-hover-bg-color: #ffd100
}

.linkstack.type-text-color-dark-yellow .a-link {
    --link-stack-list-type-text-color: #ded548;
    --link-stack-list-type-hover-bg-color: #ded548
}

.linkstack.type-text-color-green .a-link {
    --link-stack-list-type-text-color: #7ccc6c;
    --link-stack-list-type-hover-bg-color: #7ccc6c
}

.linkstack.type-text-color-dark-green .a-link {
    --link-stack-list-type-text-color: #00b140;
    --link-stack-list-type-hover-bg-color: #00b140
}

.linkstack.type-text-color-fuscia .a-link {
    --link-stack-list-type-text-color: #aa0061;
    --link-stack-list-type-hover-bg-color: #aa0061
}

.linkstack.type-text-color-dark-fuscia .a-link {
    --link-stack-list-type-text-color: #470a68;
    --link-stack-list-type-hover-bg-color: #470a68
}

.linkstack.type-text-color-orange .a-link {
    --link-stack-list-type-text-color: #e4002b;
    --link-stack-list-type-hover-bg-color: #e4002b
}

.linkstack.type-text-color-dark-orange .a-link {
    --link-stack-list-type-text-color: #eeb33b;
    --link-stack-list-type-hover-bg-color: #eeb33b
}

.linkstack.type-text-color-cyan .a-link {
    --link-stack-list-type-text-color: #5bc2e7;
    --link-stack-list-type-hover-bg-color: #5bc2e7
}

.linkstack.type-text-color-blue .a-link {
    --link-stack-list-type-text-color: #004f71;
    --link-stack-list-type-hover-bg-color: #004f71
}

.linkstack.type-text-color-gray .a-link {
    --link-stack-list-type-text-color: #63666a;
    --link-stack-list-type-hover-bg-color: #63666a
}

.linkstack.type-text-color-dark-gray .a-link {
    --link-stack-list-type-text-color: #222731;
    --link-stack-list-type-hover-bg-color: #222731
}

.linkstack.type-text-color-light-gray .a-link {
    --link-stack-list-type-text-color: #d9d9d6;
    --link-stack-list-type-hover-bg-color: #d9d9d6
}

.linkstack.type-text-color-white .a-link {
    --link-stack-list-type-text-color: #fff;
    --link-stack-list-type-hover-bg-color: #fff
}

.linkstack.type-text-color-primary-blue .a-link {
    --link-stack-list-type-text-color: #009cde;
    --link-stack-list-type-hover-bg-color: #009cde
}

.linkstack.type-text-color-dark-blue .a-link {
    --link-stack-list-type-text-color: #002a3a;
    --link-stack-list-type-hover-bg-color: #002a3a
}

.linkstack.type-text-color-medium-blue .a-link {
    --link-stack-list-type-text-color: #004f71;
    --link-stack-list-type-hover-bg-color: #004f71
}

.linkstack.type-text-color-dark-mint .a-link {
    --link-stack-list-type-text-color: #64ccc9;
    --link-stack-list-type-hover-bg-color: #64ccc9
}

.linkstack.type-text-green--hover-black .a-link,
.linkstack.type-text-green--hover-black .a-link.type-active-tab {
    --link-stack-list-type-hover-bg-color: #d1d3d4
}

.linkstack.type-text-green--hover-black .a-link .a-link__text,
.linkstack.type-text-green--hover-black .a-link.type-active-tab .a-link__text {
    color: #7ccc6c !important
}

.linkstack.type-text-green--hover-black .a-link .a-link__text:hover,
.linkstack.type-text-green--hover-black .a-link.type-active-tab .a-link__text:hover {
    color: #000 !important
}

@media only screen and (max-width:767.98px) {
    .linkstack.type-text-green--hover-black .m-link-stack {
        margin-bottom: 0
    }

    .linkstack.type-text-green--hover-black .m-link-stack .m-link-stack--header {
        display: none
    }

    .linkstack.type-text-green--hover-black .m-link-stack .m-link-stack--content.d-none {
        display: block !important;
        width: fit-content
    }

    .linkstack.type-text-green--hover-black .m-link-stack .m-link-stack--content.d-none .a-link,
    .linkstack.type-text-green--hover-black .m-link-stack .m-link-stack--content.d-none .a-link.type-active-tab {
        display: block !important
    }

    .linkstack.type-text-green--hover-black .m-link-stack .m-link-stack--content.d-none .a-link .a-link__text,
    .linkstack.type-text-green--hover-black .m-link-stack .m-link-stack--content.d-none .a-link.type-active-tab .a-link__text {
        color: #7ccc6c !important
    }

    .linkstack.type-text-green--hover-black .m-link-stack .m-link-stack--content.d-none .a-link .a-link__text:hover,
    .linkstack.type-text-green--hover-black .m-link-stack .m-link-stack--content.d-none .a-link.type-active-tab .a-link__text:hover {
        color: #000 !important
    }
}

@media only screen and (max-width:767.98px) {
    .linkstack.multiple-tabs-variation .m-link-stack {
        border-bottom: 1px solid #d1d3d4
    }

    .linkstack.multiple-tabs-variation .m-link-stack .m-link-stack--content.js-collapsable-links {
        background: unset;
        display: flex !important
    }

    .linkstack.multiple-tabs-variation .m-link-stack .m-link-stack--content.js-collapsable-links .a-link {
        margin-right: 2px
    }
}

.linkstack.type-left-spacing {
    padding-left: 157.875px !important
}

.linkstack.linkstack--icon-none .m-link-stack .m-link-stack--header .abt-icon-down-arrow {
    display: none !important;
    color: black
}

.linkstack.linkstack--icon-none .m-link-stack .m-link-stack--content {
    display: block !important
}

.linkstack .font-styles {
    font-family: 'BrandonGrotesqueRegular';
    font-weight: 400;
    line-height: 1.325;
    letter-spacing: .5px;
    text-transform: uppercase
}

.linkstack.linkstack--redesign-btn .m-link-stack .m-link-stack--header .m-link-stack--title {
    font-family: 'BrandonGrotesqueRegular';
    font-weight: 400;
    line-height: 1.325;
    letter-spacing: .5px;
    text-transform: uppercase;
    --link-stack-h6-color: #63666a;
    --link-stack-h6-font-size: 1rem
}

.linkstack.linkstack--redesign-btn .m-link-stack .m-link-stack--content {
    padding-top: 0
}

@media only screen and (max-width:991.98px) {
    .linkstack.linkstack--redesign-btn .m-link-stack .m-link-stack--content {
        padding-left: 0
    }
}

.linkstack.linkstack--redesign-btn .m-link-stack .m-link-stack--content .a-link {
    font-family: 'BrandonGrotesqueRegular';
    font-weight: 400;
    line-height: 1.325;
    letter-spacing: .5px;
    text-transform: uppercase;
    --link-font-size: 1rem;
    margin-top: 0
}

.linkstack.linkstack--redesign-btn .m-link-stack a {
    --link-stack-color: #63666a;
    padding-left: .625rem;
    padding-right: .625rem;
    padding-top: .31rem
}

.linkstack.linkstack--redesign-btn .m-link-stack a:hover {
    --link-stack-color: #009cde
}

.linkstack.linkstack--redesign-btn .m-link-stack a.redesign-btn-link {
    background-color: #009cde;
    color: #fff
}

@media only screen and (min-width:768px) {
    .linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content {
        display: flex !important
    }
}

.linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link {
    display: inline-block;
    border-bottom: solid 1px #333;
    border-right: solid 1px #fff;
    background: #d9d9d7;
    width: calc(100% / 3);
    list-style: none;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    text-align: center;
    font-weight: normal
}

.linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link.link-stack-active-tab {
    background: #323232
}

.linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link.link-stack-active-tab .a-link__text {
    color: #fff;
    font-family: 'BrandonGrotesqueBold';
    display: block;
    padding: 9px 8px 5px
}

html[lang*="ja"] .linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link.link-stack-active-tab .a-link__text,
html[lang*="cn"] .linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link.link-stack-active-tab .a-link__text {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link.link-stack-active-tab .a-link__text {
    font-family: 'Noto Sans Regular'
}

.linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link .a-link__text {
    color: #333;
    font-family: 'BrandonGrotesqueBold';
    display: block;
    padding: 9px 8px 5px
}

html[lang*="ja"] .linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link .a-link__text,
html[lang*="cn"] .linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link .a-link__text {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link .a-link__text {
    font-family: 'Noto Sans Regular'
}

@media only screen and (max-width:767.98px) {
    .linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content {
        padding: 0 20px
    }

    .linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link {
        width: 100% !important
    }
}

@media(min-width:810px) and (max-width:915px) {
    .linkstack.linkstack-active-tab .m-link-stack .m-link-stack--content .a-link {
        width: 32.4% !important
    }
}

.linkstack.linkstack-tabs {
    border-bottom: 1px solid #d9dadb;
    width: 100%;
    z-index: 997
}

.linkstack.linkstack-tabs[class*="font-brandon-grotesque-"] .a-link__text {
    padding-top: 15px !important;
    padding-bottom: 9px !important
}

@media only screen and (min-width:992px) {
    .linkstack.linkstack-tabs {
        width: 85%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .linkstack.linkstack-tabs {
        width: 90%
    }
}

@media only screen and (max-width:767.98px) {
    .linkstack.linkstack-tabs .m-link-stack .m-link-stack--content .a-link .a-link__text {
        font-size: .625rem;
        padding: 12px 6px
    }
}

@media only screen and (max-width:767.98px) {
    .linkstack.linkstack-tabs {
        border: unset !important
    }
}

.linkstack.linkstack-tabs .m-link-stack .m-link-stack--content {
    padding-left: 0 !important;
    display: block !important
}

@media only screen and (min-width:768px) {
    .linkstack.linkstack-tabs .m-link-stack .m-link-stack--content {
        background-color: #fff
    }
}

.linkstack.linkstack-tabs .m-link-stack .m-link-stack--content .a-link {
    border-right: 1px solid #fff;
    display: inline-block;
    height: 36px;
    font-size: .875rem;
    margin-right: -3px;
    line-height: .725em;
    text-transform: uppercase;
    background-color: #ffd100 !important
}

@media only screen and (min-width:992px) {
    .linkstack.linkstack-tabs .m-link-stack .m-link-stack--content .a-link:first-child {
        border-right: 1px solid #fff
    }
}

.linkstack.linkstack-tabs .m-link-stack .m-link-stack--content .a-link:hover {
    background-color: #222731 !important
}

.linkstack.linkstack-tabs .m-link-stack .m-link-stack--content .a-link:hover:hover .a-link__text {
    color: #ffd100 !important
}

.linkstack.linkstack-tabs .m-link-stack .m-link-stack--content .a-link .a-link__text {
    color: #222731 !important;
    font-weight: normal;
    padding: 14px 20px 12px
}

.linkstack.linkstack-tabs .m-link-stack .m-link-stack--content .a-link.active-tab {
    background: #222731 !important;
    pointer-events: none !important
}

.linkstack.linkstack-tabs .m-link-stack .m-link-stack--content .a-link.active-tab .a-link__text {
    color: #ffd100 !important
}

@media only screen and (max-width:767.98px) {
    .linkstack.linkstack-tabs .m-link-stack .m-link-stack--content .a-link .a-link__text {
        padding: 12px 3px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .linkstack.linkstack-tabs .m-link-stack .m-link-stack--content .a-link:nth-child(2) {
        border-right: 1px solid #fff
    }

    .linkstack.linkstack-tabs .m-link-stack .m-link-stack--content .a-link .a-link__text {
        padding: 13px 10px 16px
    }
}

.linkstack.linkstack-edgearchive .m-link-stack {
    margin-top: -23px
}

.linkstack.linkstack-edgearchive .m-link-stack .a-link__text {
    color: #017387 !important;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5rem;
    margin-left: 40px;
    display: list-item
}

.linkstack.linkstack-edgearchive .m-link-stack .a-link__text:hover {
    color: #2a2b33 !important
}

.linkstack.linkstack-edgearchive .m-link-stack .a-link__text::marker {
    color: black !important
}

@media only screen and (max-width:912px) {
    .linkstack.linkstack-edgearchive .m-link-stack .a-link__text {
        margin-left: 15px !important
    }
}

@media only screen and (min-width:992px) {
    #languagenavigation-size-adjustment .flag-icon {
        width: 1.8rem;
        height: .625rem
    }
}

.generic-tile {
    border-top: var(--tiles-corp-hero-panel-border-top);
    box-shadow: var(--tiles-corp-hero-panel-box-shadow)
}

@media only screen and (max-width:767.98px) {
    .generic-tile {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0;
        padding-right: 0;
        --tiles-border-radius: 0
    }
}

@media only screen and (min-width:1200px) {
    .generic-tile.a-tile-square-corner.a-tile {
        margin: 10px !important
    }
}

.generic-tile.a-tile-square-corner.a-tile .a-tile__link {
    border-radius: 0;
    cursor: default
}

@media only screen and (max-width:767.98px) {
    .generic-tile.a-tile-square-corner.a-tile .a-tile__link {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start
    }
}

@media only screen and (max-width:767.98px) {
    .generic-tile.a-tile-square-corner.a-tile .a-tile__link .a-tile__icon {
        display: none
    }
}

.generic-tile.a-tile-square-corner.a-tile .a-tile__link .a-tile__title .a-tile__title-text h4 {
    font-size: 1.25rem
}

@media only screen and (max-width:767.98px) {
    .generic-tile.a-tile-square-corner.a-tile .a-tile__link .a-tile__title .a-tile__title-text h4 {
        font-size: 1rem
    }
}

@media only screen and (max-width:767.98px) {
    .generic-tile.a-tile-square-corner.a-tile .a-tile__link .a-tile__para {
        display: block
    }
}

.generic-tile.a-tile-square-corner.a-tile .a-tile__link .a-tile__para p {
    font-size: .875rem
}

@media only screen and (max-width:767.98px) {
    .generic-tile.a-tile-square-corner.a-tile .a-tile__link .a-tile__para p {
        margin: 0
    }
}

.generic-tile.a-tile-square-corner.a-tile .a-tile__link:hover::after {
    border-radius: 0
}

.generic-tile .a-tile__link {
    background-color: var(--tiles-corp-hero-panel-bg-color);
    min-height: var(--tiles-corp-hero-panel-min-height);
    padding: var(--tiles-corp-hero-panel-padding)
}

.generic-tile .a-tile__link::after {
    display: block;
    border: 0;
    height: 0
}

.generic-tile .a-tile__link .a-tile__title * {
    color: var(--tiles-corp-hero-panel-title-color);
    font-family: var(--tiles-corp-hero-panel-title-font-family);
    margin-bottom: 0;
    text-transform: uppercase;
    word-wrap: break-word
}

.generic-tile .a-tile__link .a-tile__para {
    margin-top: 12px
}

.generic-tile .a-tile__link .a-tile__para * {
    color: var(--tiles-corp-hero-panel-description-color);
    line-height: 1rem;
    font-family: var(--tiles-corp-hero-panel-description-font-family);
    margin-top: 0;
    word-wrap: break-word
}

.generic-tile .a-tile__link:hover {
    border: 0
}

.generic-tile .a-tile__link:hover .a-tile__title * {
    color: var(--tiles-corp-hero-panel-title-hover-color)
}

.generic-tile .a-tile__link:hover .a-tile__para * {
    color: var(--tiles-corp-hero-panel-description-hover-color)
}

.generic-tile .a-tile__link:hover::after {
    background-color: var(--tiles-corp-hero-panel-bg-hover-color);
    border-top: 0;
    height: 100%
}

@media only screen and (max-width:767.98px) {
    .generic-tile .a-tile__link {
        display: flex;
        flex-direction: row-reverse;
        height: auto !important;
        justify-content: flex-end;
        align-items: flex-end;
        min-height: 3rem;
        padding: 1rem
    }

    .generic-tile .a-tile__link .a-tile__para {
        display: none
    }

    .generic-tile .a-tile__link .a-tile__icon {
        color: var(--tiles-corp-hero-panel-title-color);
        top: unset
    }
}

.a-tile--corp-heronav-unique-styles,
.a-tile.a-tile--corp-heronav-green-card,
.a-tile.a-tile--corp-heronav-dark-green-card,
.a-tile.a-tile--corp-heronav-hover-blue-card,
.a-tile.a-tile--corp-heronav-yellow-card,
.a-tile.a-tile--corp-heronav-dark-yellow-card,
.a-tile.a-tile--corp-heronav-fuscia-card,
.a-tile.a-tile--corp-heronav-dark-fuscia-card,
.a-tile.a-tile--corp-heronav-orange-card,
.a-tile.a-tile--corp-heronav-dark-orange-card,
.a-tile.a-tile--corp-heronav-cyan-card,
.a-tile.a-tile--corp-heronav-dark-cyan-card,
.a-tile.a-tile--corp-heronav-mint-card {
    --tiles-corp-hero-panel-title-color: #222731;
    --tiles-corp-hero-panel-description-color: #222731;
    --tiles-corp-hero-panel-description-hover-color: #fff;
    --tiles-corp-hero-panel-bg-hover-color: #63666a;
    --tiles-corp-hero-panel-min-height: 160px;
    --tiles-corp-hero-panel-padding: 10%
}

.a-tile.a-tile--corp-blue-card .a-tile__link::after {
    display: none
}

.a-tile.a-tile--corp-blue-card .a-tile__link:hover {
    --tiles-corp-hero-panel-title-hover-color: #fff;
    --tiles-corp-hero-panel-description-hover-color: #fff;
    background-color: #002a3a;
    border: 1px solid #ccc
}

@media only screen and (max-width:767.98px) {
    .a-tile.a-tile--corp-blue-card .a-tile__link {
        display: block;
        min-height: var(--tiles-corp-hero-panel-min-height);
        padding: var(--tiles-corp-hero-panel-padding)
    }

    .a-tile.a-tile--corp-blue-card .a-tile__link .a-tile__para {
        display: block
    }

    .a-tile.a-tile--corp-blue-card .a-tile__link .a-tile__icon {
        display: none
    }
}

.a-tile.a-tile--corp-heronav-green-card {
    --tiles-corp-hero-panel-title-hover-color: #7ccc6c;
    --tiles-corp-hero-panel-bg-color: #7ccc6c
}

.a-tile.a-tile--corp-heronav-dark-green-card {
    --tiles-corp-hero-panel-title-hover-color: #00b140;
    --tiles-corp-hero-panel-bg-color: #00b140
}

.a-tile.a-tile--corp-heronav-hover-blue-card {
    --tiles-corp-hero-panel-title-hover-color: #019cde;
    --tiles-corp-hero-panel-bg-color: #019cde
}

.a-tile.a-tile--corp-heronav-yellow-card {
    --tiles-corp-hero-panel-title-hover-color: #ffd100;
    --tiles-corp-hero-panel-bg-color: #ffd100
}

.a-tile.a-tile--corp-heronav-dark-yellow-card {
    --tiles-corp-hero-panel-title-hover-color: #ded548;
    --tiles-corp-hero-panel-bg-color: #ded548
}

.a-tile.a-tile--corp-heronav-fuscia-card {
    --tiles-corp-hero-panel-title-hover-color: #aa0061;
    --tiles-corp-hero-panel-bg-color: #aa0061
}

.a-tile.a-tile--corp-heronav-dark-fuscia-card {
    --tiles-corp-hero-panel-title-hover-color: #470a68;
    --tiles-corp-hero-panel-bg-color: #470a68
}

.a-tile.a-tile--corp-heronav-orange-card {
    --tiles-corp-hero-panel-title-hover-color: #e4002b;
    --tiles-corp-hero-panel-bg-color: #e4002b
}

.a-tile.a-tile--corp-heronav-dark-orange-card {
    --tiles-corp-hero-panel-title-hover-color: #eeb33b;
    --tiles-corp-hero-panel-bg-color: #eeb33b
}

.a-tile.a-tile--corp-heronav-cyan-card {
    --tiles-corp-hero-panel-title-hover-color: #5bc2e7;
    --tiles-corp-hero-panel-bg-color: #5bc2e7
}

.a-tile.a-tile--corp-heronav-dark-cyan-card {
    --tiles-corp-hero-panel-title-hover-color: #007589;
    --tiles-corp-hero-panel-bg-color: #007589
}

.a-tile.a-tile--corp-heronav-mint-card {
    --tiles-corp-hero-panel-title-hover-color: #64ccc9;
    --tiles-corp-hero-panel-bg-color: #64ccc9
}

.a-tile.a-tile--corp-heronav-medium-blue-card {
    --tiles-corp-hero-panel-bg-color: #004f71;
    --tiles-corp-hero-panel-bg-hover-color: #d9d9d6;
    --tiles-corp-hero-panel-description-color: #d9d9d6;
    --tiles-corp-hero-panel-description-hover-color: #004f71;
    --tiles-corp-hero-panel-min-height: 225px;
    --tiles-corp-hero-panel-title-color: #d9d9d6;
    --tiles-corp-hero-panel-title-hover-color: #004f71;
    --tiles-corp-hero-panel-padding: 4rem 1.25rem 0 1.25rem
}

.a-tile.a-tile--full-width {
    max-width: 100%
}

.a-tile.a-tile--full-width .a-tile__link {
    width: 100%
}

.a-tile.a-tile--corp-collapse-margin {
    margin: 3px !important;
    padding: 0
}

html[lang*='en'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='zh'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='id'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='tr'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='es'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='gr'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='it'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='nl'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='pl'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='pt'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='sk'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='cz'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='fr'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='de'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='ch'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='ar'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='ua'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='ca'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title * {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title * {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='th'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title *,
html[lang*='tw'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title * {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .a-tile.a-tile-title--font-bold .a-tile__link .a-tile__title * {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='zh'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='id'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='tr'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='es'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='gr'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='it'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='nl'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='pl'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='pt'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='sk'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='cz'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='fr'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='de'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='ch'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='ar'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='ua'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='ca'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title * {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='th'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title *,
html[lang*='tw'] .a-tile.a-tile-title--font-medium .a-tile__link .a-tile__title * {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='zh'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='id'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='tr'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='es'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='gr'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='it'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='nl'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='pl'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='pt'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='sk'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='cz'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='fr'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='de'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='ch'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='ar'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='ua'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='ca'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title * {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='th'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title *,
html[lang*='tw'] .a-tile.a-tile-title--font-black .a-tile__link .a-tile__title * {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='zh'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='id'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='tr'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='es'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='gr'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='it'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='nl'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='pl'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='pt'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='sk'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='cz'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='fr'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='de'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='ch'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='ar'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='ua'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='ca'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title * {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='th'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title *,
html[lang*='tw'] .a-tile.a-tile-title--font-regular .a-tile__link .a-tile__title * {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='zh'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='id'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='tr'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='es'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='gr'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='it'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='nl'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='pl'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='pt'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='sk'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='cz'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='fr'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='de'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='ch'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='ar'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='ua'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='ca'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title * {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='th'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title *,
html[lang*='tw'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title * {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .a-tile.a-tile-title--font-thin .a-tile__link .a-tile__title * {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='zh'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='id'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='tr'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='es'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='gr'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='it'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='nl'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='pl'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='pt'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='sk'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='cz'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='fr'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='de'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='ch'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='ar'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='ua'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title *,
html[lang*='ca'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title * {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .a-tile.a-tile-title--font-italic .a-tile__link .a-tile__title * {
    --font-family: 'Segoe UI Italic'
}

html[lang*='en'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='zh'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='id'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='tr'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='es'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='gr'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='it'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='nl'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='pl'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='pt'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='sk'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='cz'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='fr'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='de'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='ch'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='ar'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='ua'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='ca'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para * {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para * {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='th'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para *,
html[lang*='tw'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para * {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .a-tile.a-tile-description--font-bold .a-tile__link .a-tile__para * {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='zh'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='id'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='tr'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='es'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='gr'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='it'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='nl'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='pl'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='pt'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='sk'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='cz'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='fr'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='de'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='ch'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='ar'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='ua'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='ca'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para * {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='th'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para *,
html[lang*='tw'] .a-tile.a-tile-description--font-medium .a-tile__link .a-tile__para * {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='zh'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='id'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='tr'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='es'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='gr'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='it'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='nl'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='pl'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='pt'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='sk'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='cz'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='fr'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='de'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='ch'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='ar'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='ua'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='ca'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para * {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='th'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para *,
html[lang*='tw'] .a-tile.a-tile-description--font-black .a-tile__link .a-tile__para * {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='zh'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='id'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='tr'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='es'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='gr'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='it'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='nl'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='pl'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='pt'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='sk'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='cz'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='fr'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='de'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='ch'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='ar'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='ua'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='ca'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para * {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='th'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para *,
html[lang*='tw'] .a-tile.a-tile-description--font-regular .a-tile__link .a-tile__para * {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='zh'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='id'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='tr'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='es'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='gr'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='it'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='nl'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='pl'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='pt'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='sk'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='cz'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='fr'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='de'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='ch'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='ar'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='ua'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='ca'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para * {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='th'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para *,
html[lang*='tw'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para * {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .a-tile.a-tile-description--font-thin .a-tile__link .a-tile__para * {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='zh'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='id'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='tr'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='es'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='gr'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='it'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='nl'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='pl'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='pt'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='sk'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='cz'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='fr'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='de'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='ch'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='ar'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='ua'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para *,
html[lang*='ca'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para * {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .a-tile.a-tile-description--font-italic .a-tile__link .a-tile__para * {
    --font-family: 'Segoe UI Italic'
}

.a-tile.a-tile-title--font-arial {
    --tiles-corp-hero-panel-title-font-family: 'Arial'
}

.a-tile.a-tile-title--font-brandon-grotesque-medium {
    --tiles-corp-hero-panel-title-font-family: 'BrandonGrotesqueMedium'
}

.a-tile.a-tile-title--font-brandon-grotesque-black {
    --tiles-corp-hero-panel-title-font-family: 'BrandonGrotesqueBlack'
}

.a-tile.a-tile-title--font-brandon-grotesque-regular {
    --tiles-corp-hero-panel-title-font-family: 'BrandonGrotesqueRegular'
}

.a-tile.a-tile-title--font-brandon-grotesque-bold {
    --tiles-corp-hero-panel-title-font-family: 'BrandonGrotesqueBold'
}

.a-tile.a-tile-title--font-georgia {
    --tiles-corp-hero-panel-title-font-family: 'Georgia'
}

.a-tile.a-tile-title--font-meiryo {
    --tiles-corp-hero-panel-title-font-family: 'Meiryo'
}

.a-tile.a-tile-title--font-segoe-ui {
    --tiles-corp-hero-panel-title-font-family: 'Segoe UI'
}

.a-tile.a-tile-title--font-times-new-roman {
    --tiles-corp-hero-panel-title-font-family: 'Times New Roman'
}

.a-tile.a-tile-title--font-extazy-black {
    --tiles-corp-hero-panel-title-font-family: 'Extazy Black'
}

.a-tile.a-tile-title--font-extazy-bold {
    --tiles-corp-hero-panel-title-font-family: 'Extazy Bold'
}

.a-tile.a-tile-title--font-extazy-light {
    --tiles-corp-hero-panel-title-font-family: 'Extazy Light'
}

.a-tile.a-tile-title--font-extazy-regular {
    --tiles-corp-hero-panel-title-font-family: 'Extazy Regular'
}

.a-tile.a-tile-title--font-noto-sans-thin {
    --tiles-corp-hero-panel-title-font-family: 'Noto Sans TC Thin'
}

.a-tile.a-tile-title--font-noto-sans-light {
    --tiles-corp-hero-panel-title-font-family: 'Noto Sans TC Light'
}

.a-tile.a-tile-title--font-noto-sans-regular {
    --tiles-corp-hero-panel-title-font-family: 'Noto Sans TC Regular'
}

.a-tile.a-tile-title--font-noto-sans-medium {
    --tiles-corp-hero-panel-title-font-family: 'Noto Sans TC Medium'
}

.a-tile.a-tile-title--font-noto-sans-bold {
    --tiles-corp-hero-panel-title-font-family: 'Noto Sans TC Bold'
}

.a-tile.a-tile-title--font-noto-sans-black {
    --tiles-corp-hero-panel-title-font-family: 'Noto Sans TC Black'
}

.a-tile.a-tile-title--font-microsoft-ya-hei {
    --tiles-corp-hero-panel-title-font-family: 'Microsoft YaHei'
}

.a-tile.a-tile-title--font-calibri {
    --tiles-corp-hero-panel-title-font-family: 'Calibri'
}

.a-tile.a-tile-title--font-sans-serif {
    --tiles-corp-hero-panel-title-font-family: 'sans-serif'
}

.a-tile.a-tile-title--font-noto-sans-kr {
    --tiles-corp-hero-panel-title-font-family: '"Noto Sans KR", sans-serif'
}

.a-tile.a-tile-title--font-mercury-text-g1-roman {
    --tiles-corp-hero-panel-title-font-family: 'Mercury Text G1 Roman'
}

.a-tile.a-tile-title--font-Helvetica-neue {
    --tiles-corp-hero-panel-title-font-family: 'Helvetica Neue'
}

.a-tile.a-tile-title--font-hiragino-mincho-pron {
    --tiles-corp-hero-panel-title-font-family: 'Hiragino Mincho ProN', 'MS PGothic'
}

.a-tile.a-tile-title--font-malgun-gothic-w35-regular {
    --tiles-corp-hero-panel-title-font-family: 'Malgun Gothic W35 Regular'
}

.a-tile.a-tile-title--font-noto-sans-sc-regular {
    --tiles-corp-hero-panel-title-font-family: 'Noto Sans SC Regular'
}

.a-tile.a-tile-title--font-noto-sans-vi-regular {
    --tiles-corp-hero-panel-title-font-family: 'Noto Sans Regular'
}

.a-tile.a-tile-title--font-noto-serif-vi-regular {
    --tiles-corp-hero-panel-title-font-family: 'Noto Serif Regular'
}

.a-tile.a-tile-title--font-brandon-medium {
    --tiles-corp-hero-panel-title-font-family: 'Brandon Medium'
}

.a-tile.a-tile-title--font-brandon-bold {
    --tiles-corp-hero-panel-title-font-family: 'Brandon Bold'
}

.a-tile.a-tile-title--font-brandon-regular {
    --tiles-corp-hero-panel-title-font-family: 'Brandon Regular'
}

.a-tile.a-tile-description--font-arial {
    --tiles-corp-hero-panel-description-font-family: 'Arial'
}

.a-tile.a-tile-description--font-brandon-grotesque-medium {
    --tiles-corp-hero-panel-description-font-family: 'BrandonGrotesqueMedium'
}

.a-tile.a-tile-description--font-brandon-grotesque-black {
    --tiles-corp-hero-panel-description-font-family: 'BrandonGrotesqueBlack'
}

.a-tile.a-tile-description--font-brandon-grotesque-regular {
    --tiles-corp-hero-panel-description-font-family: 'BrandonGrotesqueRegular'
}

.a-tile.a-tile-description--font-brandon-grotesque-bold {
    --tiles-corp-hero-panel-description-font-family: 'BrandonGrotesqueBold'
}

.a-tile.a-tile-description--font-georgia {
    --tiles-corp-hero-panel-description-font-family: 'Georgia'
}

.a-tile.a-tile-description--font-meiryo {
    --tiles-corp-hero-panel-description-font-family: 'Meiryo'
}

.a-tile.a-tile-description--font-segoe-ui {
    --tiles-corp-hero-panel-description-font-family: 'Segoe UI'
}

.a-tile.a-tile-description--font-times-new-roman {
    --tiles-corp-hero-panel-description-font-family: 'Times New Roman'
}

.a-tile.a-tile-description--font-extazy-black {
    --tiles-corp-hero-panel-description-font-family: 'Extazy Black'
}

.a-tile.a-tile-description--font-extazy-bold {
    --tiles-corp-hero-panel-description-font-family: 'Extazy Bold'
}

.a-tile.a-tile-description--font-extazy-light {
    --tiles-corp-hero-panel-description-font-family: 'Extazy Light'
}

.a-tile.a-tile-description--font-extazy-regular {
    --tiles-corp-hero-panel-description-font-family: 'Extazy Regular'
}

.a-tile.a-tile-description--font-noto-sans-thin {
    --tiles-corp-hero-panel-description-font-family: 'Noto Sans TC Thin'
}

.a-tile.a-tile-description--font-noto-sans-light {
    --tiles-corp-hero-panel-description-font-family: 'Noto Sans TC Light'
}

.a-tile.a-tile-description--font-noto-sans-regular {
    --tiles-corp-hero-panel-description-font-family: 'Noto Sans TC Regular'
}

.a-tile.a-tile-description--font-noto-sans-medium {
    --tiles-corp-hero-panel-description-font-family: 'Noto Sans TC Medium'
}

.a-tile.a-tile-description--font-noto-sans-bold {
    --tiles-corp-hero-panel-description-font-family: 'Noto Sans TC Bold'
}

.a-tile.a-tile-description--font-noto-sans-black {
    --tiles-corp-hero-panel-description-font-family: 'Noto Sans TC Black'
}

.a-tile.a-tile-description--font-microsoft-ya-hei {
    --tiles-corp-hero-panel-description-font-family: 'Microsoft YaHei'
}

.a-tile.a-tile-description--font-calibri {
    --tiles-corp-hero-panel-description-font-family: 'Calibri'
}

.a-tile.a-tile-description--font-sans-serif {
    --tiles-corp-hero-panel-description-font-family: 'sans-serif'
}

.a-tile.a-tile-description--font-noto-sans-kr {
    --tiles-corp-hero-panel-description-font-family: '"Noto Sans KR", sans-serif'
}

.a-tile.a-tile-description--font-mercury-text-g1-roman {
    --tiles-corp-hero-panel-description-font-family: 'Mercury Text G1 Roman'
}

.a-tile.a-tile-description--font-Helvetica-neue {
    --tiles-corp-hero-panel-description-font-family: 'Helvetica Neue'
}

.a-tile.a-tile-description--font-hiragino-mincho-pron {
    --tiles-corp-hero-panel-description-font-family: 'Hiragino Mincho ProN', 'MS PGothic'
}

.a-tile.a-tile-description--font-malgun-gothic-w35-regular {
    --tiles-corp-hero-panel-description-font-family: 'Malgun Gothic W35 Regular'
}

.a-tile.a-tile-description--font-noto-sans-sc-regular {
    --tiles-corp-hero-panel-description-font-family: 'Noto Sans SC Regular'
}

.a-tile.a-tile-description--font-noto-sans-vi-regular {
    --tiles-corp-hero-panel-description-font-family: 'Noto Sans Regular'
}

.a-tile.a-tile-description--font-noto-serif-vi-regular {
    --tiles-corp-hero-panel-description-font-family: 'Noto Serif Regular'
}

.a-tile.a-tile-description--font-brandon-medium {
    --tiles-corp-hero-panel-description-font-family: 'Brandon Medium'
}

.a-tile.a-tile-description--font-brandon-bold {
    --tiles-corp-hero-panel-description-font-family: 'Brandon Bold'
}

.a-tile.a-tile-description--font-brandon-regular {
    --tiles-corp-hero-panel-description-font-family: 'Brandon Regular'
}

@media only screen and (max-width:767.98px) {
    .a-tile.a-tile--mob-left-right-padding-10 {
        padding: 0 10px
    }
}

.a-tile .stock-Info {
    border: 1px solid var(--tiles-corp-hero-panel-description-color);
    padding: 10px 10px 0 10px;
    font-family: 'BrandonGrotesqueBold'
}

.a-tile .stock-Info .down-arrow {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--tiles-corp-hero-panel-description-color);
    display: inline-block;
    vertical-align: middle;
    padding-top: 5px
}

.a-tile .stock-Info .up-arrow {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--tiles-corp-hero-panel-description-color);
    display: inline-block;
    vertical-align: top;
    padding-top: 4px
}

.a-tile .a-tile__link:hover .stock-Info {
    border: 1px solid var(--tiles-corp-hero-panel-description-hover-color)
}

.a-tile .a-tile__link:hover .stock-Info .up-arrow {
    border-bottom-color: var(--tiles-corp-hero-panel-description-hover-color)
}

.a-tile .a-tile__link:hover .stock-Info .down-arrow {
    border-top-color: var(--tiles-corp-hero-panel-description-hover-color)
}

@media only screen and (min-width:992px) {
    .o-info-section.info-section-heading--quotes-black {
        max-width: 920px;
        margin: 0 auto
    }
}

@media only screen and (min-width:1200px) {
    .o-info-section.info-section-heading--quotes-black {
        max-width: 1100px;
        margin: 0 auto
    }
}

.o-info-section.info-section-heading--quotes-black .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--quotes-black .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--quotes-black .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--quotes-black .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--quotes-black .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--quotes-black .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #88888d
}

.o-info-section.info-section-heading--quotes-black .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #000;
    color: #fff !important
}

@media only screen and (max-width:767.98px) {
    .o-info-section.info-section-heading--quotes-black .o-info-section__container .o-info-section__column .btn {
        display: none
    }
}

.o-info-section.info-section-heading--quotes-black .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-bg-color: #000;
    color: #fff !important;
    box-shadow: none
}

.o-info-section.info-section-heading--quotes-black .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #88888d
}

.o-info-section .o-info-section__container .o-info-section__heading .sectionTitle h4 {
    font-size: 1.25rem
}

.o-info-section #info-section--extraCurve.rounded-option {
    margin-bottom: -1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

.o-info-section #info-section--extraCurve.notch-option {
    margin-bottom: -4px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

@media only screen and (max-width:767.98px) {
    .o-info-section #info-section--extraCurve~.o-info-section--curve-container {
        margin: 0 !important;
        position: relative !important
    }
}

.o-info-section #info-section--mob-topCurve.rounded-option {
    margin-bottom: -1px;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0
}

.o-info-section #info-section--mob-topCurve.notch-option {
    margin-bottom: -4px;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0
}

.o-info-section #info-section--sliderCurve-with-image.rounded-option svg image {
    height: auto
}

@media only screen and (max-width:767.98px) {
    .o-info-section #info-section--sliderCurve-with-image+.o-info-section--curve-container.info-section--mob-display-image .a-bg-img {
        display: block;
        position: relative
    }

    .o-info-section #info-section--sliderCurve-with-image+.o-info-section--curve-container.info-section--mob-display-image .a-bg-img .cmp-image__image {
        position: relative
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-info-section #info-section--sliderCurve-with-image+.o-info-section--curve-container .a-title {
        padding-bottom: 10px
    }

    .o-info-section #info-section--sliderCurve-with-image+.o-info-section--curve-container .a-title .sectionTitle {
        padding-bottom: 10px
    }

    .o-info-section #info-section--sliderCurve-with-image+.o-info-section--curve-container .o-info-section__title {
        padding-bottom: 10px
    }

    .o-info-section #info-section--sliderCurve-with-image+.o-info-section--curve-container .o-info-section__button-wrapper {
        padding-top: 10px
    }
}

@media only screen and (min-width:768px) {
    .o-info-section #info-section--sliderCurve-with-image+.o-info-section--curve-container {
        min-width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0
    }
}

.o-info-section #info-section--sliderCurve-with-image+.o-info-section--curve-container .a-bg-img {
    display: none
}

.o-info-section #info-section--sliderCurve-with-image .info-section--sliderCurve {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%
}

@media only screen and (min-width:992px) {
    .o-info-section #info-section--sliderCurve-with-image .info-section--sliderCurve {
        height: auto
    }

    .o-info-section #info-section--sliderCurve-with-image.notch-option {
        margin-top: -50px !important
    }

    .o-info-section #info-section--sliderCurve-with-image.rounded-option {
        margin-top: -160px !important
    }

    .o-info-section #info-section--sliderCurve-with-image.notch-option+.o-info-section--curve-container {
        margin-top: 60px !important
    }

    .o-info-section #info-section--sliderCurve-with-image.rounded-option+.o-info-section--curve-container {
        margin-top: 140px !important
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-info-section #info-section--sliderCurve-with-image .info-section--sliderCurve {
        height: 700px
    }

    .o-info-section #info-section--sliderCurve-with-image.notch-option {
        margin-top: -45px !important
    }

    .o-info-section #info-section--sliderCurve-with-image.notch-option+.o-info-section--curve-container {
        margin-top: 40px !important
    }

    .o-info-section #info-section--sliderCurve-with-image.rounded-option {
        margin-top: -145px !important
    }

    .o-info-section #info-section--sliderCurve-with-image.rounded-option+.o-info-section--curve-container {
        margin-top: 115px !important
    }
}

.o-info-section #info-section--sliderCurve-with-image .info-section--sliderCurve svg {
    display: block;
    height: 100%;
    margin: 0;
    position: static;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-info-section.info-section--extra-height #info-section--sliderCurve-with-image.notch-option {
        margin-top: -50px !important
    }
}

@media only screen and (min-width:768px) {
    .o-info-section.info-section--extra-height #info-section--sliderCurve-with-image.rounded-option {
        margin-top: -170px !important
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-info-section.info-section--extra-height #info-section--sliderCurve-with-image.rounded-option {
        margin-top: -150px !important
    }
}

@media only screen and (min-width:768px) {
    .o-info-section.info-section--extra-height #info-section--sliderCurve-with-image .info-section--sliderCurve {
        height: 800px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-info-section.info-section--extra-height #info-section--sliderCurve-with-image .info-section--sliderCurve {
        height: 810px
    }
}

.o-info-section.info-section-remove-padding {
    padding: 0 !important
}

@media only screen and (max-width:767.98px) {
    .o-info-section.info-section-remove-padding {
        padding: 10px 0 20px 0 !important
    }

    .o-info-section.info-section-remove-padding .o-info-section__container {
        padding: 0 12px 0 12px !important
    }
}

.o-info-section #info-section--sliderCurve-without-image .info-section--sliderCurve {
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1
}

.o-info-section #info-section--sliderCurve-without-image .info-section--sliderCurve.rounded-option {
    bottom: 100%;
    margin-bottom: -1px
}

.o-info-section #info-section--sliderCurve-without-image .info-section--sliderCurve.notch-option {
    bottom: 100%;
    margin-bottom: -6px
}

@media only screen and (max-width:767.98px) {
    .o-info-section .a-link {
        width: 100%
    }
}

.o-info-section.info-section--extra-notch-style {
    padding: 0 !important
}

.o-info-section.info-section--extra-notch-style .o-info-section__container {
    display: none
}

.o-info-section.info-section--separator-color--white {
    --info-separator-border-color: #fff
}

.o-info-section.info-section--separator-color--gray {
    --info-separator-border-color: #63666a
}

.o-info-section.info-section--separator-color--dark-gray {
    --info-separator-border-color: #222731
}

.o-info-section.info-section--separator-color--light-gray {
    --info-separator-border-color: #d9d9d6
}

.o-info-section.info-section--separator-color--cyan {
    --info-separator-border-color: #5bc2e7
}

.o-info-section.info-section--separator-color--primary-blue {
    --info-separator-border-color: #009cde
}

.o-info-section.info-section--separator-color--mint {
    --info-separator-border-color: #64ccc9
}

.o-info-section.info-section--separator-color--black {
    --info-separator-border-color: #000
}

.o-info-section.info-section--separator-color--bastille {
    --info-separator-border-color: #2a2b33
}

.o-info-section.info-section--separator-color--blue-lagoon {
    --info-separator-border-color: #017387
}

.o-info-section.info-section-heading--white .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--white .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--white .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--white .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--white .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--white .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #fff
}

.o-info-section.info-section-heading--white .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #fff
}

.o-info-section.info-section-heading--white .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #fff
}

.o-info-section.info-section-heading--white .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #fff
}

.o-info-section.info-section-heading--dark-blue .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--dark-blue .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--dark-blue .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--dark-blue .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--dark-blue .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--dark-blue .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #002a3a
}

.o-info-section.info-section-heading--dark-blue .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #002a3a
}

.o-info-section.info-section-heading--dark-blue .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #002a3a
}

.o-info-section.info-section-heading--dark-blue .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #002a3a
}

.o-info-section.info-section-heading--light-blue .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--light-blue .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--light-blue .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--light-blue .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--light-blue .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--light-blue .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #5bc2e7
}

.o-info-section.info-section-heading--light-blue .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #5bc2e7
}

.o-info-section.info-section-heading--light-blue .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #5bc2e7
}

.o-info-section.info-section-heading--light-blue .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #5bc2e7 !important
}

.o-info-section.info-section-heading--medium-blue .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--medium-blue .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--medium-blue .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--medium-blue .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--medium-blue .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--medium-blue .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #004f71
}

.o-info-section.info-section-heading--medium-blue .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #004f71
}

.o-info-section.info-section-heading--medium-blue .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #004f71
}

.o-info-section.info-section-heading--medium-blue .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #004f71
}

.o-info-section.info-section-heading--yellow .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--yellow .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--yellow .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--yellow .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--yellow .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--yellow .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #ffd100
}

.o-info-section.info-section-heading--yellow .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #ffd100
}

.o-info-section.info-section-heading--yellow .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #ffd100
}

.o-info-section.info-section-heading--yellow .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #ffd100
}

.o-info-section.info-section-heading--dark-yellow .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--dark-yellow .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--dark-yellow .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--dark-yellow .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--dark-yellow .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--dark-yellow .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #ded548
}

.o-info-section.info-section-heading--dark-yellow .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #ded548
}

.o-info-section.info-section-heading--dark-yellow .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #ded548
}

.o-info-section.info-section-heading--dark-yellow .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #ded548
}

.o-info-section.info-section-heading--green .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--green .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--green .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--green .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--green .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--green .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #7ccc6c
}

.o-info-section.info-section-heading--green .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #7ccc6c
}

.o-info-section.info-section-heading--green .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #7ccc6c
}

.o-info-section.info-section-heading--green .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #7ccc6c
}

.o-info-section.info-section-heading--medium-green .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--medium-green .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--medium-green .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--medium-green .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--medium-green .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--medium-green .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #00b140
}

.o-info-section.info-section-heading--medium-green .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #00b140
}

.o-info-section.info-section-heading--medium-green .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #00b140
}

.o-info-section.info-section-heading--medium-green .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #00b140
}

.o-info-section.info-section-heading--dark-green .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--dark-green .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--dark-green .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--dark-green .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--dark-green .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--dark-green .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #00b140
}

.o-info-section.info-section-heading--dark-green .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #00b140
}

.o-info-section.info-section-heading--dark-green .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #00b140
}

.o-info-section.info-section-heading--dark-green .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #00b140
}

.o-info-section.info-section-heading--fuscia .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--fuscia .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--fuscia .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--fuscia .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--fuscia .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--fuscia .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #aa0061
}

.o-info-section.info-section-heading--fuscia .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #aa0061
}

.o-info-section.info-section-heading--fuscia .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #aa0061
}

.o-info-section.info-section-heading--fuscia .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #aa0061
}

.o-info-section.info-section-heading--dark-fuscia .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--dark-fuscia .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--dark-fuscia .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--dark-fuscia .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--dark-fuscia .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--dark-fuscia .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #470a68
}

.o-info-section.info-section-heading--dark-fuscia .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #470a68
}

.o-info-section.info-section-heading--dark-fuscia .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #470a68
}

.o-info-section.info-section-heading--dark-fuscia .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #470a68
}

.o-info-section.info-section-heading--orange .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--orange .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--orange .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--orange .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--orange .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--orange .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #e4002b
}

.o-info-section.info-section-heading--orange .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #e4002b
}

.o-info-section.info-section-heading--orange .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #e4002b
}

.o-info-section.info-section-heading--orange .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #e4002b
}

.o-info-section.info-section-heading--dark-orange .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--dark-orange .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--dark-orange .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--dark-orange .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--dark-orange .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--dark-orange .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #eeb33b
}

.o-info-section.info-section-heading--dark-orange .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #eeb33b
}

.o-info-section.info-section-heading--dark-orange .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #eeb33b
}

.o-info-section.info-section-heading--dark-orange .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #eeb33b
}

.o-info-section.info-section-heading--cyan .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--cyan .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--cyan .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--cyan .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--cyan .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--cyan .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #5bc2e7
}

.o-info-section.info-section-heading--cyan .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #5bc2e7
}

.o-info-section.info-section-heading--cyan .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #5bc2e7
}

.o-info-section.info-section-heading--cyan .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #5bc2e7
}

.o-info-section.info-section-heading--blue .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--blue .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--blue .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--blue .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--blue .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--blue .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #004f71
}

.o-info-section.info-section-heading--blue .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #004f71
}

.o-info-section.info-section-heading--blue .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #004f71
}

.o-info-section.info-section-heading--blue .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #004f71
}

.o-info-section.info-section-heading--gray .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--gray .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--gray .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--gray .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--gray .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--gray .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #63666a
}

.o-info-section.info-section-heading--gray .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #63666a
}

.o-info-section.info-section-heading--gray .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #63666a
}

.o-info-section.info-section-heading--gray .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #63666a
}

.o-info-section.info-section-heading--dark-gray .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--dark-gray .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--dark-gray .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--dark-gray .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--dark-gray .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--dark-gray .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #222731
}

.o-info-section.info-section-heading--dark-gray .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #222731
}

.o-info-section.info-section-heading--dark-gray .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #222731
}

.o-info-section.info-section-heading--dark-gray .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #222731
}

.o-info-section.info-section-heading--light-gray .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--light-gray .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--light-gray .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--light-gray .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--light-gray .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--light-gray .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #d9d9d6
}

.o-info-section.info-section-heading--light-gray .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #d9d9d6
}

.o-info-section.info-section-heading--light-gray .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #d9d9d6
}

.o-info-section.info-section-heading--light-gray .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #d9d9d6
}

.o-info-section.info-section-heading--fog-gray .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--fog-gray .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--fog-gray .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--fog-gray .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--fog-gray .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--fog-gray .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #d9dadb
}

.o-info-section.info-section-heading--fog-gray .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #d9dadb
}

.o-info-section.info-section-heading--fog-gray .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #d9dadb
}

.o-info-section.info-section-heading--fog-gray .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #d9dadb
}

.o-info-section.info-section-heading--pearl-gray .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--pearl-gray .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--pearl-gray .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--pearl-gray .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--pearl-gray .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--pearl-gray .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #d1d3d4
}

.o-info-section.info-section-heading--pearl-gray .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #d1d3d4
}

.o-info-section.info-section-heading--pearl-gray .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #d1d3d4
}

.o-info-section.info-section-heading--pearl-gray .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #d1d3d4
}

.o-info-section.info-section-heading--medium-gray .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--medium-gray .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--medium-gray .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--medium-gray .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--medium-gray .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--medium-gray .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #939799
}

.o-info-section.info-section-heading--medium-gray .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #939799
}

.o-info-section.info-section-heading--medium-gray .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #939799
}

.o-info-section.info-section-heading--medium-gray .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #939799
}

.o-info-section.info-section-heading--dark-cyan .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--dark-cyan .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--dark-cyan .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--dark-cyan .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--dark-cyan .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--dark-cyan .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #007589
}

.o-info-section.info-section-heading--dark-cyan .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #007589
}

.o-info-section.info-section-heading--dark-cyan .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #007589
}

.o-info-section.info-section-heading--dark-cyan .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #007589
}

.o-info-section.info-section-heading--primary-blue .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--primary-blue .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--primary-blue .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--primary-blue .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--primary-blue .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--primary-blue .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #009cde
}

.o-info-section.info-section-heading--primary-blue .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #009cde
}

.o-info-section.info-section-heading--primary-blue .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #009cde
}

.o-info-section.info-section-heading--primary-blue .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #009cde
}

.o-info-section.info-section-heading--mint .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--mint .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--mint .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--mint .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--mint .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--mint .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #64ccc9
}

.o-info-section.info-section-heading--mint .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #64ccc9
}

.o-info-section.info-section-heading--mint .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #64ccc9
}

.o-info-section.info-section-heading--mint .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #64ccc9
}

.o-info-section.info-section-heading--charcoal .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--charcoal .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--charcoal .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--charcoal .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--charcoal .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--charcoal .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #222731
}

.o-info-section.info-section-heading--charcoal .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #222731
}

.o-info-section.info-section-heading--charcoal .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #222731
}

.o-info-section.info-section-heading--charcoal .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #222731
}

.o-info-section.info-section-heading--dark-charcoal .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--dark-charcoal .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--dark-charcoal .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--dark-charcoal .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--dark-charcoal .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--dark-charcoal .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #333
}

.o-info-section.info-section-heading--dark-charcoal .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #333
}

.o-info-section.info-section-heading--dark-charcoal .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #333
}

.o-info-section.info-section-heading--dark-charcoal .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #333
}

.o-info-section.info-section-heading--magenta .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--magenta .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--magenta .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--magenta .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--magenta .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--magenta .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #aa0061
}

.o-info-section.info-section-heading--magenta .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #aa0061
}

.o-info-section.info-section-heading--magenta .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #aa0061
}

.o-info-section.info-section-heading--magenta .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #aa0061
}

.o-info-section.info-section-heading--purple .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--purple .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--purple .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--purple .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--purple .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--purple .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #470a68
}

.o-info-section.info-section-heading--purple .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #470a68
}

.o-info-section.info-section-heading--purple .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #470a68
}

.o-info-section.info-section-heading--purple .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #470a68
}

.o-info-section.info-section-heading--gold .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--gold .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--gold .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--gold .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--gold .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--gold .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #eeb33b
}

.o-info-section.info-section-heading--gold .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #eeb33b
}

.o-info-section.info-section-heading--gold .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #eeb33b
}

.o-info-section.info-section-heading--gold .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #eeb33b
}

.o-info-section.info-section-heading--bastille .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--bastille .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--bastille .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--bastille .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--bastille .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--bastille .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #2a2b33
}

.o-info-section.info-section-heading--bastille .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #2a2b33
}

.o-info-section.info-section-heading--bastille .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #2a2b33
}

.o-info-section.info-section-heading--bastille .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #2a2b33
}

.o-info-section.info-section-heading--silver .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--silver .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--silver .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--silver .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--silver .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--silver .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #ccc
}

.o-info-section.info-section-heading--silver .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #ccc
}

.o-info-section.info-section-heading--silver .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #ccc
}

.o-info-section.info-section-heading--silver .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #ccc
}

.o-info-section.info-section-heading--pantone-cool-grey .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--pantone-cool-grey .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--pantone-cool-grey .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--pantone-cool-grey .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--pantone-cool-grey .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--pantone-cool-grey .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #888b8d
}

.o-info-section.info-section-heading--pantone-cool-grey .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #888b8d
}

.o-info-section.info-section-heading--pantone-cool-grey .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #888b8d
}

.o-info-section.info-section-heading--pantone-cool-grey .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #888b8d
}

.o-info-section.info-section-heading--quotes-grey .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-heading--quotes-grey .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-heading--quotes-grey .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-heading--quotes-grey .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-heading--quotes-grey .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-heading--quotes-grey .o-info-section__container .o-info-section__column h6 {
    --info-section-heading-color: #88888d
}

.o-info-section.info-section-heading--quotes-grey .o-info-section__container .o-info-section__column .btn {
    --info-section-button-bg-color: #88888d
}

.o-info-section.info-section-heading--quotes-grey .o-info-section__container .o-info-section__column .btn:hover {
    --info-section-button-text-hover-color: #88888d
}

.o-info-section.info-section-heading--quotes-grey .o-info-section__container .o-info-section__column p a:hover {
    --info-section-heading-color: #88888d
}

.o-info-section.info-section--btn-hover-transparent .o-info-section__container .row .o-info-section__column .btn:hover {
    background-color: unset !important;
    box-shadow: none
}

.o-info-section.info-section-text--medium-blue .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #004f71
}

.o-info-section.info-section-text--yellow .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #ffd100
}

.o-info-section.info-section-text--white .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #fff
}

.o-info-section.info-section-text--dark-blue .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #002a3a
}

.o-info-section.info-section-text--light-blue .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #5bc2e7
}

.o-info-section.info-section-text--dark-yellow .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #ded548
}

.o-info-section.info-section-text--green .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #7ccc6c
}

.o-info-section.info-section-text--medium-green .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #00b140
}

.o-info-section.info-section-text--dark-green .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #00b140
}

.o-info-section.info-section-text--fuscia .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #aa0061
}

.o-info-section.info-section-text--dark-fuscia .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #470a68
}

.o-info-section.info-section-text--orange .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #e4002b
}

.o-info-section.info-section-text--dark-orange .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #eeb33b
}

.o-info-section.info-section-text--cyan .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #5bc2e7
}

.o-info-section.info-section-text--blue .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #004f71
}

.o-info-section.info-section-text--gray .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #63666a
}

.o-info-section.info-section-text--dark-gray .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #222731
}

.o-info-section.info-section-text--light-gray .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #d9d9d6
}

.o-info-section.info-section-text--fog-gray .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #d9dadb
}

.o-info-section.info-section-text--pearl-gray .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #d1d3d4
}

.o-info-section.info-section-text--medium-gray .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #939799
}

.o-info-section.info-section-text--dark-cyan .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #007589
}

.o-info-section.info-section-text--primary-blue .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #009cde
}

.o-info-section.info-section-text--mint .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #64ccc9
}

.o-info-section.info-section-text--charcoal .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #222731
}

.o-info-section.info-section-text--dark-charcoal .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #333
}

.o-info-section.info-section-text--magenta .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #aa0061
}

.o-info-section.info-section-text--purple .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #470a68
}

.o-info-section.info-section-text--red .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #e4002b
}

.o-info-section.info-section-text--gold .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #eeb33b
}

.o-info-section.info-section-text--bastille .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #2a2b33
}

.o-info-section.info-section-text--silver .o-info-section__container .row .o-info-section__column p {
    --info-section-text-color: #ccc
}

.o-info-section.info-section-heading-mobile--silver {
    --info-section-heading-mob-color: #ccc !important
}

.o-info-section.info-section-heading-mobile--white {
    --info-section-heading-mob-color: #fff !important
}

.o-info-section.info-section-heading-mobile--dark-blue {
    --info-section-heading-mob-color: #002a3a !important
}

.o-info-section.info-section-heading-mobile--light-blue {
    --info-section-heading-mob-color: #5bc2e7 !important
}

.o-info-section.info-section-heading-mobile--medium-blue {
    --info-section-heading-mob-color: #004f71 !important
}

.o-info-section.info-section-heading-mobile--yellow {
    --info-section-heading-mob-color: #ffd100 !important
}

.o-info-section.info-section-heading-mobile--dark-yellow {
    --info-section-heading-mob-color: #ded548 !important
}

.o-info-section.info-section-heading-mobile--green {
    --info-section-heading-mob-color: #7ccc6c !important
}

.o-info-section.info-section-heading-mobile--medium-green {
    --info-section-heading-mob-color: #00b140 !important
}

.o-info-section.info-section-heading-mobile--dark-green {
    --info-section-heading-mob-color: #00b140 !important
}

.o-info-section.info-section-heading-mobile--fuscia {
    --info-section-heading-mob-color: #aa0061 !important
}

.o-info-section.info-section-heading-mobile--dark-fuscia {
    --info-section-heading-mob-color: #470a68 !important
}

.o-info-section.info-section-heading-mobile--orange {
    --info-section-heading-mob-color: #e4002b !important
}

.o-info-section.info-section-heading-mobile--dark-orange {
    --info-section-heading-mob-color: #eeb33b !important
}

.o-info-section.info-section-heading-mobile--cyan {
    --info-section-heading-mob-color: #5bc2e7 !important
}

.o-info-section.info-section-heading-mobile--blue {
    --info-section-heading-mob-color: #004f71 !important
}

.o-info-section.info-section-heading-mobile--gray {
    --info-section-heading-mob-color: #63666a !important
}

.o-info-section.info-section-heading-mobile--dark-gray {
    --info-section-heading-mob-color: #222731 !important
}

.o-info-section.info-section-heading-mobile--light-gray {
    --info-section-heading-mob-color: #d9d9d6 !important
}

.o-info-section.info-section-heading-mobile--fog-gray {
    --info-section-heading-mob-color: #d9dadb !important
}

.o-info-section.info-section-heading-mobile--pearl-gray {
    --info-section-heading-mob-color: #d1d3d4 !important
}

.o-info-section.info-section-heading-mobile--medium-gray {
    --info-section-heading-mob-color: #939799 !important
}

.o-info-section.info-section-heading-mobile--button-gray {
    --info-section-heading-mob-color: #63666b !important
}

.o-info-section.info-section-heading-mobile--dark-cyan {
    --info-section-heading-mob-color: #007589 !important
}

.o-info-section.info-section-heading-mobile--primary-blue {
    --info-section-heading-mob-color: #009cde !important
}

.o-info-section.info-section-heading-mobile--mint {
    --info-section-heading-mob-color: #64ccc9 !important
}

.o-info-section.info-section-heading-mobile--charcoal {
    --info-section-heading-mob-color: #222731 !important
}

.o-info-section.info-section-heading-mobile--dark-charcoal {
    --info-section-heading-mob-color: #333 !important
}

.o-info-section.info-section-heading-mobile--magenta {
    --info-section-heading-mob-color: #aa0061 !important
}

.o-info-section.info-section-heading-mobile--red {
    --info-section-heading-mob-color: #e4002b !important
}

.o-info-section.info-section-heading-mobile--gold {
    --info-section-heading-mob-color: #eeb33b !important
}

.o-info-section.info-section-heading-mobile--bastille {
    --info-section-heading-mob-color: #2a2b33 !important
}

.o-info-section.info-section-heading-mobile--pantone-cool-grey {
    --info-section-heading-mob-color: #888b8d !important
}

.o-info-section.info-section-heading-mobile--quotes-grey {
    --info-section-heading-mob-color: #88888d !important
}

.o-info-section.info-section-heading-mobile--purple {
    --info-section-heading-mob-color: #470a68 !important
}

.o-info-section.info-section-text-mobile--yellow {
    --info-section-text-mob-color: #ffd100 !important
}

.o-info-section.info-section-text-mobile--medium-blue {
    --info-section-text-mob-color: #004f71 !important
}

.o-info-section.info-section-text-mobile--white {
    --info-section-text-mob-color: #fff !important
}

.o-info-section.info-section-text-mobile--dark-blue {
    --info-section-text-mob-color: #002a3a !important
}

.o-info-section.info-section-text-mobile--light-blue {
    --info-section-text-mob-color: #5bc2e7 !important
}

.o-info-section.info-section-text-mobile--dark-yellow {
    --info-section-text-mob-color: #ded548 !important
}

.o-info-section.info-section-text-mobile--green {
    --info-section-text-mob-color: #7ccc6c !important
}

.o-info-section.info-section-text-mobile--medium-green {
    --info-section-text-mob-color: #00b140 !important
}

.o-info-section.info-section-text-mobile--dark-green {
    --info-section-text-mob-color: #00b140 !important
}

.o-info-section.info-section-text-mobile--fuscia {
    --info-section-text-mob-color: #aa0061 !important
}

.o-info-section.info-section-text-mobile--dark-fuscia {
    --info-section-text-mob-color: #470a68 !important
}

.o-info-section.info-section-text-mobile--orange {
    --info-section-text-mob-color: #e4002b !important
}

.o-info-section.info-section-text-mobile--dark-orange {
    --info-section-text-mob-color: #eeb33b !important
}

.o-info-section.info-section-text-mobile--cyan {
    --info-section-text-mob-color: #5bc2e7 !important
}

.o-info-section.info-section-text-mobile--blue {
    --info-section-text-mob-color: #004f71 !important
}

.o-info-section.info-section-text-mobile--gray {
    --info-section-text-mob-color: #63666a !important
}

.o-info-section.info-section-text-mobile--dark-gray {
    --info-section-text-mob-color: #222731 !important
}

.o-info-section.info-section-text-mobile--light-gray {
    --info-section-text-mob-color: #d9d9d6 !important
}

.o-info-section.info-section-text-mobile--fog-gray {
    --info-section-text-mob-color: #d9dadb !important
}

.o-info-section.info-section-text-mobile--pearl-gray {
    --info-section-text-mob-color: #d1d3d4 !important
}

.o-info-section.info-section-text-mobile--medium-gray {
    --info-section-text-mob-color: #939799 !important
}

.o-info-section.info-section-text-mobile--dark-cyan {
    --info-section-text-mob-color: #007589 !important
}

.o-info-section.info-section-text-mobile--primary-blue {
    --info-section-text-mob-color: #009cde !important
}

.o-info-section.info-section-text-mobile--mint {
    --info-section-text-mob-color: #64ccc9 !important
}

.o-info-section.info-section-text-mobile--charcoal {
    --info-section-text-mob-color: #222731 !important
}

.o-info-section.info-section-text-mobile--dark-charcoal {
    --info-section-text-mob-color: #333 !important
}

.o-info-section.info-section-text-mobile--magenta {
    --info-section-text-mob-color: #aa0061 !important
}

.o-info-section.info-section-text-mobile--purple {
    --info-section-text-mob-color: #470a68 !important
}

.o-info-section.info-section-text-mobile--red {
    --info-section-text-mob-color: #e4002b !important
}

.o-info-section.info-section-text-mobile--gold {
    --info-section-text-mob-color: #eeb33b !important
}

.o-info-section.info-section-text-mobile--bastille p {
    --info-section-text-mob-color: #2a2b33 !important
}

.o-info-section.info-section-text-mobile--silver {
    --info-section-text-mob-color: #ccc !important
}

html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='en'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='zh'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='id'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='tr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='es'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='gr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='it'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='nl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='pl'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='pt'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='sk'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='cz'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='fr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='de'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='ch'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='ar'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='ua'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='ca'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='ja'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='kr'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='th'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 *,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='tw'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1,
html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h1 *,
html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2,
html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h2 *,
html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3,
html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h3 *,
html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4,
html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h4 *,
html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5,
html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h5 *,
html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6,
html[lang*='vi'] .o-info-section.info-section-title--font-bold .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='en'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='zh'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='id'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='tr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='es'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='gr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='it'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='nl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='pl'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='pt'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='sk'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='cz'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='fr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='de'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='ch'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='ar'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='ua'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='ca'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='kr'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='th'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 *,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h1 *,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h2 *,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h3 *,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h4 *,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h5 *,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6,
html[lang*='tw'] .o-info-section.info-section-title--font-medium .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='en'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='zh'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='id'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='tr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='es'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='gr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='it'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='nl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='pl'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='pt'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='sk'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='cz'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='fr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='de'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='ch'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='ar'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='ua'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='ca'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='kr'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='th'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 *,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h1 *,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h2 *,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h3 *,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h4 *,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h5 *,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6,
html[lang*='tw'] .o-info-section.info-section-title--font-black .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='en'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='zh'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='id'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='tr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='es'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='gr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='it'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='nl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='pl'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='pt'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='sk'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='cz'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='fr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='de'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='ch'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='ar'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='ua'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='ca'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='kr'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='th'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 *,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h1 *,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h2 *,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h3 *,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h4 *,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h5 *,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6,
html[lang*='tw'] .o-info-section.info-section-title--font-regular .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='en'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='zh'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='id'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='tr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='es'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='gr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='it'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='nl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='pl'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='pt'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='sk'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='cz'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='fr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='de'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='ch'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='ar'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='ua'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='ca'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='kr'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='th'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 *,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='tw'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1,
html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h1 *,
html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2,
html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h2 *,
html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3,
html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h3 *,
html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4,
html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h4 *,
html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5,
html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h5 *,
html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6,
html[lang*='vi'] .o-info-section.info-section-title--font-thin .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='en'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='zh'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='id'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='tr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='es'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='gr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='it'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='nl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='pl'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='pt'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='sk'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='cz'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='fr'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='de'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='ch'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='ar'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='ua'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 *,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='ca'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1,
html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h1 *,
html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2,
html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h2 *,
html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3,
html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h3 *,
html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4,
html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h4 *,
html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5,
html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h5 *,
html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6,
html[lang*='vi'] .o-info-section.info-section-title--font-italic .o-info-section__container .o-info-section__column h6 * {
    --font-family: 'Segoe UI Italic'
}

.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-arial .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Arial' !important
}

.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column h6 * {
    font-family: 'BrandonGrotesqueMedium' !important
}

.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-brandon-grotesque-black .o-info-section__container .o-info-section__column h6 * {
    font-family: 'BrandonGrotesqueBlack' !important
}

.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column h6 * {
    font-family: 'BrandonGrotesqueRegular' !important
}

.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column h6 * {
    font-family: 'BrandonGrotesqueBold' !important
}

.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-georgia .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Georgia' !important
}

.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-meiryo .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Meiryo' !important
}

.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-segoe-ui .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Segoe UI' !important
}

.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-times-new-roman .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Times New Roman' !important
}

.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-extazy-black .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Extazy Black' !important
}

.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-extazy-bold .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Extazy Bold' !important
}

.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-extazy-light .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Extazy Light' !important
}

.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-extazy-regular .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Extazy Regular' !important
}

.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-noto-sans-thin .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Noto Sans TC Thin' !important
}

.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-noto-sans-light .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Noto Sans TC Light' !important
}

.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-noto-sans-regular .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Noto Sans TC Regular' !important
}

.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-noto-sans-medium .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Noto Sans TC Medium' !important
}

.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-noto-sans-bold .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Noto Sans TC Bold' !important
}

.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-noto-sans-black .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Noto Sans TC Black' !important
}

.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-microsoft-ya-hei .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Microsoft YaHei' !important
}

.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-calibri .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Calibri' !important
}

.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-sans-serif .o-info-section__container .o-info-section__column h6 * {
    font-family: 'sans-serif' !important
}

.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-noto-sans-kr .o-info-section__container .o-info-section__column h6 * {
    font-family: '"Noto Sans KR", sans-serif' !important
}

.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Mercury Text G1 Roman' !important
}

.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-helvetica-neue .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Helvetica Neue' !important
}

.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Hiragino Mincho ProN', 'MS PGothic' !important
}

.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Malgun Gothic W35 Regular' !important
}

.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Noto Sans SC Regular' !important
}

.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-brandon-medium .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Brandon Medium' !important
}

.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-brandon-bold .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Brandon Bold' !important
}

.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-brandon-regular .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Brandon Regular' !important
}

.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h1,
.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h1 *,
.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h2,
.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h2 *,
.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h3,
.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h3 *,
.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h4,
.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h4 *,
.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h5,
.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h5 *,
.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h6,
.o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h6 * {
    font-family: 'Noto Sans Regular' !important
}

@media only screen and (min-width:992px) {

    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h1,
    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h1 *,
    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h2,
    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h2 *,
    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h3,
    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h3 *,
    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h4,
    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h4 *,
    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h5,
    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h5 *,
    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h6,
    .o-info-section.info-section-title--font-noto-sans-vi-regular .o-info-section__container .o-info-section__column h6 * {
        line-height: 1.2
    }
}

html[lang*='en'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='en'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ja'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='kr'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='th'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='th'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tw'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tw'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='vi'] .o-info-section.info-section-description--font-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='en'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='kr'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='th'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='th'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tw'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tw'] .o-info-section.info-section-description--font-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='en'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='kr'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='th'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='th'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tw'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tw'] .o-info-section.info-section-description--font-black .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='en'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='kr'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='th'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='th'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tw'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tw'] .o-info-section.info-section-description--font-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='en'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='kr'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='th'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='th'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tw'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tw'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='vi'] .o-info-section.info-section-description--font-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='en'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='zh'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='id'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='tr'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='es'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='gr'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='it'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='nl'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pl'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='pt'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='sk'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='cz'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='fr'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='de'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ch'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ar'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ua'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='ca'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *),
html[lang*='vi'] .o-info-section.info-section-description--font-italic .o-info-section__container .o-info-section__column .o-info-section__sub-title *:not(h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *, h5, h5 *, h6, h6 *) {
    --font-family: 'Segoe UI Italic'
}

.o-info-section.info-section-description--font-arial .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-arial .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Arial'
}

.o-info-section.info-section-description--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-brandon-grotesque-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'BrandonGrotesqueMedium'
}

.o-info-section.info-section-description--font-brandon-grotesque-black .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-brandon-grotesque-black .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'BrandonGrotesqueBlack'
}

.o-info-section.info-section-description--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-brandon-grotesque-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'BrandonGrotesqueRegular'
}

.o-info-section.info-section-description--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-brandon-grotesque-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'BrandonGrotesqueBold'
}

.o-info-section.info-section-description--font-georgia .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-georgia .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Georgia'
}

.o-info-section.info-section-description--font-meiryo .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-meiryo .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Meiryo'
}

.o-info-section.info-section-description--font-segoe-ui .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-segoe-ui .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Segoe UI'
}

.o-info-section.info-section-description--font-times-new-roman .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-times-new-roman .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Times New Roman'
}

.o-info-section.info-section-description--font-extazy-black .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-extazy-black .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Extazy Black'
}

.o-info-section.info-section-description--font-extazy-bold .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-extazy-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Extazy Bold'
}

.o-info-section.info-section-description--font-extazy-light .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-extazy-light .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Extazy Light'
}

.o-info-section.info-section-description--font-extazy-regular .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-extazy-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Extazy Regular'
}

.o-info-section.info-section-description--font-noto-sans-thin .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-noto-sans-thin .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Noto Sans TC Thin'
}

.o-info-section.info-section-description--font-noto-sans-light .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-noto-sans-light .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Noto Sans TC Light'
}

.o-info-section.info-section-description--font-noto-sans-regular .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-noto-sans-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Noto Sans TC Regular'
}

.o-info-section.info-section-description--font-noto-sans-medium .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-noto-sans-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Noto Sans TC Medium'
}

.o-info-section.info-section-description--font-noto-sans-bold .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-noto-sans-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Noto Sans TC Bold'
}

.o-info-section.info-section-description--font-noto-sans-black .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-noto-sans-black .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Noto Sans TC Black'
}

.o-info-section.info-section-description--font-microsoft-ya-hei .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-microsoft-ya-hei .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Microsoft YaHei'
}

.o-info-section.info-section-description--font-calibri .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-calibri .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Calibri'
}

.o-info-section.info-section-description--font-sans-serif .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-sans-serif .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'sans-serif'
}

.o-info-section.info-section-description--font-noto-sans-kr .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-noto-sans-kr .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: '"Noto Sans KR", sans-serif'
}

.o-info-section.info-section-description--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-mercury-text-g1-roman .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Mercury Text G1 Roman'
}

.o-info-section.info-section-description--font-helvetica-neue .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-helvetica-neue .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Helvetica Neue'
}

.o-info-section.info-section-description--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-hiragino-mincho-pron .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Hiragino Mincho ProN', 'MS PGothic'
}

.o-info-section.info-section-description--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-malgun-gothic-w35-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Malgun Gothic W35 Regular'
}

.o-info-section.info-section-description--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-noto-sans-sc-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Noto Sans SC Regular'
}

.o-info-section.info-section-description--font-brandon-medium .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-brandon-medium .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Brandon Medium'
}

.o-info-section.info-section-description--font-brandon-bold .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-brandon-bold .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Brandon Bold'
}

.o-info-section.info-section-description--font-brandon-regular .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-brandon-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Brandon Regular'
}

.o-info-section.info-section-description--font-noto-serif-vi-regular .o-info-section__container .o-info-section__column .o-info-section__title *,
.o-info-section.info-section-description--font-noto-serif-vi-regular .o-info-section__container .o-info-section__column .o-info-section__sub-title * {
    font-family: 'Noto Serif Regular'
}

.o-info-section.info-section-bg-color-dark-blue {
    --info-section-bg-color: #002a3a
}

.o-info-section.info-section-bg-color-light-blue {
    --info-section-bg-color: #5bc2e7
}

.o-info-section.info-section-bg-color-medium-blue {
    --info-section-bg-color: #004f71
}

.o-info-section.info-section-bg-color-yellow {
    --info-section-bg-color: #ffd100
}

.o-info-section.info-section-bg-color-dark-yellow {
    --info-section-bg-color: #ded548
}

.o-info-section.info-section-bg-color-green {
    --info-section-bg-color: #7ccc6c
}

.o-info-section.info-section-bg-color-medium-green {
    --info-section-bg-color: #00b140
}

.o-info-section.info-section-bg-color-dark-green {
    --info-section-bg-color: #00b140
}

.o-info-section.info-section-bg-color-fuscia {
    --info-section-bg-color: #aa0061
}

.o-info-section.info-section-bg-color-dark-fuscia {
    --info-section-bg-color: #470a68
}

.o-info-section.info-section-bg-color-orange {
    --info-section-bg-color: #e4002b
}

.o-info-section.info-section-bg-color-dark-orange {
    --info-section-bg-color: #eeb33b
}

.o-info-section.info-section-bg-color-cyan {
    --info-section-bg-color: #5bc2e7
}

.o-info-section.info-section-bg-color-gray {
    --info-section-bg-color: #63666a
}

.o-info-section.info-section-bg-color-dark-gray {
    --info-section-bg-color: #222731
}

.o-info-section.info-section-bg-color-light-gray {
    --info-section-bg-color: #d9d9d6
}

.o-info-section.info-section-bg-color-fog-gray {
    --info-section-bg-color: #d9dadb
}

.o-info-section.info-section-bg-color-pearl-gray {
    --info-section-bg-color: #d1d3d4
}

.o-info-section.info-section-bg-color-medium-gray {
    --info-section-bg-color: #939799
}

.o-info-section.info-section-bg-color-dark-cyan {
    --info-section-bg-color: #007589
}

.o-info-section.info-section-bg-color-primary-blue {
    --info-section-bg-color: #009cde
}

.o-info-section.info-section-bg-color-mint {
    --info-section-bg-color: #64ccc9
}

.o-info-section.info-section-bg-color-charcoal {
    --info-section-bg-color: #222731
}

.o-info-section.info-section-bg-color-magenta {
    --info-section-bg-color: #aa0061
}

.o-info-section.info-section-bg-color-purple {
    --info-section-bg-color: #470a68
}

.o-info-section.info-section-bg-color-gold {
    --info-section-bg-color: #eeb33b
}

.o-info-section.info-section-bg-color-bastille {
    --info-section-bg-color: #2a2b33
}

.o-info-section.info-section-bg-color-silver {
    --info-section-bg-color: #ccc
}

@media only screen and (min-width:768px) {
    .o-info-section.info-section-content-separator .o-info-section__column:nth-child(2) {
        border-right: 1px solid #63666a
    }
}

@media only screen and (max-width:767.98px) {
    .o-info-section.info-section-content-separator .o-info-section__column:nth-child(2) {
        border-bottom: 1px solid #63666a;
        margin: 0 0 1.5rem
    }
}

@media only screen and (min-width:768px) {
    .o-info-section.info-section-small-separator .o-info-section__column:nth-child(2) {
        padding-right: 2.2rem
    }
}

@media only screen and (min-width:768px) {
    .o-info-section.info-section-small-separator .o-info-section__column:nth-child(3) {
        border-left: 1px solid #b7b7b7;
        height: max-content
    }

    .o-info-section.info-section-small-separator .o-info-section__column:nth-child(3) .o-info-section__sub-title {
        padding-top: 0;
        padding-bottom: 0
    }

    .o-info-section.info-section-small-separator .o-info-section__column:nth-child(3) .o-info-section__sub-title p {
        margin-bottom: 0
    }
}

@media only screen and (min-width:768px) {
    .o-info-section.info-section-col-8-4 .o-info-section__column:nth-child(2) {
        flex: 0 0 65%;
        max-width: 65%
    }

    .o-info-section.info-section-col-8-4 .o-info-section__column:nth-child(3) {
        flex: 0 0 35%;
        max-width: 35%;
        padding-left: 2.5rem
    }
}

@media only screen and (min-width:768px) {
    .o-info-section.info-section-col-4-8 .o-info-section__column:nth-child(2) {
        flex: 0 0 35%;
        max-width: 35%
    }

    .o-info-section.info-section-col-4-8 .o-info-section__column:nth-child(3) {
        flex: 0 0 65%;
        max-width: 65%
    }
}

@media only screen and (min-width:768px) {
    .o-info-section.info-section-col-7-5 .o-info-section__column:nth-child(2) {
        flex: 0 0 60%;
        max-width: 60%
    }

    .o-info-section.info-section-col-7-5 .o-info-section__column:nth-child(3) {
        flex: 0 0 40%;
        max-width: 40%
    }
}

@media only screen and (max-width:767.98px) {
    .o-info-section.info-mob-btn {
        padding-bottom: 0
    }

    .o-info-section.info-mob-btn .o-info-section__column .btn {
        color: #fff !important
    }

    .o-info-section.info-mob-btn .o-info-section__column {
        margin-bottom: 23px
    }
}

.o-info-section.o-info-section-title-pb-1-8 .o-info-section__heading .a-title {
    --info-section-heading-padding-bottom: 1.8rem
}

.o-info-section.o-info-section-height--auto {
    --info-section-height: auto
}

@media only screen and (min-width:768px) {
    .o-info-section.o-info-section-height--auto {
        padding-bottom: 3.75rem
    }
}

.o-info-section.o-info-section-height--auto .o-info-section__container {
    --info-section-container-height: auto
}

@media only screen and (min-width:768px) {
    .o-info-section.o-info-section--extra-height {
        height: calc(var(--info-section-height) + 14rem)
    }

    .o-info-section.o-info-section--extra-height .o-info-section__container {
        height: calc(var(--info-section-container-height) + 12rem)
    }
}

.o-info-section.o-info-left-content-full-width .o-info-section__column:nth-child(2) {
    flex: 0 0 100% !important;
    max-width: 100% !important
}

.o-info-section.o-info-left-content-full-width .o-info-section__column:nth-child(3) {
    display: none !important
}

@media only screen and (min-width:768px) {
    .o-info-section.o-info-section--row-reverse .o-info-section__container .row {
        flex-direction: row-reverse
    }
}

.o-info-section.o-info-section--row-reverse.o-info-section.info-section-content-separator .o-info-section__column:nth-child(2) {
    border-right: 0 !important;
    border-left: 1px solid var(--info-separator-border-color) !important
}

@media only screen and (max-width:767.98px) {

    .o-info-section.mob-text-align--center .o-info-section__column .o-info-section__title,
    .o-info-section.mob-text-align--center .o-info-section__column .o-info-section__sub-title {
        text-align: center
    }
}

.o-info-section.info-section--link-hover-match-text .o-info-section__column a:hover {
    color: inherit !important
}

@media only screen and (max-width:767.98px) {
    .o-info-section .o-info-section--curve-container .a-bg-img {
        display: block;
        position: relative
    }
}

@media only screen and (max-width:767.98px) {
    .o-info-section .o-info-section--curve-container .a-bg-img .cmp-image img {
        position: relative
    }
}

@media only screen and (min-width:992px) {
    .o-info-section.information-section-variant {
        padding-left: 0;
        padding-right: 0
    }
}

@media only screen and (max-width:767.98px) {
    .o-info-section.information-section-variant .a-bg-img {
        display: none
    }
}

@media only screen and (min-width:992px) {
    .o-info-section.information-section-variant .o-info-section__container.container {
        max-width: 75%;
        padding: 0
    }
}

@media only screen and (min-width:1200px) {
    .o-info-section.information-header-text-45px .o-info-section__container .o-info-section__title h2 {
        font-size: 2.813rem;
        font-family: 'BrandonGrotesqueBold' !important
    }
}

.o-info-section.information-header-text-45px .o-info-section__container .o-info-section__title p {
    line-height: 1.25rem
}

.productsection.o-product-section--story-panel {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important
}

@media only screen and (min-width:992px) {
    .productsection.o-product-section--story-panel {
        background-color: #d9d9d6
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .productsection.o-product-section--story-panel .o-product-section__row {
        align-items: center
    }

    .productsection.o-product-section--story-panel .o-product-section__row .o-product-section__title {
        margin-top: .5rem
    }
}

@media only screen and (min-width:768px) {

    .productsection.o-product-section--story-panel .o-product-section__row .o-product-section--large .cmp-image__image,
    .productsection.o-product-section--story-panel .o-product-section__row .o-product-section--large img {
        height: 158px !important
    }
}

.productsection.o-product-section--story-panel.image-dark-hover {
    display: inline
}

@media only screen and (max-width:767.98px) {
    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container {
        background-color: #fff;
        position: relative
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__image-wrapper {
        background-color: #fff;
        margin-top: 0;
        padding-right: 0;
        flex: 0 0 100% !important;
        max-width: 100% !important
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 1rem 1rem 0
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title {
        padding-bottom: 0 !important
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title a {
        color: #000
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title a:hover {
        color: #002a3a;
        text-decoration: none
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__custom-list {
        padding: 0
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper {
        display: block !important;
        position: relative !important;
        padding-top: 0 !important;
        left: 0 !important
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper .product-section-button1 .btn {
        padding-left: 0;
        background-color: #2a2b33 !important;
        width: 40%
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper .product-section-button1 .btn span {
        margin-left: 20%
    }
}

@media only screen and (min-width:768px) {
    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container {
        background-color: #d9d9d6
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__content .o-product-section__title {
        padding-bottom: 0
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__content .o-product-section__title a {
        color: #000
    }

    .productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__content .o-product-section__title a:hover {
        color: #002a3a;
        text-decoration: none
    }
}

.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container:hover .o-product-section__row {
    background-color: #fff
}

.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container:hover .o-product-section__image-wrapper .o-product-section__image-column .product-section-image .cmp-image {
    opacity: 0
}

.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container:hover .o-product-section__content .o-product-section__button-wrapper {
    padding-top: 20px !important;
    display: block !important
}

.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container:hover .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container:hover .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container:hover .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container:hover .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container:hover .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container:hover .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container:hover .o-product-section__content .o-product-section__title p,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container:hover .o-product-section__content .o-product-section__title a {
    color: #002a3a !important
}

.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__image-wrapper {
    margin-top: 0;
    padding-right: 0;
    flex: 0 0 65%;
    max-width: 65%;
    padding-left: 0
}

.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__image-wrapper .o-product-section__image-column {
    background-color: #2a2b33
}

.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content {
    position: unset;
    flex: 0 0 35%;
    max-width: 35%
}

.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 1;
    display: none
}

.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper .product-section-button1 .btn {
    background-color: transparent;
    box-shadow: none;
    font-family: 'BrandonGrotesqueBold' !important;
    font-weight: 500;
    color: #009cde
}

.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title a {
    font-family: 'BrandonGrotesqueBold' !important
}

.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h1,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h2,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h3,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h4,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h5,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h6,
.productsection.o-product-section--story-panel.image-dark-hover .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para p {
    font-family: 'Georgia'
}

.productsection.o-product-section--story-panel.image-dark-hover-var-2 .o-product-section__row .o-product-section__content {
    --product-section-content-padding: 25px !important
}

@media only screen and (max-width:767.98px) {
    .productsection.o-product-section--story-panel.image-dark-hover-var-2 .o-product-section__row .o-product-section__content .o-product-section__button-wrapper {
        margin-bottom: 1rem
    }

    .productsection.o-product-section--story-panel.image-dark-hover-var-2 .o-product-section__row .o-product-section__content .o-product-section__button-wrapper .product-section-button1 .btn {
        color: #06e3e6 !important;
        padding: 5px 3px !important;
        width: 80% !important
    }

    .productsection.o-product-section--story-panel.image-dark-hover-var-2 .o-product-section__row .o-product-section__content .o-product-section__button-wrapper .product-section-button1 .btn span {
        margin-left: 0 !important
    }
}

.productsection.o-product-section--story-panel.image-dark-hover-var-2 .o-product-section__container .o-product-section__content .o-product-section__title * {
    color: #333 !important
}

.productsection.o-product-section--story-panel.image-dark-hover-var-2 .o-product-section__container {
    border-bottom: 1px solid #fff;
    cursor: pointer
}

.productsection.o-product-section--story-panel.image-dark-hover-var-2 .o-product-section__container:hover .o-product-section__row .o-product-section__content .o-product-section__title * {
    color: var(--product-section-story-panel-text-color) !important
}

@media only screen and (max-width:767.98px) {
    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container {
        background-color: #fff;
        position: relative
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__image-wrapper {
        background-color: #fff;
        margin-top: 0;
        padding-right: 0;
        flex: 0 0 100% !important;
        max-width: 100% !important
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 1rem 1rem 0
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title {
        padding-bottom: 0 !important
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title a {
        color: #333 !important
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title a:hover {
        color: #004f71 !important;
        text-decoration: none
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para p {
        color: #333
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__custom-list {
        padding: 0
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper {
        display: none !important;
        position: relative !important;
        padding-top: 0 !important;
        left: 0 !important
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper .product-section-button1 .btn {
        display: none;
        padding-left: 0;
        background-color: #2a2b33 !important;
        width: 40%
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper .product-section-button1 .btn span {
        margin-left: 20%
    }
}

@media only screen and (min-width:768px) {
    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container {
        background-color: #d9d9d6
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__content .o-product-section__title {
        padding-bottom: 0
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__content .o-product-section__title a {
        color: #000
    }

    .productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__content .o-product-section__title a:hover {
        color: #002a3a;
        text-decoration: none
    }
}

.productsection.o-product-section--story-panel.image-transparent .o-product-section__container:hover .o-product-section__image-wrapper .o-product-section__image-column .product-section-image .cmp-image {
    opacity: .5
}

.productsection.o-product-section--story-panel.image-transparent .o-product-section__container:hover .o-product-section__content .o-product-section__button-wrapper {
    padding-top: 20px !important;
    display: block !important
}

.productsection.o-product-section--story-panel.image-transparent .o-product-section__container:hover .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container:hover .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container:hover .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container:hover .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container:hover .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container:hover .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container:hover .o-product-section__content .o-product-section__title p,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container:hover .o-product-section__content .o-product-section__title a {
    color: #002a3a !important
}

.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__image-wrapper {
    margin-top: 0;
    padding-right: 0;
    flex: 0 0 65%;
    max-width: 65%;
    padding-left: 0
}

.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__image-wrapper .o-product-section__image-column {
    background-color: #2a2b33
}

.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content {
    padding-left: 15px;
    position: unset;
    flex: 0 0 35%;
    max-width: 35%;
    cursor: pointer
}

.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 1;
    display: none
}

.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper .product-section-button1 .btn {
    background-color: transparent;
    box-shadow: none;
    font-family: 'BrandonGrotesqueBold' !important;
    font-weight: 500;
    color: #009cde
}

.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title a {
    font-family: 'BrandonGrotesqueBold' !important;
    color: #333 !important
}

.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h1,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h2,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h3,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h4,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h5,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h6,
.productsection.o-product-section--story-panel.image-transparent .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para p {
    font-family: 'Georgia'
}

@media only screen and (max-width:767.98px) {
    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container {
        background-color: #fff;
        position: relative
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__image-wrapper {
        background-color: #fff;
        margin-top: 0;
        padding-right: 0;
        flex: 0 0 100% !important;
        max-width: 100% !important
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 1rem 1rem 0
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title {
        padding-bottom: 0 !important
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title a {
        color: #333 !important
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title a:hover {
        color: #004f71 !important;
        text-decoration: none
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para p {
        color: #333
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__custom-list {
        padding: 0
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper {
        display: none !important;
        position: relative !important;
        padding-top: 0 !important;
        left: 0 !important
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper .product-section-button1 .btn {
        display: none;
        padding-left: 0;
        background-color: #2a2b33 !important;
        width: 40%
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper .product-section-button1 .btn span {
        margin-left: 20%
    }
}

@media only screen and (min-width:768px) {
    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container {
        background-color: #d9d9d6
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__content .o-product-section__title {
        padding-bottom: 0
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__content .o-product-section__title a {
        color: #000
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__content .o-product-section__title a:hover {
        color: #002a3a;
        text-decoration: none
    }
}

.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container:hover .o-product-section__image-wrapper .o-product-section__image-column .product-section-image .cmp-image {
    opacity: .5
}

.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container:hover .o-product-section__content .o-product-section__button-wrapper {
    padding-top: 20px !important;
    display: block !important
}

.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container:hover .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container:hover .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container:hover .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container:hover .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container:hover .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container:hover .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container:hover .o-product-section__content .o-product-section__title p,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container:hover .o-product-section__content .o-product-section__title a {
    color: #002a3a !important
}

.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__image-wrapper {
    margin-top: 0;
    padding-right: 0;
    flex: 0 0 65%;
    max-width: 65%;
    padding-left: 0
}

.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__image-wrapper .o-product-section__image-column {
    background-color: #2a2b33
}

.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content {
    padding-left: 15px;
    position: unset;
    flex: 0 0 35%;
    max-width: 35%;
    cursor: pointer
}

.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 1;
    display: none
}

.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__button-wrapper .product-section-button1 .btn {
    background-color: transparent;
    box-shadow: none;
    font-family: 'BrandonGrotesqueBold' !important;
    font-weight: 500;
    color: #009cde
}

.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title a {
    font-family: 'BrandonGrotesqueBold' !important;
    color: #333 !important
}

.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h1,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h2,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h3,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h4,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h5,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para h6,
.productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para p {
    font-family: 'Georgia'
}

@media only screen and (min-width:768px) {
    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__content .o-product-section__button-wrapper {
        padding-top: 20px !important;
        display: block !important
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__content .o-product-section__button-wrapper .button .btn * {
        color: #fff
    }

    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container:hover .o-product-section__content .o-product-section__button-wrapper .button .btn * {
        color: #009cde
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .productsection.o-product-section--story-panel.image-transparent--var2 .o-product-section__container .o-product-section__content .o-product-section__button-wrapper {
        padding-top: 40px !important
    }
}

.productsection.image-fill-width .o-product-section--large .cmp-image__image,
.productsection.image-fill-width .o-product-section--large img {
    width: 100% !important;
    height: auto !important
}

.productsection.image-height--158 .o-product-section--large .cmp-image__image,
.productsection.image-height--158 .o-product-section--large img {
    width: 100% !important
}

@media only screen and (min-width:768px) {

    .productsection.image-height--158 .o-product-section--large .cmp-image__image,
    .productsection.image-height--158 .o-product-section--large img {
        height: 158px !important
    }
}

.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #fff
}

.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #ffd100
}

.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #7ccc6c
}

.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #aa0061
}

.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #e4002b
}

.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #5bc2e7
}

.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #004f71
}

.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #63666a
}

.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #d9d9d6
}

.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #222731
}

.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #64ccc9
}

.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title p,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h1 *,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h2 *,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h3 *,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h4 *,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h5 *,
.productsection.o-product-section-text-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__title h6 * {
    --product-section-story-panel-text-color: #ccc
}

.productsection.o-product-section-para-color--white .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #fff
}

.productsection.o-product-section-para-color--yellow .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #ffd100
}

.productsection.o-product-section-para-color--green .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #7ccc6c
}

.productsection.o-product-section-para-color--fuscia .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #aa0061
}

.productsection.o-product-section-para-color--orange .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #e4002b
}

.productsection.o-product-section-para-color--cyan .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #5bc2e7
}

.productsection.o-product-section-para-color--blue .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #004f71
}

.productsection.o-product-section-para-color--gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #63666a
}

.productsection.o-product-section-para-color--light-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #d9d9d6
}

.productsection.o-product-section-para-color--dark-gray .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #222731
}

.productsection.o-product-section-para-color--mint .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #64ccc9
}

.productsection.o-product-section-para-color--silver .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #ccc
}

.productsection.o-product-section-para-color--dark-charcoal .o-product-section__container .o-product-section__row .o-product-section__content .o-product-section__para {
    --product-section-para-color: #333
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-margin-left .container {
        max-width: 100%;
        padding: 0 10% 0 12.5% !important
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-margin-left .container .m-hero__content {
        margin-left: 0
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-margin-left .container .m-hero__content .m-hero__body .header-text {
        font-size: 2rem !important;
        line-height: 2.2rem;
        width: 90%
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-margin-left .container .m-hero__content .m-hero__body .header-text-investor-resources {
        font-size: 2.813rem !important
    }
}

.m-hero.m-hero-margin-left .container .m-hero__content .m-hero__body .font-regular-40px {
    font-family: 'Extazy Regular';
    font-size: 2.5rem !important;
    line-height: 3.125rem;
    text-transform: none
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-margin-left .container .m-hero__content .m-hero__body .width-80-percent {
        width: 80%
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-margin-left .container .m-hero__content .font-size-45px {
        font-size: 2.813rem
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-margin-left .container .m-hero__content .font-size-30px {
        font-size: 1.875rem !important;
        line-height: 1.2
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-margin-left .container .m-hero__content .fontsize-26px {
        font-size: 1.625rem !important;
        line-height: 1.2
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-margin-left .container .m-hero__content .fontsize-24px {
        font-size: 1.5rem !important;
        line-height: 1.2
    }
}

.m-hero.m-hero-margin-left .container .m-hero__content .font-family-halvetica {
    font-family: 'Helvetica Neue';
    text-decoration: none
}

@media only screen and (min-width:768px) {
    .m-hero.m-hero-margin-left .container .m-hero__content .color-white {
        color: #fff
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-margin-left .container .m-hero__content .margin-top-100px {
        margin-top: 100px
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-margin-left .container .m-hero__content .hide-mobile {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .m-hero.m-hero-margin-left .container .m-hero__content .hide-tab {
        display: none
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-csi-hero-banner-styles .m-hero__content {
        padding-top: 0 !important;
        padding-bottom: 65px !important
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-csi-hero-banner-styles .m-hero__content {
        top: 26% !important
    }
}

@media only screen and (min-width:768px) {
    .m-hero:not(.m-hero-column-banner) .row .m-hero__extras .button:not(:first-child) {
        margin-left: 1.5rem
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero:not(.m-hero-column-banner) .row .m-hero__extras .button:not(:first-child) {
        margin-top: .75rem
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero {
        height: auto;
        padding-bottom: 0
    }

    .m-hero .row.no-gutters {
        position: relative
    }

    .m-hero .row.no-gutters .m-hero__content {
        top: 25%;
        position: absolute
    }

    .m-hero.m-hero--short .row.no-gutters .m-hero__content {
        top: 10%
    }

    .m-hero.m-hero--medium .row.no-gutters .m-hero__content {
        top: 5%
    }
}

.m-hero.m-hero-content-full-width .m-hero__content {
    --hero-content-default-width: 100%
}

.m-hero.m-hero-content-full-width .m-hero__content .hero__header.h1-hero {
    font-size: 3.75rem;
    line-height: 1
}

.m-hero.m-hero-banner-hover-zoom:hover .m-hero__media::after,
.m-hero.m-hero-banner-hover-zoom:hover .cmp-image__image {
    transform: scale(1.25);
    transition: all .3s ease
}

.m-hero.m-hero-banner-hover-zoom-small:hover .m-hero__media::after,
.m-hero.m-hero-banner-hover-zoom-small:hover .cmp-image__image {
    transform: scale(1.1);
    transition: all .3s ease
}

.m-hero.m-hero--content-margin-remove .m-hero__content {
    --hero-content-default-space: 0
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-mob-pb-0 {
        --hero-padding-bottom: 0
    }
}

@media only screen and (max-width:575.98px) {
    .m-hero.m-hero-copy-on-image .m-hero__content {
        position: absolute;
        width: 95%
    }
}

@media only screen and (max-width:575.98px) {
    .m-hero.m-hero-discription-font-size-small .container .m-hero__content .m-hero__body p {
        font-size: .75em !important
    }
}

.m-hero.m-hero-text-color--white .m-hero__content,
.m-hero.m-hero-text-color--white .m-hero__content h1,
.m-hero.m-hero-text-color--white .m-hero__content h2,
.m-hero.m-hero-text-color--white .m-hero__content h3,
.m-hero.m-hero-text-color--white .m-hero__content h4,
.m-hero.m-hero-text-color--white .m-hero__content h5,
.m-hero.m-hero-text-color--white .m-hero__content h6,
.m-hero.m-hero-text-color--white .m-hero__content p {
    --hero-banner-card-text-color: #fff
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--white .m-hero__content,
    .m-hero.m-hero-text-color--white .m-hero__content h1,
    .m-hero.m-hero-text-color--white .m-hero__content h2,
    .m-hero.m-hero-text-color--white .m-hero__content h3,
    .m-hero.m-hero-text-color--white .m-hero__content h4,
    .m-hero.m-hero-text-color--white .m-hero__content h5,
    .m-hero.m-hero-text-color--white .m-hero__content h6,
    .m-hero.m-hero-text-color--white .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #fff
    }
}

.m-hero.m-hero-text-color--white .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #000
}

.m-hero.m-hero-text-color--yellow .m-hero__content,
.m-hero.m-hero-text-color--yellow .m-hero__content h1,
.m-hero.m-hero-text-color--yellow .m-hero__content h2,
.m-hero.m-hero-text-color--yellow .m-hero__content h3,
.m-hero.m-hero-text-color--yellow .m-hero__content h4,
.m-hero.m-hero-text-color--yellow .m-hero__content h5,
.m-hero.m-hero-text-color--yellow .m-hero__content h6,
.m-hero.m-hero-text-color--yellow .m-hero__content p {
    --hero-banner-card-text-color: #ffd100
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--yellow .m-hero__content,
    .m-hero.m-hero-text-color--yellow .m-hero__content h1,
    .m-hero.m-hero-text-color--yellow .m-hero__content h2,
    .m-hero.m-hero-text-color--yellow .m-hero__content h3,
    .m-hero.m-hero-text-color--yellow .m-hero__content h4,
    .m-hero.m-hero-text-color--yellow .m-hero__content h5,
    .m-hero.m-hero-text-color--yellow .m-hero__content h6,
    .m-hero.m-hero-text-color--yellow .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #ffd100
    }
}

.m-hero.m-hero-text-color--yellow .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #ffd100
}

.m-hero.m-hero-text-color--dark-yellow .m-hero__content,
.m-hero.m-hero-text-color--dark-yellow .m-hero__content h1,
.m-hero.m-hero-text-color--dark-yellow .m-hero__content h2,
.m-hero.m-hero-text-color--dark-yellow .m-hero__content h3,
.m-hero.m-hero-text-color--dark-yellow .m-hero__content h4,
.m-hero.m-hero-text-color--dark-yellow .m-hero__content h5,
.m-hero.m-hero-text-color--dark-yellow .m-hero__content h6,
.m-hero.m-hero-text-color--dark-yellow .m-hero__content p {
    --hero-banner-card-text-color: #ded548
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--dark-yellow .m-hero__content,
    .m-hero.m-hero-text-color--dark-yellow .m-hero__content h1,
    .m-hero.m-hero-text-color--dark-yellow .m-hero__content h2,
    .m-hero.m-hero-text-color--dark-yellow .m-hero__content h3,
    .m-hero.m-hero-text-color--dark-yellow .m-hero__content h4,
    .m-hero.m-hero-text-color--dark-yellow .m-hero__content h5,
    .m-hero.m-hero-text-color--dark-yellow .m-hero__content h6,
    .m-hero.m-hero-text-color--dark-yellow .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #ded548
    }
}

.m-hero.m-hero-text-color--dark-yellow .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #ded548
}

.m-hero.m-hero-text-color--green .m-hero__content,
.m-hero.m-hero-text-color--green .m-hero__content h1,
.m-hero.m-hero-text-color--green .m-hero__content h2,
.m-hero.m-hero-text-color--green .m-hero__content h3,
.m-hero.m-hero-text-color--green .m-hero__content h4,
.m-hero.m-hero-text-color--green .m-hero__content h5,
.m-hero.m-hero-text-color--green .m-hero__content h6,
.m-hero.m-hero-text-color--green .m-hero__content p {
    --hero-banner-card-text-color: #7ccc6c
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--green .m-hero__content,
    .m-hero.m-hero-text-color--green .m-hero__content h1,
    .m-hero.m-hero-text-color--green .m-hero__content h2,
    .m-hero.m-hero-text-color--green .m-hero__content h3,
    .m-hero.m-hero-text-color--green .m-hero__content h4,
    .m-hero.m-hero-text-color--green .m-hero__content h5,
    .m-hero.m-hero-text-color--green .m-hero__content h6,
    .m-hero.m-hero-text-color--green .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #7ccc6c
    }
}

.m-hero.m-hero-text-color--green .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #7ccc6c
}

.m-hero.m-hero-text-color--dark-green .m-hero__content,
.m-hero.m-hero-text-color--dark-green .m-hero__content h1,
.m-hero.m-hero-text-color--dark-green .m-hero__content h2,
.m-hero.m-hero-text-color--dark-green .m-hero__content h3,
.m-hero.m-hero-text-color--dark-green .m-hero__content h4,
.m-hero.m-hero-text-color--dark-green .m-hero__content h5,
.m-hero.m-hero-text-color--dark-green .m-hero__content h6,
.m-hero.m-hero-text-color--dark-green .m-hero__content p {
    --hero-banner-card-text-color: #00b140
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--dark-green .m-hero__content,
    .m-hero.m-hero-text-color--dark-green .m-hero__content h1,
    .m-hero.m-hero-text-color--dark-green .m-hero__content h2,
    .m-hero.m-hero-text-color--dark-green .m-hero__content h3,
    .m-hero.m-hero-text-color--dark-green .m-hero__content h4,
    .m-hero.m-hero-text-color--dark-green .m-hero__content h5,
    .m-hero.m-hero-text-color--dark-green .m-hero__content h6,
    .m-hero.m-hero-text-color--dark-green .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #00b140
    }
}

.m-hero.m-hero-text-color--dark-green .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #00b140
}

.m-hero.m-hero-text-color--fuscia .m-hero__content,
.m-hero.m-hero-text-color--fuscia .m-hero__content h1,
.m-hero.m-hero-text-color--fuscia .m-hero__content h2,
.m-hero.m-hero-text-color--fuscia .m-hero__content h3,
.m-hero.m-hero-text-color--fuscia .m-hero__content h4,
.m-hero.m-hero-text-color--fuscia .m-hero__content h5,
.m-hero.m-hero-text-color--fuscia .m-hero__content h6,
.m-hero.m-hero-text-color--fuscia .m-hero__content p {
    --hero-banner-card-text-color: #aa0061
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--fuscia .m-hero__content,
    .m-hero.m-hero-text-color--fuscia .m-hero__content h1,
    .m-hero.m-hero-text-color--fuscia .m-hero__content h2,
    .m-hero.m-hero-text-color--fuscia .m-hero__content h3,
    .m-hero.m-hero-text-color--fuscia .m-hero__content h4,
    .m-hero.m-hero-text-color--fuscia .m-hero__content h5,
    .m-hero.m-hero-text-color--fuscia .m-hero__content h6,
    .m-hero.m-hero-text-color--fuscia .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #aa0061
    }
}

.m-hero.m-hero-text-color--fuscia .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #aa0061
}

.m-hero.m-hero-text-color--dark-fuscia .m-hero__content,
.m-hero.m-hero-text-color--dark-fuscia .m-hero__content h1,
.m-hero.m-hero-text-color--dark-fuscia .m-hero__content h2,
.m-hero.m-hero-text-color--dark-fuscia .m-hero__content h3,
.m-hero.m-hero-text-color--dark-fuscia .m-hero__content h4,
.m-hero.m-hero-text-color--dark-fuscia .m-hero__content h5,
.m-hero.m-hero-text-color--dark-fuscia .m-hero__content h6,
.m-hero.m-hero-text-color--dark-fuscia .m-hero__content p {
    --hero-banner-card-text-color: #470a68
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--dark-fuscia .m-hero__content,
    .m-hero.m-hero-text-color--dark-fuscia .m-hero__content h1,
    .m-hero.m-hero-text-color--dark-fuscia .m-hero__content h2,
    .m-hero.m-hero-text-color--dark-fuscia .m-hero__content h3,
    .m-hero.m-hero-text-color--dark-fuscia .m-hero__content h4,
    .m-hero.m-hero-text-color--dark-fuscia .m-hero__content h5,
    .m-hero.m-hero-text-color--dark-fuscia .m-hero__content h6,
    .m-hero.m-hero-text-color--dark-fuscia .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #470a68
    }
}

.m-hero.m-hero-text-color--dark-fuscia .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #470a68
}

.m-hero.m-hero-text-color--orange .m-hero__content,
.m-hero.m-hero-text-color--orange .m-hero__content h1,
.m-hero.m-hero-text-color--orange .m-hero__content h2,
.m-hero.m-hero-text-color--orange .m-hero__content h3,
.m-hero.m-hero-text-color--orange .m-hero__content h4,
.m-hero.m-hero-text-color--orange .m-hero__content h5,
.m-hero.m-hero-text-color--orange .m-hero__content h6,
.m-hero.m-hero-text-color--orange .m-hero__content p {
    --hero-banner-card-text-color: #e4002b
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--orange .m-hero__content,
    .m-hero.m-hero-text-color--orange .m-hero__content h1,
    .m-hero.m-hero-text-color--orange .m-hero__content h2,
    .m-hero.m-hero-text-color--orange .m-hero__content h3,
    .m-hero.m-hero-text-color--orange .m-hero__content h4,
    .m-hero.m-hero-text-color--orange .m-hero__content h5,
    .m-hero.m-hero-text-color--orange .m-hero__content h6,
    .m-hero.m-hero-text-color--orange .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #e4002b
    }
}

.m-hero.m-hero-text-color--orange .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #e4002b
}

.m-hero.m-hero-text-color--medium-orange .m-hero__content,
.m-hero.m-hero-text-color--medium-orange .m-hero__content h1,
.m-hero.m-hero-text-color--medium-orange .m-hero__content h2,
.m-hero.m-hero-text-color--medium-orange .m-hero__content h3,
.m-hero.m-hero-text-color--medium-orange .m-hero__content h4,
.m-hero.m-hero-text-color--medium-orange .m-hero__content h5,
.m-hero.m-hero-text-color--medium-orange .m-hero__content h6,
.m-hero.m-hero-text-color--medium-orange .m-hero__content p {
    --hero-banner-card-text-color: #ff6900
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--medium-orange .m-hero__content,
    .m-hero.m-hero-text-color--medium-orange .m-hero__content h1,
    .m-hero.m-hero-text-color--medium-orange .m-hero__content h2,
    .m-hero.m-hero-text-color--medium-orange .m-hero__content h3,
    .m-hero.m-hero-text-color--medium-orange .m-hero__content h4,
    .m-hero.m-hero-text-color--medium-orange .m-hero__content h5,
    .m-hero.m-hero-text-color--medium-orange .m-hero__content h6,
    .m-hero.m-hero-text-color--medium-orange .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #ff6900
    }
}

.m-hero.m-hero-text-color--medium-orange .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #ff6900
}

.m-hero.m-hero-text-color--dark-orange .m-hero__content,
.m-hero.m-hero-text-color--dark-orange .m-hero__content h1,
.m-hero.m-hero-text-color--dark-orange .m-hero__content h2,
.m-hero.m-hero-text-color--dark-orange .m-hero__content h3,
.m-hero.m-hero-text-color--dark-orange .m-hero__content h4,
.m-hero.m-hero-text-color--dark-orange .m-hero__content h5,
.m-hero.m-hero-text-color--dark-orange .m-hero__content h6,
.m-hero.m-hero-text-color--dark-orange .m-hero__content p {
    --hero-banner-card-text-color: #eeb33b
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--dark-orange .m-hero__content,
    .m-hero.m-hero-text-color--dark-orange .m-hero__content h1,
    .m-hero.m-hero-text-color--dark-orange .m-hero__content h2,
    .m-hero.m-hero-text-color--dark-orange .m-hero__content h3,
    .m-hero.m-hero-text-color--dark-orange .m-hero__content h4,
    .m-hero.m-hero-text-color--dark-orange .m-hero__content h5,
    .m-hero.m-hero-text-color--dark-orange .m-hero__content h6,
    .m-hero.m-hero-text-color--dark-orange .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #eeb33b
    }
}

.m-hero.m-hero-text-color--dark-orange .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #eeb33b
}

.m-hero.m-hero-text-color--cyan .m-hero__content,
.m-hero.m-hero-text-color--cyan .m-hero__content h1,
.m-hero.m-hero-text-color--cyan .m-hero__content h2,
.m-hero.m-hero-text-color--cyan .m-hero__content h3,
.m-hero.m-hero-text-color--cyan .m-hero__content h4,
.m-hero.m-hero-text-color--cyan .m-hero__content h5,
.m-hero.m-hero-text-color--cyan .m-hero__content h6,
.m-hero.m-hero-text-color--cyan .m-hero__content p {
    --hero-banner-card-text-color: #5bc2e7
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--cyan .m-hero__content,
    .m-hero.m-hero-text-color--cyan .m-hero__content h1,
    .m-hero.m-hero-text-color--cyan .m-hero__content h2,
    .m-hero.m-hero-text-color--cyan .m-hero__content h3,
    .m-hero.m-hero-text-color--cyan .m-hero__content h4,
    .m-hero.m-hero-text-color--cyan .m-hero__content h5,
    .m-hero.m-hero-text-color--cyan .m-hero__content h6,
    .m-hero.m-hero-text-color--cyan .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #5bc2e7
    }
}

.m-hero.m-hero-text-color--cyan .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #5bc2e7
}

.m-hero.m-hero-text-color--blue .m-hero__content,
.m-hero.m-hero-text-color--blue .m-hero__content h1,
.m-hero.m-hero-text-color--blue .m-hero__content h2,
.m-hero.m-hero-text-color--blue .m-hero__content h3,
.m-hero.m-hero-text-color--blue .m-hero__content h4,
.m-hero.m-hero-text-color--blue .m-hero__content h5,
.m-hero.m-hero-text-color--blue .m-hero__content h6,
.m-hero.m-hero-text-color--blue .m-hero__content p {
    --hero-banner-card-text-color: #004f71
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--blue .m-hero__content,
    .m-hero.m-hero-text-color--blue .m-hero__content h1,
    .m-hero.m-hero-text-color--blue .m-hero__content h2,
    .m-hero.m-hero-text-color--blue .m-hero__content h3,
    .m-hero.m-hero-text-color--blue .m-hero__content h4,
    .m-hero.m-hero-text-color--blue .m-hero__content h5,
    .m-hero.m-hero-text-color--blue .m-hero__content h6,
    .m-hero.m-hero-text-color--blue .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #004f71
    }
}

.m-hero.m-hero-text-color--blue .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #004f71
}

.m-hero.m-hero-text-color--gray .m-hero__content,
.m-hero.m-hero-text-color--gray .m-hero__content h1,
.m-hero.m-hero-text-color--gray .m-hero__content h2,
.m-hero.m-hero-text-color--gray .m-hero__content h3,
.m-hero.m-hero-text-color--gray .m-hero__content h4,
.m-hero.m-hero-text-color--gray .m-hero__content h5,
.m-hero.m-hero-text-color--gray .m-hero__content h6,
.m-hero.m-hero-text-color--gray .m-hero__content p {
    --hero-banner-card-text-color: #63666a
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--gray .m-hero__content,
    .m-hero.m-hero-text-color--gray .m-hero__content h1,
    .m-hero.m-hero-text-color--gray .m-hero__content h2,
    .m-hero.m-hero-text-color--gray .m-hero__content h3,
    .m-hero.m-hero-text-color--gray .m-hero__content h4,
    .m-hero.m-hero-text-color--gray .m-hero__content h5,
    .m-hero.m-hero-text-color--gray .m-hero__content h6,
    .m-hero.m-hero-text-color--gray .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #63666a
    }
}

.m-hero.m-hero-text-color--gray .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #63666a
}

.m-hero.m-hero-text-color--dark-gray .m-hero__content,
.m-hero.m-hero-text-color--dark-gray .m-hero__content h1,
.m-hero.m-hero-text-color--dark-gray .m-hero__content h2,
.m-hero.m-hero-text-color--dark-gray .m-hero__content h3,
.m-hero.m-hero-text-color--dark-gray .m-hero__content h4,
.m-hero.m-hero-text-color--dark-gray .m-hero__content h5,
.m-hero.m-hero-text-color--dark-gray .m-hero__content h6,
.m-hero.m-hero-text-color--dark-gray .m-hero__content p {
    --hero-banner-card-text-color: #222731
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--dark-gray .m-hero__content,
    .m-hero.m-hero-text-color--dark-gray .m-hero__content h1,
    .m-hero.m-hero-text-color--dark-gray .m-hero__content h2,
    .m-hero.m-hero-text-color--dark-gray .m-hero__content h3,
    .m-hero.m-hero-text-color--dark-gray .m-hero__content h4,
    .m-hero.m-hero-text-color--dark-gray .m-hero__content h5,
    .m-hero.m-hero-text-color--dark-gray .m-hero__content h6,
    .m-hero.m-hero-text-color--dark-gray .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #222731
    }
}

.m-hero.m-hero-text-color--dark-gray .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #222731
}

.m-hero.m-hero-text-color--light-gray .m-hero__content,
.m-hero.m-hero-text-color--light-gray .m-hero__content h1,
.m-hero.m-hero-text-color--light-gray .m-hero__content h2,
.m-hero.m-hero-text-color--light-gray .m-hero__content h3,
.m-hero.m-hero-text-color--light-gray .m-hero__content h4,
.m-hero.m-hero-text-color--light-gray .m-hero__content h5,
.m-hero.m-hero-text-color--light-gray .m-hero__content h6,
.m-hero.m-hero-text-color--light-gray .m-hero__content p {
    --hero-banner-card-text-color: #d9d9d6
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--light-gray .m-hero__content,
    .m-hero.m-hero-text-color--light-gray .m-hero__content h1,
    .m-hero.m-hero-text-color--light-gray .m-hero__content h2,
    .m-hero.m-hero-text-color--light-gray .m-hero__content h3,
    .m-hero.m-hero-text-color--light-gray .m-hero__content h4,
    .m-hero.m-hero-text-color--light-gray .m-hero__content h5,
    .m-hero.m-hero-text-color--light-gray .m-hero__content h6,
    .m-hero.m-hero-text-color--light-gray .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #d9d9d6
    }
}

.m-hero.m-hero-text-color--light-gray .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #d9d9d6
}

.m-hero.m-hero-text-color--medium-gray .m-hero__content,
.m-hero.m-hero-text-color--medium-gray .m-hero__content h1,
.m-hero.m-hero-text-color--medium-gray .m-hero__content h2,
.m-hero.m-hero-text-color--medium-gray .m-hero__content h3,
.m-hero.m-hero-text-color--medium-gray .m-hero__content h4,
.m-hero.m-hero-text-color--medium-gray .m-hero__content h5,
.m-hero.m-hero-text-color--medium-gray .m-hero__content h6,
.m-hero.m-hero-text-color--medium-gray .m-hero__content p {
    --hero-banner-card-text-color: #939799
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--medium-gray .m-hero__content,
    .m-hero.m-hero-text-color--medium-gray .m-hero__content h1,
    .m-hero.m-hero-text-color--medium-gray .m-hero__content h2,
    .m-hero.m-hero-text-color--medium-gray .m-hero__content h3,
    .m-hero.m-hero-text-color--medium-gray .m-hero__content h4,
    .m-hero.m-hero-text-color--medium-gray .m-hero__content h5,
    .m-hero.m-hero-text-color--medium-gray .m-hero__content h6,
    .m-hero.m-hero-text-color--medium-gray .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #939799
    }
}

.m-hero.m-hero-text-color--medium-gray .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #939799
}

.m-hero.m-hero-text-color--button-gray .m-hero__content,
.m-hero.m-hero-text-color--button-gray .m-hero__content h1,
.m-hero.m-hero-text-color--button-gray .m-hero__content h2,
.m-hero.m-hero-text-color--button-gray .m-hero__content h3,
.m-hero.m-hero-text-color--button-gray .m-hero__content h4,
.m-hero.m-hero-text-color--button-gray .m-hero__content h5,
.m-hero.m-hero-text-color--button-gray .m-hero__content h6,
.m-hero.m-hero-text-color--button-gray .m-hero__content p {
    --hero-banner-card-text-color: #63666b
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--button-gray .m-hero__content,
    .m-hero.m-hero-text-color--button-gray .m-hero__content h1,
    .m-hero.m-hero-text-color--button-gray .m-hero__content h2,
    .m-hero.m-hero-text-color--button-gray .m-hero__content h3,
    .m-hero.m-hero-text-color--button-gray .m-hero__content h4,
    .m-hero.m-hero-text-color--button-gray .m-hero__content h5,
    .m-hero.m-hero-text-color--button-gray .m-hero__content h6,
    .m-hero.m-hero-text-color--button-gray .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #63666b
    }
}

.m-hero.m-hero-text-color--button-gray .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #63666b
}

.m-hero.m-hero-text-color--dark-cyan .m-hero__content,
.m-hero.m-hero-text-color--dark-cyan .m-hero__content h1,
.m-hero.m-hero-text-color--dark-cyan .m-hero__content h2,
.m-hero.m-hero-text-color--dark-cyan .m-hero__content h3,
.m-hero.m-hero-text-color--dark-cyan .m-hero__content h4,
.m-hero.m-hero-text-color--dark-cyan .m-hero__content h5,
.m-hero.m-hero-text-color--dark-cyan .m-hero__content h6,
.m-hero.m-hero-text-color--dark-cyan .m-hero__content p {
    --hero-banner-card-text-color: #007589
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--dark-cyan .m-hero__content,
    .m-hero.m-hero-text-color--dark-cyan .m-hero__content h1,
    .m-hero.m-hero-text-color--dark-cyan .m-hero__content h2,
    .m-hero.m-hero-text-color--dark-cyan .m-hero__content h3,
    .m-hero.m-hero-text-color--dark-cyan .m-hero__content h4,
    .m-hero.m-hero-text-color--dark-cyan .m-hero__content h5,
    .m-hero.m-hero-text-color--dark-cyan .m-hero__content h6,
    .m-hero.m-hero-text-color--dark-cyan .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #007589
    }
}

.m-hero.m-hero-text-color--dark-cyan .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #007589
}

.m-hero.m-hero-text-color--primary-blue .m-hero__content,
.m-hero.m-hero-text-color--primary-blue .m-hero__content h1,
.m-hero.m-hero-text-color--primary-blue .m-hero__content h2,
.m-hero.m-hero-text-color--primary-blue .m-hero__content h3,
.m-hero.m-hero-text-color--primary-blue .m-hero__content h4,
.m-hero.m-hero-text-color--primary-blue .m-hero__content h5,
.m-hero.m-hero-text-color--primary-blue .m-hero__content h6,
.m-hero.m-hero-text-color--primary-blue .m-hero__content p {
    --hero-banner-card-text-color: #009cde
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--primary-blue .m-hero__content,
    .m-hero.m-hero-text-color--primary-blue .m-hero__content h1,
    .m-hero.m-hero-text-color--primary-blue .m-hero__content h2,
    .m-hero.m-hero-text-color--primary-blue .m-hero__content h3,
    .m-hero.m-hero-text-color--primary-blue .m-hero__content h4,
    .m-hero.m-hero-text-color--primary-blue .m-hero__content h5,
    .m-hero.m-hero-text-color--primary-blue .m-hero__content h6,
    .m-hero.m-hero-text-color--primary-blue .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #009cde
    }
}

.m-hero.m-hero-text-color--primary-blue .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #009cde
}

.m-hero.m-hero-text-color--dark-blue .m-hero__content,
.m-hero.m-hero-text-color--dark-blue .m-hero__content h1,
.m-hero.m-hero-text-color--dark-blue .m-hero__content h2,
.m-hero.m-hero-text-color--dark-blue .m-hero__content h3,
.m-hero.m-hero-text-color--dark-blue .m-hero__content h4,
.m-hero.m-hero-text-color--dark-blue .m-hero__content h5,
.m-hero.m-hero-text-color--dark-blue .m-hero__content h6,
.m-hero.m-hero-text-color--dark-blue .m-hero__content p {
    --hero-banner-card-text-color: #002a3a
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--dark-blue .m-hero__content,
    .m-hero.m-hero-text-color--dark-blue .m-hero__content h1,
    .m-hero.m-hero-text-color--dark-blue .m-hero__content h2,
    .m-hero.m-hero-text-color--dark-blue .m-hero__content h3,
    .m-hero.m-hero-text-color--dark-blue .m-hero__content h4,
    .m-hero.m-hero-text-color--dark-blue .m-hero__content h5,
    .m-hero.m-hero-text-color--dark-blue .m-hero__content h6,
    .m-hero.m-hero-text-color--dark-blue .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #002a3a
    }
}

.m-hero.m-hero-text-color--dark-blue .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #002a3a
}

.m-hero.m-hero-text-color--button-hover-blue .m-hero__content,
.m-hero.m-hero-text-color--button-hover-blue .m-hero__content h1,
.m-hero.m-hero-text-color--button-hover-blue .m-hero__content h2,
.m-hero.m-hero-text-color--button-hover-blue .m-hero__content h3,
.m-hero.m-hero-text-color--button-hover-blue .m-hero__content h4,
.m-hero.m-hero-text-color--button-hover-blue .m-hero__content h5,
.m-hero.m-hero-text-color--button-hover-blue .m-hero__content h6,
.m-hero.m-hero-text-color--button-hover-blue .m-hero__content p {
    --hero-banner-card-text-color: #019cde
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--button-hover-blue .m-hero__content,
    .m-hero.m-hero-text-color--button-hover-blue .m-hero__content h1,
    .m-hero.m-hero-text-color--button-hover-blue .m-hero__content h2,
    .m-hero.m-hero-text-color--button-hover-blue .m-hero__content h3,
    .m-hero.m-hero-text-color--button-hover-blue .m-hero__content h4,
    .m-hero.m-hero-text-color--button-hover-blue .m-hero__content h5,
    .m-hero.m-hero-text-color--button-hover-blue .m-hero__content h6,
    .m-hero.m-hero-text-color--button-hover-blue .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #019cde
    }
}

.m-hero.m-hero-text-color--button-hover-blue .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #019cde
}

.m-hero.m-hero-text-color--mint .m-hero__content,
.m-hero.m-hero-text-color--mint .m-hero__content h1,
.m-hero.m-hero-text-color--mint .m-hero__content h2,
.m-hero.m-hero-text-color--mint .m-hero__content h3,
.m-hero.m-hero-text-color--mint .m-hero__content h4,
.m-hero.m-hero-text-color--mint .m-hero__content h5,
.m-hero.m-hero-text-color--mint .m-hero__content h6,
.m-hero.m-hero-text-color--mint .m-hero__content p {
    --hero-banner-card-text-color: #64ccc9
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--mint .m-hero__content,
    .m-hero.m-hero-text-color--mint .m-hero__content h1,
    .m-hero.m-hero-text-color--mint .m-hero__content h2,
    .m-hero.m-hero-text-color--mint .m-hero__content h3,
    .m-hero.m-hero-text-color--mint .m-hero__content h4,
    .m-hero.m-hero-text-color--mint .m-hero__content h5,
    .m-hero.m-hero-text-color--mint .m-hero__content h6,
    .m-hero.m-hero-text-color--mint .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #64ccc9
    }
}

.m-hero.m-hero-text-color--mint .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #64ccc9
}

.m-hero.m-hero-text-color--black .m-hero__content,
.m-hero.m-hero-text-color--black .m-hero__content h1,
.m-hero.m-hero-text-color--black .m-hero__content h2,
.m-hero.m-hero-text-color--black .m-hero__content h3,
.m-hero.m-hero-text-color--black .m-hero__content h4,
.m-hero.m-hero-text-color--black .m-hero__content h5,
.m-hero.m-hero-text-color--black .m-hero__content h6,
.m-hero.m-hero-text-color--black .m-hero__content p {
    --hero-banner-card-text-color: #000
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--black .m-hero__content,
    .m-hero.m-hero-text-color--black .m-hero__content h1,
    .m-hero.m-hero-text-color--black .m-hero__content h2,
    .m-hero.m-hero-text-color--black .m-hero__content h3,
    .m-hero.m-hero-text-color--black .m-hero__content h4,
    .m-hero.m-hero-text-color--black .m-hero__content h5,
    .m-hero.m-hero-text-color--black .m-hero__content h6,
    .m-hero.m-hero-text-color--black .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #000
    }
}

.m-hero.m-hero-text-color--black .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #000
}

.m-hero.m-hero-text-color--gold .m-hero__content,
.m-hero.m-hero-text-color--gold .m-hero__content h1,
.m-hero.m-hero-text-color--gold .m-hero__content h2,
.m-hero.m-hero-text-color--gold .m-hero__content h3,
.m-hero.m-hero-text-color--gold .m-hero__content h4,
.m-hero.m-hero-text-color--gold .m-hero__content h5,
.m-hero.m-hero-text-color--gold .m-hero__content h6,
.m-hero.m-hero-text-color--gold .m-hero__content p {
    --hero-banner-card-text-color: #eeb33b
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--gold .m-hero__content,
    .m-hero.m-hero-text-color--gold .m-hero__content h1,
    .m-hero.m-hero-text-color--gold .m-hero__content h2,
    .m-hero.m-hero-text-color--gold .m-hero__content h3,
    .m-hero.m-hero-text-color--gold .m-hero__content h4,
    .m-hero.m-hero-text-color--gold .m-hero__content h5,
    .m-hero.m-hero-text-color--gold .m-hero__content h6,
    .m-hero.m-hero-text-color--gold .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #eeb33b
    }
}

.m-hero.m-hero-text-color--gold .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #eeb33b
}

.m-hero.m-hero-text-color--bastille .m-hero__content,
.m-hero.m-hero-text-color--bastille .m-hero__content h1,
.m-hero.m-hero-text-color--bastille .m-hero__content h2,
.m-hero.m-hero-text-color--bastille .m-hero__content h3,
.m-hero.m-hero-text-color--bastille .m-hero__content h4,
.m-hero.m-hero-text-color--bastille .m-hero__content h5,
.m-hero.m-hero-text-color--bastille .m-hero__content h6,
.m-hero.m-hero-text-color--bastille .m-hero__content p {
    --hero-banner-card-text-color: #2a2b33
}

@media only screen and (max-width:991.98px) {

    .m-hero.m-hero-text-color--bastille .m-hero__content,
    .m-hero.m-hero-text-color--bastille .m-hero__content h1,
    .m-hero.m-hero-text-color--bastille .m-hero__content h2,
    .m-hero.m-hero-text-color--bastille .m-hero__content h3,
    .m-hero.m-hero-text-color--bastille .m-hero__content h4,
    .m-hero.m-hero-text-color--bastille .m-hero__content h5,
    .m-hero.m-hero-text-color--bastille .m-hero__content h6,
    .m-hero.m-hero-text-color--bastille .m-hero__content p {
        --hero-banner-card-md-sm-text-color: #2a2b33
    }
}

.m-hero.m-hero-text-color--bastille .m-hero__content .m-hero__extras .btn {
    --hero-banner-card-button-bg-color: #2a2b33
}

.m-hero.m-hero-bg-color--yellow {
    --hero-banner-bg-color: #ffd100
}

.m-hero.m-hero-bg-color--dark-yellow {
    --hero-banner-bg-color: #ded548
}

.m-hero.m-hero-bg-color--green {
    --hero-banner-bg-color: #7ccc6c
}

.m-hero.m-hero-bg-color--dark-green {
    --hero-banner-bg-color: #00b140
}

.m-hero.m-hero-bg-color--fuscia {
    --hero-banner-bg-color: #aa0061
}

.m-hero.m-hero-bg-color--dark-fuscia {
    --hero-banner-bg-color: #470a68
}

.m-hero.m-hero-bg-color--orange {
    --hero-banner-bg-color: #e4002b
}

.m-hero.m-hero-bg-color--dark-orange {
    --hero-banner-bg-color: #eeb33b
}

.m-hero.m-hero-bg-color--cyan {
    --hero-banner-bg-color: #5bc2e7
}

.m-hero.m-hero-bg-color--blue {
    --hero-banner-bg-color: #004f71
}

.m-hero.m-hero-bg-color--gray {
    --hero-banner-bg-color: #63666a
}

.m-hero.m-hero-bg-color--dark-gray {
    --hero-banner-bg-color: #222731
}

.m-hero.m-hero-bg-color--light-gray {
    --hero-banner-bg-color: #d9d9d6
}

.m-hero.m-hero-bg-color--medium-gray {
    --hero-banner-bg-color: #939799
}

.m-hero.m-hero-bg-color--button-gray {
    --hero-banner-bg-color: #63666b
}

.m-hero.m-hero-bg-color--dark-cyan {
    --hero-banner-bg-color: #007589
}

.m-hero.m-hero-bg-color--primary-blue {
    --hero-banner-bg-color: #009cde
}

.m-hero.m-hero-bg-color--dark-blue {
    --hero-banner-bg-color: #002a3a
}

.m-hero.m-hero-bg-color--button-hover-blue {
    --hero-banner-bg-color: #019cde
}

.m-hero.m-hero-bg-color--mint {
    --hero-banner-bg-color: #64ccc9
}

.m-hero.m-hero-bg-color--black {
    --hero-banner-bg-color: #000
}

.m-hero.enable-mob-bg-color {
    background-color: var(--hero-banner-bg-color)
}

.m-hero.mb-7 {
    margin-bottom: 7px !important
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero--column-banner-content--bottom .m-hero__content {
        position: absolute;
        bottom: 144px
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-mob-content-abs {
        height: 400px
    }

    .m-hero.m-hero-mob-content-abs .row.no-gutters {
        position: relative
    }

    .m-hero.m-hero-mob-content-abs .row.no-gutters .m-hero__content {
        bottom: 5%;
        position: absolute
    }

    .m-hero.m-hero-mob-content-abs .row.no-gutters .m-hero__media {
        height: 400px
    }
}

@media only screen and (max-width:991.98px) {
    .m-hero.m-hero-style--hero-panel-short {
        height: auto;
        padding-bottom: 0;
        min-height: auto
    }

    .m-hero.m-hero-style--hero-panel-short .row.no-gutters {
        position: relative
    }

    .m-hero.m-hero-style--hero-panel-short .row.no-gutters .m-hero__content {
        position: absolute
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-style--hero-panel-short .row.no-gutters .m-hero__content {
        margin-left: 0;
        padding-top: 85px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-style--hero-panel-short .row.no-gutters .m-hero__content {
        bottom: 30% !important
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-style--hero-panel-short .row.no-gutters .m-hero__content {
        bottom: 25% !important
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-style--hero-panel-short .row.no-gutters .m-hero__image .cmp-image__image {
        object-fit: inherit
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-body-font-weight-normal .m-hero__body * {
        font-weight: normal
    }
}

.m-hero.m-hero-column-banner {
    --hero-desktop-short-height: 298px;
    --hero-desktop-short-media-height: 298px;
    --hero-desktop-tall-height: 603px;
    --hero-desktop-tall-media-height: 603px;
    --hero-tablet-short-height: 157px;
    --hero-tablet-short-media-height: 157px;
    --hero-tablet-tall-height: 321px;
    --hero-tablet-tall-media-height: 321px;
    --hero-mobile-short-height: 142px;
    --hero-mobile-short-media-height: 142px;
    --hero-mobile-tall-height: 142px;
    --hero-mobile-tall-media-height: 142px;
    padding-bottom: 0
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-column-banner {
        --hero-padding-bottom: 0;
        --hero-padding-top: 0
    }
}

@media only screen and (min-width:768px) {
    .m-hero.m-hero-column-banner {
        position: relative
    }
}

.m-hero.m-hero-column-banner .container {
    padding-left: 0;
    padding-right: 0
}

.m-hero.m-hero-column-banner .m-hero__content {
    word-break: break-word;
    --hero-content-default-width: 90%;
    --hero-mobile-short-content-top-space: 0
}

@media only screen and (min-width:768px) {
    .m-hero.m-hero-column-banner .m-hero__content {
        --hero-content-default-space: 30px;
        position: static
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-column-banner .m-hero__content {
        position: absolute;
        padding-left: 10px;
        width: 100%;
        bottom: 0
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-column-banner .m-hero__content {
        padding-left: 15px;
        padding-right: 15px
    }
}

.m-hero.m-hero-column-banner .m-hero__content .m-hero__header.h1-hero {
    font-family: 'BrandonGrotesqueBlack';
    font-size: 2.125rem;
    line-height: 2.55rem
}

html[lang*="cn"] .m-hero.m-hero-column-banner .m-hero__content .m-hero__header.h1-hero,
html[lang*="ja"] .m-hero.m-hero-column-banner .m-hero__content .m-hero__header.h1-hero {
    font-family: 'Noto Sans SC Regular'
}

html[lang*="vi"] .m-hero.m-hero-column-banner .m-hero__content .m-hero__header.h1-hero {
    font-family: 'Noto Sans Regular'
}

@media only screen and (max-width:991.98px) {
    .m-hero.m-hero-column-banner .m-hero__content .m-hero__header.h1-hero {
        font-size: 1.25rem;
        line-height: 1.563rem
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-column-banner .m-hero__content .m-hero__header.h1-hero {
        font-size: .875rem;
        line-height: 1rem
    }
}

.m-hero.m-hero-column-banner .m-hero__content .m-hero__extras {
    flex-wrap: wrap
}

@media only screen and (min-width:768px) {
    .m-hero.m-hero-column-banner .m-hero__content .m-hero__extras {
        bottom: 5%;
        position: absolute
    }
}

.m-hero.m-hero-column-banner .m-hero__content .m-hero__extras .button {
    margin-bottom: .625rem;
    margin-right: .625rem;
    --hero-extras-between-spacing: 0
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-column-banner .m-hero__content .m-hero__extras .button {
        margin-bottom: 5px
    }
}

.m-hero.m-hero-column-banner .m-hero__content .m-hero__extras .button .btn {
    --button-padding: 5px 10px;
    --button-padding-md: 5px 10px
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-column-banner .m-hero__content .m-hero__extras .button .btn {
        padding: 0 12px
    }
}

.m-hero.m-hero-column-banner .m-hero__content .m-hero__extras .button .btn span {
    font-family: 'BrandonGrotesqueBold';
    font-size: .75rem;
    font-weight: bold;
    letter-spacing: .0625rem
}

html[lang*="cn"] .m-hero.m-hero-column-banner .m-hero__content .m-hero__extras .button .btn span,
html[lang*="vi"] .m-hero.m-hero-column-banner .m-hero__content .m-hero__extras .button .btn span,
html[lang*="ja"] .m-hero.m-hero-column-banner .m-hero__content .m-hero__extras .button .btn span {
    font-family: 'Brandon Bold'
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-column-banner .m-hero__content .m-hero__media {
        margin-left: 0;
        min-width: 100%
    }
}

.m-hero.m-hero-column-banner.m-hero--text-vertical-align-top .row .m-hero__content {
    padding-top: 0
}

.m-hero.m-hero-column-banner.m-hero--short {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.m-hero.m-hero-column-banner.m-hero--short:first-child {
    margin-bottom: 7px !important
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-column-banner.m-hero--short .m-hero__content {
        top: 0 !important
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-column-banner.m-hero--short .m-hero__content {
        background-color: #fff
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-column-banner.m-hero--tall {
        height: var(--hero-tablet-tall-height)
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-column-banner.m-hero--content-overlay .row {
        position: relative
    }
}

.m-hero.m-hero-column-banner.m-hero--content-overlay .row:before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 35%;
    background-color: #000;
    opacity: .4
}

.m-hero.m-hero-column-banner.m-hero--content-overlay .row .m-hero__content {
    position: absolute;
    bottom: 17%;
    padding: 20px 10px 30px 30px;
    margin: 0;
    top: 66%;
    width: 100%
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-column-banner.m-hero--content-overlay .row .m-hero__content {
        top: 60%
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-column-banner.m-hero--content-overlay .row .m-hero__content {
        top: unset;
        bottom: 0;
        padding: 0 15px
    }

    .m-hero.m-hero-column-banner.m-hero--content-overlay .row .m-hero__content * {
        color: #fff
    }
}

@media only screen and (min-width:768px) {
    .m-hero.m-hero-column-banner.m-hero-investment-variation:first-child .container {
        padding-left: 25px !important
    }

    .m-hero.m-hero-column-banner.m-hero-investment-variation:first-child .container .m-hero__content .m-hero__header.h1-hero {
        position: absolute;
        width: 50%;
        top: 50%;
        transform: translateY(-50%)
    }

    .m-hero.m-hero-column-banner.m-hero-investment-variation:last-child {
        margin-top: 9px !important
    }

    .m-hero.m-hero-column-banner.m-hero-investment-variation:last-child .m-hero__content {
        --hero-content-default-space: 25px
    }

    .m-hero.m-hero-column-banner.m-hero-investment-variation:last-child .m-hero__content .m-hero__title {
        margin-bottom: 0
    }

    .m-hero.m-hero-column-banner.m-hero-investment-variation:last-child .m-hero__content .m-hero__header {
        padding-top: 25px
    }

    .m-hero.m-hero-column-banner.m-hero-investment-variation:last-child .m-hero__content .m-hero__header>div {
        text-align: left !important
    }

    .m-hero.m-hero-column-banner.m-hero-investment-variation .container .m-hero__content .m-hero__extras {
        bottom: 25px;
        left: 25px
    }

    .m-hero.m-hero-column-banner.m-hero-investment-variation .container .m-hero__content .m-hero__extras .button {
        margin-bottom: 0
    }
}

.m-hero.hide-image .row.no-gutters .m-hero__media .d-lg-block,
.m-hero.hide-image .row.no-gutters .m-hero__media .d-xl-block,
.m-hero.hide-image .row.no-gutters .m-hero__media .d-sm-block,
.m-hero.hide-image .row.no-gutters .m-hero__media .d-md-block {
    display: none !important
}

.m-hero.m-hero-style--sub-section-panel {
    height: 100%
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-style--sub-section-panel {
        --hero-padding-bottom: 1rem
    }
}

.m-hero.m-hero-style--sub-section-panel .row.no-gutters {
    position: relative
}

@media only screen and (max-width:991.98px) {
    .m-hero.m-hero-style--sub-section-panel .row.no-gutters {
        padding-top: 50px
    }
}

.m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content {
    --hero-content-default-space: 0
}

@media only screen and (max-width:991.98px) {
    .m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content {
        padding-top: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content {
        position: relative
    }
}

@media only screen and (min-width:768px) {
    .m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content {
        word-wrap: break-word
    }
}

.m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content .m-hero__title {
    color: #191b22;
    padding-top: 15px;
    text-transform: uppercase
}

.m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content .m-hero__title::before {
    content: "";
    font-family: "Abbott-icon", serif !important;
    font-size: 2.75rem;
    font-weight: normal;
    height: 48px;
    position: absolute;
    top: -48px;
    width: 48px
}

.m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content .m-hero__header {
    font-family: 'BrandonGrotesqueBold';
    font-weight: lighter;
    line-height: 1.1;
    margin-bottom: 0;
    margin-top: 20px;
    text-transform: uppercase
}

html[lang*="cn"] .m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content .m-hero__header,
html[lang*="vi"] .m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content .m-hero__header,
html[lang*="ja"] .m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content .m-hero__header {
    font-family: 'Brandon Bold'
}

.m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content .m-hero__body {
    margin-top: 0
}

.m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content .m-hero__body,
.m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content .m-hero__body * {
    color: #191b22;
    font-size: 1rem;
    font-weight: normal
}

.m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__content .m-hero__extras {
    margin-top: 10px
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__media {
        --hero-tablet-medium-media-height: auto !important;
        margin-left: 0;
        min-width: auto;
        position: static
    }
}

.m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__media .cmp-image__image {
    left: 65%;
    max-width: 35%;
    padding-bottom: 75px;
    padding-top: 75px;
    width: 100%
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__media .cmp-image__image {
        padding-bottom: 45px;
        padding-top: 45px
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__media .cmp-image__image {
        display: none
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero-style--sub-section-panel .row.no-gutters .m-hero__media {
        display: none
    }
}

@media only screen and (min-width:768px) {
    .m-hero.m-hero-style--sub-section-panel.text--half-width .row.no-gutters .m-hero__content {
        width: 60%
    }
}

.m-hero.m-hero-style--sub-section-panel.text--half-width .row.no-gutters .m-hero__content .m-hero__title {
    font-family: 'BrandonGrotesqueBlack';
    font-weight: 500
}

.m-hero.m-hero-style--sub-section-panel.text--half-width .row.no-gutters .m-hero__content .m-hero__body * {
    font-family: 'Georgia'
}

.m-hero.m-hero-style--sub-section-panel.text--half-width .row.no-gutters .m-hero__content .m-hero__extras {
    font-weight: normal
}

.m-hero.m-hero-style--sub-section-panel.text--half-width .row.no-gutters .m-hero__content .m-hero__extras .a-button-style--sub-section-panel .btn span {
    font-family: 'BrandonGrotesqueBlack'
}

@media only screen and (min-width:768px) {
    .m-hero.m-hero-style--sub-section-panel.text--full-width .row.no-gutters .m-hero__content {
        width: 100%
    }
}

.m-hero.m-hero-style--sub-section-panel.text--full-width .row.no-gutters .m-hero__content .m-hero__title {
    font-family: 'Calibri';
    font-weight: bold
}

.m-hero.m-hero-style--sub-section-panel.text--full-width .row.no-gutters .m-hero__content .m-hero__body * {
    font-family: 'Calibri'
}

.m-hero.m-hero-style--sub-section-panel.text--full-width .row.no-gutters .m-hero__content .m-hero__extras {
    font-weight: normal
}

.m-hero.m-hero-style--sub-section-panel.text--full-width .row.no-gutters .m-hero__content .m-hero__extras .a-button-style--sub-section-panel .btn span {
    font-family: 'Calibri'
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero.m-hero-style--sub-section-panel.text-vertical-align--middle-tablet .row.no-gutters .m-hero__content {
        bottom: 25%
    }
}

.m-hero.m-hero-style--sub-section-panel.icon--upside-in-action .m-hero__content .m-hero__title::before {
    content: "\e997" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--heritage .m-hero__content .m-hero__title::before {
    content: "\e98f" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--citizenship-reporting .m-hero__content .m-hero__title::before {
    content: "\e989" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--finding-the-upside .m-hero__content .m-hero__title::before {
    content: "\e991" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--global-citizenship .m-hero__content .m-hero__title::before {
    content: "\e98c" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--our-promise .m-hero__content .m-hero__title::before {
    content: "\e993" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--our-own-words .m-hero__content .m-hero__title::before {
    content: "\e990" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--professionals .m-hero__content .m-hero__title::before {
    content: "\e994" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--abbott-way .m-hero__content .m-hero__title::before {
    content: "\e99a" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--handshake .m-hero__content .m-hero__title::before {
    content: "\e98e" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--who-we-are .m-hero__content .m-hero__title::before {
    content: "\e998" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--hands .m-hero__content .m-hero__title::before {
    content: "\e98d" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--neutron .m-hero__content .m-hero__title::before {
    content: "\e992" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--target .m-hero__content .m-hero__title::before {
    content: "\e995" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--local-contact .m-hero__content .m-hero__title::before {
    content: "\e9c9" !important
}

.m-hero.m-hero-style--sub-section-panel.icon--supplier-relations .m-hero__content .m-hero__title::before {
    background: url(../../../content/dam/corp/abbott/en-us/homepage/partners/suppliers/subsectionpanel/icon-supplier-relations.png) no-repeat
}

.m-hero.m-hero-style--sub-section-panel.icon--licensing .m-hero__content .m-hero__title::before {
    background: url(../../../content/dam/corp/abbott/en-us/homepage/partners/subsectionpanel/icon_licensing.png) no-repeat
}

.m-hero.m-hero-style--sub-section-panel.icon--alliance-management .m-hero__content .m-hero__title::before {
    background: url(../../../content/dam/corp/abbott/en-us/homepage/partners/subsectionpanel/icon-alliancemanagement.png) no-repeat
}

.m-hero.m-hero-style--sub-section-panel.icon--supplier-relations-2 .m-hero__content .m-hero__title::before {
    background: url(../../../content/dam/corp/abbott/en-us/homepage/partners/suppliers/subsectionpanel/icon-supplier-relations2.png) no-repeat
}

.m-hero.m-hero-style--sub-section-panel.icon--vault-recognition .m-hero__content .m-hero__title::before {
    background: url(../../../content/dam/corp/abbott/global/homepage/careers/subsectionpanel/Students.jpg) no-repeat
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero--no-content .m-hero__content {
        display: none
    }
}

.m-hero .hero-slider-curve.rounded-option {
    position: absolute;
    bottom: -2px;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden
}

.m-hero .hero-slider-curve.notch-option {
    position: absolute;
    bottom: -5px;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero--remove-mob-extra-top-space .m-hero__content {
        padding-top: 0
    }
}

.m-hero.m-hero--redesign .m-hero__content .m-hero__body,
.m-hero.m-hero--redesign .m-hero__content .m-hero__body * {
    --hero-banner-card-text-color: #000
}

@media only screen and (max-width:767.98px) {

    .m-hero.m-hero--redesign .m-hero__content .m-hero__body,
    .m-hero.m-hero--redesign .m-hero__content .m-hero__body * {
        --hero-banner-card-text-color: #63666a;
        --hero-banner-card-md-sm-text-color: #63666a
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero--redesign .m-hero__content .m-hero__extras .btn {
        --hero-banner-card-button-bg-color: #63666a
    }
}

.m-hero.m-hero--fill-image .m-hero__media img {
    object-fit: fill
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero--medium .m-hero__content .m-hero__extras .button-hero-banner--variation .btn {
        min-width: 370px
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero--medium .m-hero__media .m-hero__image .cmp-image__image {
        object-fit: cover
    }
}

@media only screen and (min-width:992px) {

    .m-hero.m-hero--medium.m-csi-hero-banner-styles .container,
    .m-hero.m-hero--medium.hero-variation .container {
        width: 75%;
        padding: 0
    }
}

@media only screen and (min-width:992px) {

    .m-hero.m-hero--medium.m-csi-hero-banner-styles .container .m-hero__content,
    .m-hero.m-hero--medium.hero-variation .container .m-hero__content {
        margin-left: 0;
        max-width: 100%
    }
}

@media only screen and (min-width:992px) and (max-width:1199.98px) {

    .m-hero.m-hero--medium.m-csi-hero-banner-styles .container .m-hero__content .m-hero__header.h1-hero,
    .m-hero.m-hero--medium.hero-variation .container .m-hero__content .m-hero__header.h1-hero {
        font-size: 2rem
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero--medium.hero-variation-536 {
        height: 536px
    }
}

@media only screen and (max-width:767.98px) {
    .m-hero.m-hero--short .m-hero__content h1 {
        font-size: 2rem
    }
}

@media only screen and (min-width:768px) {
    .m-hero.m-hero--short .m-hero__content h1 {
        font-size: 2.25rem
    }
}

@media only screen and (min-width:1200px) {
    .m-hero.m-hero--short .m-hero__content h1 {
        font-size: 3.75rem
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero--short.hero-variation .container {
        width: 75%;
        padding: 0
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero--short.hero-variation .container .m-hero__content {
        max-width: 100%
    }
}

@media only screen and (min-width:992px) {
    .m-hero.m-hero--short.hero-variation .container .m-hero__content h1 {
        margin-left: 0
    }
}

.m-hero.our-heritage .container .m-hero__content {
    width: 80%
}

@media only screen and (min-width:1200px) {
    .m-hero.our-heritage .container .m-hero__content .m-hero__header.h1-hero {
        font-size: 5.625rem
    }
}

@media only screen and (min-width:1200px) {
    .m-hero.our-heritage .container .m-hero__content h1 {
        margin-top: 120px;
        font-size: 5.625rem
    }
}

@media only screen and (min-width:992px) {
    .m-hero #section_internship-pogram .container .m-hero__media .m-hero__image .cmp-image__image {
        padding-bottom: 0 !important;
        padding-top: 0 !important
    }
}

@media only screen and (min-width:1200px) {
    .m-hero.m-hero-font-aligment-banner .container {
        padding-left: 15px
    }
}

.m-hero.m-hero-font-aligment-banner .container .m-hero__content .m-hero__header.h1-hero {
    font-size: 3.75rem;
    line-height: 1.1em
}

.m-hero.m-hero-font-aligment-banner .container .m-hero__content .m-hero__header h1 {
    font-size: 3.75rem;
    line-height: 1.1em
}

.m-hero.font-noto-sans-vi-regular .m-hero__content h1 {
    line-height: 1.25
}

.m-hero.font-noto-sans-vi-regular .m-hero__content .m-hero__body p,
.m-hero.font-noto-sans-vi-regular .m-hero__content .m-hero__body h4 {
    line-height: 1.25
}

@media only screen and (max-width:767.98px) {
    .m-hero .column-variation--hero-banner-col .image .cmp-image .cmp-image__link img {
        height: 142px
    }
}

.m-hero .column-variation--hero-banner-col .image .cmp-image .cmp-image__link .image-title {
    width: 100%
}

@media only screen and (min-width:992px) {
    .m-hero .column-variation--hero-banner-col .image .cmp-image .cmp-image__link .image-title {
        width: 90%
    }
}

@media only screen and (max-width:991.98px) {
    .m-hero .column-variation--hero-banner-col .image .cmp-image .cmp-image__link .image-title h2 {
        font-size: .875rem
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero .column-variation--hero-banner-col .m-hero.m-hero--short {
        min-height: auto
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .m-hero .column-variation--hero-banner-col .m-hero.m-hero--short .m-hero__media {
        min-height: 172px
    }
}

.m-hero.hero-variation-freedom2save .m-hero__content .m-hero__body p {
    color: #009cde;
    font-size: 1.688rem !important
}

.m-hero.hero-variation-freedom2save .m-hero__content .m-hero__body p:first-child {
    font-size: 1.688rem !important;
    width: 50%;
    text-transform: none;
    line-height: 2.188rem;
    font-family: 'BrandonGrotesque';
    color: #fff
}

@media only screen and (max-width:767.98px) {
    .m-hero.hero-variation-freedom2save .m-hero__content .m-hero__body p:first-child {
        width: 100%;
        line-height: 1.75rem
    }
}

.m-hero__video .video {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.m-hero__video .video .m-video .a-video {
    max-width: 171px !important
}

.m-hero__video .video .m-video .a-video .a-video__player .play-icon img {
    display: none
}

.m-hero__video .video .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #5bc2e7;
    position: relative;
    transition: all .3s ease !important;
    z-index: 0;
    margin: 0;
    color: white;
    height: 34px !important;
    border-radius: 5px !important;
    box-shadow: inset 0 0 0 #d9d9d6;
    font-weight: 400;
    text-align: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 10px !important;
    padding-left: 35px !important;
    top: 17px !important;
    background-image: url("../../../content/dam/corp/abbott/en-us/corpnewsroom/play-button-icon/play-btn.png") !important;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position-x: 10px;
    background-position-y: 6px !important;
    font-family: 'BrandonGrotesqueBlack';
    width: auto !important;
    min-width: 171px !important;
    margin-left: 30px;
    overflow: hidden
}

.m-hero__video .video .m-video .a-video .a-video__player .play-icon .btn:hover {
    background-color: #63666a !important
}

.m-hero__video .video .m-video .a-video .a-video__player .play-icon .btn:hover::after {
    bottom: 0;
    height: 100%
}

.m-hero__video .video .m-video .a-video .a-video__player .play-icon .btn::after {
    background-color: #63666a !important;
    border-radius: .25rem;
    bottom: 100%;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
    z-index: -1;
    background-image: url("../../../content/dam/corp/abbott/en-us/corpnewsroom/play-button-icon/play-btn.png") !important;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position-x: 10px;
    background-position-y: 6px
}

@media only screen and (max-width:430px) {
    .m-hero__video .video .m-video .a-video .a-video__player .play-icon .btn {
        margin-left: -1px;
        margin-top: 10px;
        color: white !important;
        max-width: 171px;
        overflow: hidden;
        height: 28px !important;
        border-radius: 5px;
        padding-top: 6px !important;
        background-position-y: 4px !important
    }
}

@media only screen and (min-width:540px) {
    .m-hero__video .video .m-video .a-video .a-video__player .play-icon .btn {
        margin-left: 200px;
        margin-top: -31px;
        color: white !important;
        max-width: 171px;
        overflow: hidden;
        height: 28px !important;
        border-radius: 5px;
        padding-top: 6px !important;
        background-position-y: 4px !important
    }
}

@media only screen and (min-width:768px) {
    .m-hero__video .video .m-video .a-video .a-video__player .play-icon .btn {
        padding-top: 6px !important;
        height: 28px !important;
        margin-top: -3px;
        margin-left: 22px;
        background-position-y: 4px !important
    }
}

@media only screen and (min-width:992px) {
    .m-hero__video .video .m-video .a-video .a-video__player .play-icon .btn {
        padding-top: 0 !important;
        height: 34px !important;
        margin-top: 0;
        margin-left: 22px;
        background-position-y: 6px !important
    }
}

@media only screen and (max-width:390px) {
    .m-hero__video .video.m-video-corp-single-btn .m-video .a-video .a-video__player .play-icon .btn {
        margin-left: 9px;
        margin-top: 1px
    }
}

@media only screen and (min-width:391px) {
    .m-hero__video .video.m-video-corp-single-btn .m-video .a-video .a-video__player .play-icon .btn {
        margin-left: 12px;
        margin-top: 1px;
        color: white !important
    }
}

@media only screen and (min-width:540px) {
    .m-hero__video .video.m-video-corp-single-btn .m-video .a-video .a-video__player .play-icon .btn {
        margin-left: 16px;
        margin-top: 1px
    }
}

@media only screen and (min-width:576px) {
    .m-hero__video .video.m-video-corp-single-btn .m-video .a-video .a-video__player .play-icon .btn {
        margin-left: 100px;
        margin-top: 1px
    }
}

@media only screen and (min-width:768px) {
    .m-hero__video .video.m-video-corp-single-btn .m-video .a-video .a-video__player .play-icon .btn {
        margin-left: 0
    }
}

.m-hero__video .video.m-video-corp-vbg-color--dark-blue .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #002a3a
}

.m-hero__video .video.m-video-corp-vbg-color--black .m-video .a-video .a-video__player .play-icon .btn {
    background-color: black
}

.m-hero__video .video.m-video-corp-vbg-color--cyan .m-video .a-video .a-video__player .play-icon .btn {
    background-color: cyan
}

.m-hero__video .video.m-video-corp-vbg-color--yellow .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #ffd100
}

.m-hero__video .video.m-video-corp-vbg-color--mint .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #64ccc9
}

.m-hero__video .video.m-video-corp-vbg-color--white .m-video .a-video .a-video__player .play-icon .btn {
    background-color: white
}

.m-hero__video .video.m-video-corp-vbg-color--dark-yellow .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #ded548
}

.m-hero__video .video.m-video-corp-vbg-color--green .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #7ccc6c
}

.m-hero__video .video.m-video-corp-vbg-color--fuscia .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #aa0061
}

.m-hero__video .video.m-video-corp-vbg-color--orange .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #e4002b
}

.m-hero__video .video.m-video-corp-vbg-color--dark-orange .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #eeb33b
}

.m-hero__video .video.m-video-corp-vbg-color--blue .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #004f71
}

.m-hero__video .video.m-video-corp-vbg-color--gray .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #63666a
}

.m-hero__video .video.m-video-corp-vbg-color--dark-gray .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #222731
}

.m-hero__video .video.m-video-corp-vbg-color--light-gray .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #d9d9d6
}

.m-hero__video .video.m-video-corp-vbg-color--medium-gray .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #939799
}

.m-hero__video .video.m-video-corp-vbg-color--button-gray .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #63666b
}

.m-hero__video .video.m-video-corp-vbg-color--dark-cyan .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #007589
}

.m-hero__video .video.m-video-corp-vbg-color--primary-blue .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #009cde
}

.m-hero__video .video.m-video-corp-vbg-color--bastille .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #2a2b33
}

.m-hero__video .video.m-video-corp-vbg-color--silver .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #ccc
}

.m-hero__video .video.m-video-corp-vbg-color--gold .m-video .a-video .a-video__player .play-icon .btn {
    background-color: #eeb33b
}

.m-hero__video .video.m-video-corp-text-color--black .m-video .a-video .a-video__player .play-icon .btn {
    color: #000
}

.m-hero__video .video.m-video-corp-text-color--dark-blue .m-video .a-video .a-video__player .play-icon .btn {
    color: #002a3a
}

.m-hero__video .video.m-video-corp-text-color--yellow .m-video .a-video .a-video__player .play-icon .btn {
    color: #ffd100
}

.m-hero__video .video.m-video-corp-text-color--dark-yellow .m-video .a-video .a-video__player .play-icon .btn {
    color: #ded548
}

.m-hero__video .video.m-video-corp-text-color--green .m-video .a-video .a-video__player .play-icon .btn {
    color: #7ccc6c
}

.m-hero__video .video.m-video-corp-text-color--dark-green .m-video .a-video .a-video__player .play-icon .btn {
    color: #00b140
}

.m-hero__video .video.m-video-corp-text-color--fuscia .m-video .a-video .a-video__player .play-icon .btn {
    color: #aa0061
}

.m-hero__video .video.m-video-corp-text-color--dark-fuscia .m-video .a-video .a-video__player .play-icon .btn {
    color: #470a68
}

.m-hero__video .video.m-video-corp-text-color--orange .m-video .a-video .a-video__player .play-icon .btn {
    color: #e4002b
}

.m-hero__video .video.m-video-corp-text-color--dark-orange .m-video .a-video .a-video__player .play-icon .btn {
    color: #eeb33b
}

.m-hero__video .video.m-video-corp-text-color--cyan .m-video .a-video .a-video__player .play-icon .btn {
    color: #5bc2e7
}

.m-hero__video .video.m-video-corp-text-color--blue .m-video .a-video .a-video__player .play-icon .btn {
    color: #004f71
}

.m-hero__video .video.m-video-corp-text-color--gray .m-video .a-video .a-video__player .play-icon .btn {
    color: #63666a
}

.m-hero__video .video.m-video-corp-text-color--dark-gary .m-video .a-video .a-video__player .play-icon .btn {
    color: #222731
}

.m-hero__video .video.m-video-corp-text-color--light-gray .m-video .a-video .a-video__player .play-icon .btn {
    color: #d9d9d6
}

.m-hero__video .video.m-video-corp-text-color--medium-gray .m-video .a-video .a-video__player .play-icon .btn {
    color: #939799
}

.m-hero__video .video.m-video-corp-text-color--button-gray .m-video .a-video .a-video__player .play-icon .btn {
    color: #63666b
}

.m-hero__video .video.m-video-corp-text-color--dark-cyan .m-video .a-video .a-video__player .play-icon .btn {
    color: #007589
}

.m-hero__video .video.m-video-corp-text-color--primary-blue .m-video .a-video .a-video__player .play-icon .btn {
    color: #009cde
}

.m-hero__video .video.m-video-corp-text-color--mint .m-video .a-video .a-video__player .play-icon .btn {
    color: #64ccc9
}

.m-hero__video .video.m-video-corp-text-color--bastille .m-video .a-video .a-video__player .play-icon .btn {
    color: #2a2b33
}

.m-hero__video .video.m-video-corp-text-color--silver .m-video .a-video .a-video__player .play-icon .btn {
    color: #ccc
}

.m-hero__video .video.m-video-corp-text-color--white .m-video .a-video .a-video__player .play-icon .btn {
    color: #fff
}

.tabs.tab-section-active .a-tabs .a-tabs__nav-link {
    background-color: #63666b;
    font-size: 1em;
    color: var(--tabs-nav-link-text-color-active)
}

.tabs.tab-section-active .a-tabs .a-tabs__nav-link.cmp-tabs__tab--active {
    background-color: #019cde;
    border: 0
}

.tabs.tab-pressrelease-facts .a-tabs__nav-link {
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    border-bottom: 0;
    border-color: transparent
}

.tabs.tab-pressrelease-facts .a-tabs__nav-link.cmp-tabs__tab--active {
    background-color: #019cde;
    outline: 0
}

.tabs.tab-pressrelease-facts .a-tabs__nav-link.cmp-tabs__tab--active:focus {
    text-decoration: none
}

.tabs.tab-pressrelease-facts .a-tabs__nav-link:not(.active) {
    background: #63666b;
    color: #fff
}

.tabs.tab-pressrelease-facts .a-tabs__nav-link:not(.active):hover {
    background: #019cde;
    color: #fff
}

.tabs.tab-pressrelease-facts .a-tabs__nav-text {
    display: flex;
    flex-direction: row-reverse
}

.tabs.tab-pressrelease-facts .a-tabs__icon.a-tabs__icon-active {
    transform: rotate(90deg)
}

.tabs.tab-pressrelease-facts .abt-icon {
    color: #fff
}

.tabs.tab-pressrelease-facts .button .btn {
    box-shadow: none;
    padding: 8px 10px 5px 10px;
    text-align: left;
    width: 100%
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .tabs.tab-pressrelease-facts .a-tabs__nav-link {
        padding-left: 5px;
        padding-right: 0
    }
}

.logo.a-logo-align--center {
    text-align: center
}

.logo.a-logo-align--right {
    text-align: right
}

.logo.a-logo-align--left {
    text-align: left
}

.image {
    width: 100%
}

@media screen and (min-width:992px) {
    .socialmedia-image-container {
        display: flex;
        width: 102%;
        flex-direction: row-reverse;
        justify-content: start;
        align-items: flex-start;
        margin-left: -60px
    }
}

#socialshare .m-social-media {
    display: flex;
    flex-direction: column;
    align-items: center
}

#socialshare .m-social-media .m-social-media--title {
    display: block;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: #888b8d;
    font-family: 'BrandonGrotesque';
    font-size: 14px !important;
    border-bottom: 1px solid #888b8d
}

#socialshare .m-social-media .m-social-media--icons {
    display: flex;
    flex-direction: column
}

#socialshare .m-social-media .m-social-media--icons li {
    margin: 0 20px 20px 25px
}

#socialshare .m-social-media .m-social-media--icons li .a-logo-comp--link {
    display: flex;
    align-items: center
}

#socialshare .m-social-media .m-social-media--icons li .a-logo-comp--link em {
    margin-right: 5px;
    color: #888b8d;
    transition: color .3s;
    font-size: 1.25em !important
}

#socialshare .m-social-media .m-social-media--icons li .a-logo-comp--link:hover em {
    color: #615e61
}

@media screen and (max-width:992px) {
    .socialmedia-image-container {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 15px
    }

    #socialshare .socialmedia {
        width: 350px;
        height: 50px;
        padding-top: 0;
        padding-bottom: 0
    }

    #socialshare .m-social-media {
        display: flex;
        flex-direction: row;
        margin-left: 0
    }

    #socialshare .m-social-media .m-social-media--title {
        display: block;
        color: #888b8d;
        font-family: 'BrandonGrotesque';
        padding-bottom: 3px;
        padding-top: 3px;
        border-right: 1px solid #888b8d;
        border-bottom: 0;
        margin-right: 15px;
        padding-right: 10px;
        margin-bottom: 20px;
        text-transform: none !important
    }

    #socialshare .m-social-media .m-social-media--icons {
        display: flex;
        flex-direction: row
    }

    #socialshare .m-social-media .m-social-media--icons li {
        margin-right: 20px;
        margin-top: 0;
        margin-left: 0;
        margin-bottom: 15px
    }

    #socialshare .m-social-media .m-social-media--icons li .a-logo-comp--link {
        display: flex;
        align-items: center
    }

    #socialshare .m-social-media .m-social-media--icons li .a-logo-comp--link em {
        margin-right: 20px;
        font-size: 1.625em
    }
}

.socialmedia {
    visibility: hidden;
    height: 0
}

.socialmedia.title-image-video-variation .m-social-media {
    flex-direction: row-reverse
}

.socialmedia.title-image-video-variation .m-social-media .m-social-media--title:empty {
    margin: 0
}

.socialmedia.title-image-video-variation .m-social-media .m-social-media--icons {
    position: relative
}

.socialmedia.title-image-video-variation .m-social-media .m-social-media--icons .abt-icon {
    font-size: 1.7rem
}

.socialmedia.title-image-video-variation .m-social-media .m-social-media--icons li {
    max-width: 27px
}

.socialmedia.title-image-video-variation .m-social-media .m-social-media--icons li:nth-child(3) {
    max-width: 30px
}

.socialmedia.title-image-video-variation .m-social-media .m-social-media--icons li:nth-child(4) {
    max-width: 25px
}

.socialmedia.title-image-video-variation .m-social-media .m-social-media--icons li:nth-child(5) {
    max-width: 40px
}

.socialmedia.title-image-video-variation .m-social-media .m-social-media--icons li:hover,
.socialmedia.title-image-video-variation .m-social-media .m-social-media--icons li:focus {
    transform: translateY(-4px);
    transition: all .3s ease-in-out
}

.socialmedia.title-image-video-variation .m-social-media .m-social-media--icons .a-logo-comp--link:hover,
.socialmedia.title-image-video-variation .m-social-media .m-social-media--icons .a-logo-comp--link:focus {
    text-decoration: none !important
}

@media only screen and (max-width:767.98px) {
    .socialmedia.title-image-video-variation .m-social-media {
        justify-content: left
    }
}

.socialmedia.socialmedia-corp-variation--with-feed {
    height: 100%;
    padding-left: 80px
}

@media only screen and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed {
        padding-left: 5px
    }
}

.socialmedia.socialmedia-corp-variation--with-feed .m-social-media {
    height: 100%;
    width: 65%
}

@media only screen and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed .m-social-media {
        width: 100%
    }
}

.socialmedia.socialmedia-corp-variation--with-feed .m-social-media ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: left;
    margin: auto;
    width: 100%
}

@media only screen and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed .m-social-media ul {
        flex-wrap: unset;
        justify-content: center
    }
}

.socialmedia.socialmedia-corp-variation--with-feed .m-social-media ul li {
    padding: 20px;
    text-align: center
}

@media only screen and (max-width:767.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed .m-social-media ul li {
        padding: 10px;
        margin: 5px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed .m-social-media ul li {
        padding: 10px;
        margin: 20px
    }
}

.socialmedia.socialmedia-corp-variation--with-feed .m-social-media ul li a {
    display: inline-block;
    width: 100%
}

.socialmedia.socialmedia-corp-variation--with-feed .m-social-media ul li a:hover {
    text-decoration: none
}

.socialmedia.socialmedia-corp-variation--with-feed .m-social-media ul li a:hover .abt-icon {
    color: #017387;
    text-decoration: none
}

.socialmedia.socialmedia-corp-variation--with-feed .m-social-media ul li a .abt-icon {
    color: #000
}

.socialmedia.socialmedia-corp-variation--with-feed .m-social-media ul li .abt-icon:before {
    font-size: 3.75rem
}

@media only screen and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed .m-social-media ul li .abt-icon:before {
        font-size: 2.188rem
    }
}

.socialmedia.socialmedia-corp-variation--with-feed-variation2 {
    height: 100%;
    padding-left: 80px
}

@media only screen and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed-variation2 {
        padding-left: 5px
    }
}

.socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media {
    height: 100%;
    width: 65%
}

@media only screen and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media {
        width: 100%
    }
}

.socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media ul {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: left;
    margin: auto;
    width: 100%
}

@media only screen and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media ul {
        flex-wrap: unset;
        justify-content: center
    }
}

.socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media ul li {
    padding: 20px;
    text-align: center
}

@media only screen and (max-width:767.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media ul li {
        padding: 10px;
        margin: 5px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media ul li {
        padding: 10px;
        margin: 20px
    }
}

.socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media ul li a {
    display: inline-block;
    width: 100%
}

.socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media ul li a:hover {
    text-decoration: none
}

.socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media ul li a:hover .abt-icon {
    color: #017387;
    text-decoration: none
}

.socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media ul li a .abt-icon {
    color: #000
}

.socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media ul li .abt-icon:before {
    font-size: 3.75rem
}

@media only screen and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media ul li .abt-icon:before {
        font-size: 2.188rem
    }
}

@media only screen and (min-width:992px) {
    .socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media .m-social-media--icons li {
        margin: 2rem
    }
}

@media only screen and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation--with-feed-variation2 .m-social-media .m-social-media--icons {
        width: 100%
    }
}

.socialmedia.socialmedia-corp-variation .m-social-media {
    flex-direction: column;
    width: 100%
}

.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li {
    text-align: center;
    width: 25%
}

.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link {
    font-size: 1rem;
    letter-spacing: 1px;
    text-align: center;
    word-spacing: 1px
}

.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link .abt-icon {
    color: #000;
    display: block;
    font-size: 2.8rem;
    padding-bottom: 18px
}

@media only screen and (max-width:991.98px) {
    .socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link .abt-icon {
        padding-bottom: 9px;
        font-size: 2rem
    }
}

.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link .related-text {
    font-family: 'Georgia';
    padding-bottom: 10px
}

.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link .icon-name {
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase
}

.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link .related-text,
.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link .icon-name {
    color: #2a2b33;
    font-size: .875em;
    line-height: 1.125em
}

@media only screen and (min-width:768px) and (max-width:991.98px) {

    .socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link .related-text,
    .socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link .icon-name {
        font-size: .625em;
        line-height: 1em
    }
}

@media only screen and (max-width:767.98px) {

    .socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link .related-text,
    .socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link .icon-name {
        display: none
    }
}

.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link:hover .abt-icon,
.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link:focus .abt-icon,
.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link:hover .related-text,
.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link:focus .related-text,
.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link:hover .icon-name,
.socialmedia.socialmedia-corp-variation .m-social-media .m-social-media--icons li .a-logo-comp--link:focus .icon-name {
    color: #017387
}

.socialmedia.socialmedia-corp-variation.icon-center--alignment .m-social-media .m-social-media--icons {
    justify-content: center
}

@media only screen and (max-width:991.98px) {
    #follow-careers .row .col-lg-6 {
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%
    }
}

#follow-careers #social-media-icons .row {
    margin: 0 15px;
    align-content: center;
    text-align: center;
    justify-content: start
}

@media only screen and (min-width:768px) {
    #follow-careers #social-media-icons .row {
        display: flex;
        margin: 0 75px
    }
}

@media only screen and (min-width:992px) {
    #follow-careers #social-media-icons .row {
        width: 75%;
        margin: 75px 0 0 75px
    }
}

@media only screen and (min-width:1200px) {
    #follow-careers #social-media-icons .row {
        width: 68%;
        margin: 75px 0 0 100px
    }
}

#follow-careers #social-media-icons .row .columncontrol__column {
    cursor: pointer;
    display: block;
    padding: 0 10px
}

@media only screen and (min-width:992px) {
    #follow-careers #social-media-icons .row .columncontrol__column {
        width: 32.33%;
        max-width: 32.33%;
        flex: 0 0 32.33%;
        margin-bottom: 20px
    }
}

@media only screen and (max-width:991.98px) {
    #follow-careers #social-media-icons .row .columncontrol__column {
        width: 20%;
        max-width: 20%;
        flex: 0 0 20%
    }
}

#follow-careers #social-media-icons .row .columncontrol__column .image {
    width: 45%;
    margin: 0 auto
}

#follow-careers #social-media-icons .row .columncontrol__column .image .parallax-wrapper__parallax-image {
    height: auto
}

#follow-careers #social-media-icons .row .columncontrol__column .text.a-text--link__blue-lagoon {
    margin-top: 20px
}

@media only screen and (max-width:767.98px) {
    #follow-careers #social-media-icons .row .columncontrol__column .text.a-text--link__blue-lagoon {
        display: none
    }
}

#follow-careers #social-media-icons .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p {
    margin: 0;
    line-height: 1em
}

#follow-careers #social-media-icons .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p a {
    color: #2a2b33;
    padding-bottom: 10px;
    font-size: .875em;
    line-height: 1.125em;
    font-family: 'Georgia';
    display: inline-block
}

#follow-careers #social-media-icons .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p strong a {
    font-family: 'BrandonGrotesqueBold';
    font-weight: normal
}

#follow-careers #social-media-icons .row .columncontrol__column:hover .image .a-image__default {
    opacity: 0
}

#follow-careers #social-media-icons .row .columncontrol__column:hover .image .parallax-wrapper__parallax-image {
    z-index: 1
}

#follow-careers #social-media-icons .row .columncontrol__column:hover .text.a-text--link__blue-lagoon .cmp-text p a {
    color: #017387
}

#follow-careers #social-media-icons-in .row {
    margin: 0 15px;
    align-content: center;
    text-align: center;
    justify-content: start
}

@media only screen and (min-width:768px) {
    #follow-careers #social-media-icons-in .row {
        display: flex;
        margin: 0 75px
    }
}

@media only screen and (min-width:992px) {
    #follow-careers #social-media-icons-in .row {
        width: 75%;
        margin: 75px 0 0 75px
    }
}

@media only screen and (min-width:1200px) {
    #follow-careers #social-media-icons-in .row {
        width: 92%;
        margin: 85px 0 0 0
    }
}

#follow-careers #social-media-icons-in .row .columncontrol__column {
    cursor: pointer;
    display: block;
    padding: 0 10px
}

@media only screen and (min-width:992px) {
    #follow-careers #social-media-icons-in .row .columncontrol__column {
        width: 32.33%;
        max-width: 32.33%;
        flex: 0 0 32.33%;
        margin-bottom: 20px;
        margin-right: 1%
    }
}

@media only screen and (max-width:991.98px) {
    #follow-careers #social-media-icons-in .row .columncontrol__column {
        width: 20%;
        max-width: 20%;
        flex: 0 0 20%
    }
}

#follow-careers #social-media-icons-in .row .columncontrol__column .image {
    width: 45%;
    margin: 0 auto;
    max-width: 44px
}

#follow-careers #social-media-icons-in .row .columncontrol__column .image .parallax-wrapper__parallax-image {
    height: auto
}

#follow-careers #social-media-icons-in .row .columncontrol__column .text.a-text--link__blue-lagoon {
    margin-top: 20px
}

@media only screen and (max-width:767.98px) {
    #follow-careers #social-media-icons-in .row .columncontrol__column .text.a-text--link__blue-lagoon {
        display: none
    }
}

#follow-careers #social-media-icons-in .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p {
    margin: 0;
    line-height: 1em
}

#follow-careers #social-media-icons-in .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p a {
    color: #2a2b33;
    padding-bottom: 10px;
    font-size: .875em;
    line-height: 1.125em;
    font-family: 'Georgia';
    display: inline-block
}

#follow-careers #social-media-icons-in .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p strong a {
    font-family: 'BrandonGrotesqueBold';
    font-weight: normal
}

#follow-careers #social-media-icons-in .row .columncontrol__column:hover .image .a-image__default {
    opacity: 0
}

#follow-careers #social-media-icons-in .row .columncontrol__column:hover .image .parallax-wrapper__parallax-image {
    z-index: 1
}

#follow-careers #social-media-icons-in .row .columncontrol__column:hover .text.a-text--link__blue-lagoon .cmp-text p a {
    color: #017387
}

@media only screen and (max-width:991.98px) {
    .columncontrol-hide-child-1 .row .columncontrol__column:first-child:first-of-type {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol-hide-child-1 .row .columncontrol__column:last-child {
        max-width: 100%;
        flex: 0 0 100%
    }
}

.columncontrol-2-col-social .row {
    margin: 0 15px;
    align-content: center;
    text-align: center;
    justify-content: start
}

@media only screen and (min-width:768px) {
    .columncontrol-2-col-social .row {
        display: flex;
        margin: 0 75px
    }
}

@media only screen and (min-width:992px) {
    .columncontrol-2-col-social .row {
        width: 75%;
        margin: 0 0 0 75px
    }
}

@media only screen and (min-width:1200px) {
    .columncontrol-2-col-social .row {
        width: 60%;
        margin: 0 0 0 120px
    }
}

.columncontrol-2-col-social .row .columncontrol__column {
    cursor: pointer;
    display: block !important;
    padding: 0 10px
}

@media only screen and (min-width:992px) {
    .columncontrol-2-col-social .row .columncontrol__column {
        width: 50%;
        max-width: 50%;
        flex: 0 0 47%;
        margin-bottom: 20px;
        margin-right: 3%;
        display: block !important
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol-2-col-social .row .columncontrol__column {
        width: 20%;
        max-width: 20% !important;
        flex: 0 0 20% !important
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol-2-col-social .row .columncontrol__column {
        padding: 0
    }
}

.columncontrol-2-col-social .row .columncontrol__column .image {
    width: 45%;
    margin: 0 auto !important;
    max-width: 44px
}

.columncontrol-2-col-social .row .columncontrol__column .image .parallax-wrapper__parallax-image {
    height: auto
}

.columncontrol-2-col-social .row .columncontrol__column .text {
    margin-top: 20px !important
}

@media only screen and (max-width:767.98px) {
    .columncontrol-2-col-social .row .columncontrol__column .text {
        display: none
    }
}

.columncontrol-2-col-social .row .columncontrol__column .text .cmp-text p {
    margin: 0;
    line-height: 1em;
    text-align: center !important
}

.columncontrol-2-col-social .row .columncontrol__column .text .cmp-text p a {
    color: #2a2b33;
    padding-bottom: 10px;
    font-size: .875em;
    line-height: 1.125em;
    font-family: 'Georgia';
    display: inline-block
}

.columncontrol-2-col-social .row .columncontrol__column .text .cmp-text p strong a {
    font-family: 'BrandonGrotesqueBold';
    font-weight: normal
}

.columncontrol-2-col-social .row .columncontrol__column:hover .image .a-image__default {
    opacity: 0
}

.columncontrol-2-col-social .row .columncontrol__column:hover .image .parallax-wrapper__parallax-image {
    z-index: 1
}

.columncontrol-2-col-social .row .columncontrol__column:hover .text .cmp-text p a {
    color: #017387
}

@media only screen and (min-width:1200px) {
    .columncontrol-2-col-social #social-media-icons-two-column .row {
        width: 90%;
        margin: 80px 0 0 40px
    }
}

#social-media-icons-single-row .row {
    margin: 0 15px;
    align-content: center;
    text-align: center;
    justify-content: space-between
}

@media only screen and (min-width:768px) {
    #social-media-icons-single-row .row {
        display: flex;
        margin: 0 75px
    }
}

@media only screen and (min-width:992px) {
    #social-media-icons-single-row .row {
        width: 90%;
        margin: 0 auto
    }
}

@media only screen and (min-width:1200px) {
    #social-media-icons-single-row .row {
        width: 90%;
        margin: 0 auto
    }
}

#social-media-icons-single-row .row .columncontrol__column {
    cursor: pointer;
    display: block;
    padding: 0 5px
}

@media only screen and (min-width:992px) {
    #social-media-icons-single-row .row .columncontrol__column {
        width: 20%;
        max-width: 20%;
        flex: 0 0 20%;
        margin-bottom: 20px;
        padding: 0 5%
    }
}

@media only screen and (max-width:991.98px) {
    #social-media-icons-single-row .row .columncontrol__column {
        width: 20%;
        max-width: 20%;
        flex: 0 0 20%
    }
}

#social-media-icons-single-row .row .columncontrol__column .image {
    width: 45%;
    margin: 0 auto
}

#social-media-icons-single-row .row .columncontrol__column .image .parallax-wrapper__parallax-image {
    height: auto
}

#social-media-icons-single-row .row .columncontrol__column .text.a-text--link__blue-lagoon {
    margin-top: 20px
}

@media only screen and (max-width:767.98px) {
    #social-media-icons-single-row .row .columncontrol__column .text.a-text--link__blue-lagoon {
        display: none
    }
}

#social-media-icons-single-row .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p {
    margin: 0;
    line-height: 1em
}

#social-media-icons-single-row .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p a {
    color: #2a2b33;
    padding-bottom: 10px;
    font-size: .875em;
    line-height: 1.125em;
    font-family: 'Georgia';
    display: inline-block;
    letter-spacing: .5px
}

#social-media-icons-single-row .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p strong a {
    font-family: 'BrandonGrotesqueBold';
    font-weight: normal
}

#social-media-icons-single-row .row .columncontrol__column:hover .image .a-image__default {
    opacity: 0
}

#social-media-icons-single-row .row .columncontrol__column:hover .image .parallax-wrapper__parallax-image {
    z-index: 1
}

#social-media-icons-single-row .row .columncontrol__column:hover .text.a-text--link__blue-lagoon .cmp-text p a {
    color: #017387
}

#social-media-icons-single-row-3-iteam .row {
    margin: 0 15px;
    align-content: center;
    text-align: center
}

@media only screen and (min-width:768px) {
    #social-media-icons-single-row-3-iteam .row {
        display: flex;
        margin: 0 75px
    }
}

@media only screen and (min-width:992px) {
    #social-media-icons-single-row-3-iteam .row {
        width: 90%;
        margin: 0 auto
    }
}

@media only screen and (min-width:1200px) {
    #social-media-icons-single-row-3-iteam .row {
        width: 90%;
        margin: 0 auto
    }
}

#social-media-icons-single-row-3-iteam .row .columncontrol__column {
    cursor: pointer;
    display: block;
    padding: 0 5px
}

@media only screen and (min-width:992px) {
    #social-media-icons-single-row-3-iteam .row .columncontrol__column {
        width: 20%;
        max-width: 20%;
        flex: 0 0 20%;
        margin-bottom: 20px;
        padding: 0 5%
    }
}

@media only screen and (max-width:991.98px) {
    #social-media-icons-single-row-3-iteam .row .columncontrol__column {
        width: 20%;
        max-width: 20%;
        flex: 0 0 20%
    }
}

#social-media-icons-single-row-3-iteam .row .columncontrol__column .image {
    width: 45%;
    margin: 0 auto
}

#social-media-icons-single-row-3-iteam .row .columncontrol__column .image .parallax-wrapper__parallax-image {
    height: auto
}

#social-media-icons-single-row-3-iteam .row .columncontrol__column .text.a-text--link__blue-lagoon {
    margin-top: 20px
}

@media only screen and (max-width:767.98px) {
    #social-media-icons-single-row-3-iteam .row .columncontrol__column .text.a-text--link__blue-lagoon {
        display: none
    }
}

#social-media-icons-single-row-3-iteam .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p {
    margin: 0;
    line-height: 1em
}

#social-media-icons-single-row-3-iteam .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p a {
    color: #2a2b33;
    padding-bottom: 10px;
    font-size: .875em;
    line-height: 1.125em;
    font-family: 'Georgia';
    display: inline-block;
    letter-spacing: .5px
}

#social-media-icons-single-row-3-iteam .row .columncontrol__column .text.a-text--link__blue-lagoon .cmp-text p strong a {
    font-family: 'BrandonGrotesqueBold';
    font-weight: normal
}

#social-media-icons-single-row-3-iteam .row .columncontrol__column:hover .image .a-image__default {
    opacity: 0
}

#social-media-icons-single-row-3-iteam .row .columncontrol__column:hover .image .parallax-wrapper__parallax-image {
    z-index: 1
}

#social-media-icons-single-row-3-iteam .row .columncontrol__column:hover .text.a-text--link__blue-lagoon .cmp-text p a {
    color: #017387
}

.columncontrol-5-col-social .row {
    margin: 0 15px;
    align-content: center;
    text-align: center;
    justify-content: start
}

@media only screen and (min-width:768px) {
    .columncontrol-5-col-social .row {
        display: flex;
        margin: 0 75px
    }
}

@media only screen and (min-width:992px) {
    .columncontrol-5-col-social .row {
        width: 90%;
        margin: 0 auto
    }
}

@media only screen and (min-width:1200px) {
    .columncontrol-5-col-social .row {
        width: 90%;
        margin: 0 auto
    }
}

.columncontrol-5-col-social .row .columncontrol__column {
    cursor: pointer;
    display: block;
    padding: 0 5px
}

@media only screen and (min-width:992px) {
    .columncontrol-5-col-social .row .columncontrol__column {
        width: 20%;
        max-width: 20%;
        flex: 0 0 20%;
        margin-bottom: 20px;
        padding: 0 5%
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol-5-col-social .row .columncontrol__column {
        width: 20%;
        max-width: 20%;
        flex: 0 0 20%
    }
}

.columncontrol-5-col-social .row .columncontrol__column .image {
    width: 45%;
    margin: 0 auto !important
}

.columncontrol-5-col-social .row .columncontrol__column .image .parallax-wrapper__parallax-image {
    height: auto
}

.columncontrol-5-col-social .row .columncontrol__column .text {
    margin-top: 20px !important
}

@media only screen and (max-width:767.98px) {
    .columncontrol-5-col-social .row .columncontrol__column .text {
        display: none
    }
}

.columncontrol-5-col-social .row .columncontrol__column .text .cmp-text p {
    margin: 0;
    line-height: 1em;
    text-align: center !important
}

.columncontrol-5-col-social .row .columncontrol__column .text .cmp-text p a {
    color: #2a2b33;
    padding-bottom: 10px;
    font-size: .875em;
    line-height: 1.125em;
    font-family: 'Georgia';
    display: inline-block;
    letter-spacing: .5px
}

.columncontrol-5-col-social .row .columncontrol__column .text .cmp-text p strong a {
    font-family: 'BrandonGrotesqueBold';
    font-weight: normal
}

.columncontrol-5-col-social .row .columncontrol__column:hover .image .parallax-wrapper__parallax-image {
    z-index: 1
}

.columncontrol-5-col-social .row .columncontrol__column:hover .text .cmp-text p a {
    color: #017387
}

#at4-share {
    margin-left: -3px !important
}

#at4-share .at4-share-title {
    font-size: .875rem
}

.footer .m-social-media--icons li {
    margin: 0
}

@media only screen and (min-width:1200px) {
    .footer .m-social-media--icons li {
        margin: 0 5px 0 0
    }
}

@media only screen and (min-width:1200px) {
    .footer .m-social-media--icons li .abt-icon {
        font-size: 1.063rem
    }
}

.pulledQuote {
    display: flex;
    width: 100%;
    margin-top: 44px;
    margin-bottom: 44px
}

.pulledQuote .quote-icon {
    width: 55px;
    margin: 55px 0 0 0;
    position: relative
}

.pulledQuote .quote-icon::after {
    content: "”";
    font-size: 9.75em;
    position: absolute;
    left: -5px;
    font-family: 'Georgia';
    color: #009cde
}

.pulledQuote blockquote {
    margin: 0 !important
}

@media screen and (max-width:1220px) {
    .pulledQuote .newPulledQuote {
        padding-left: 30px !important
    }
}

.pulledQuote .newPulledQuote {
    padding-left: 30px
}

.pulledQuote .newPulledQuote blockquote {
    font-size: 1.5em;
    max-width: 590px;
    font-style: italic;
    line-height: 34px
}

.pulledQuote .newPulledQuote blockquote:nth-of-type(1) {
    font-family: 'Georgia';
    font-weight: 400
}

.pulledQuote .newPulledQuote blockquote:nth-of-type(2) {
    text-transform: uppercase;
    font-size: 1em;
    font-style: normal;
    line-height: 1.675em;
    font-family: 'BrandonGrotesqueBold';
    letter-spacing: .05em
}

.pulledQuote .newPulledQuote hr {
    border-top: 1px solid #009cde;
    margin-top: 28px;
    margin-bottom: 20px;
    max-width: 620px
}

.text .cmp-text ul li.blue-box-style {
    list-style: none
}

.text .cmp-text ul li.blue-box-style::before {
    content: "";
    display: inline-block;
    height: 14px;
    width: 15px;
    background: url("../../../content/dam/corp/abbott/en-us/corpnewsroom/list-icon/Unlisted-Blue-icon.png");
    margin-right: 7px
}

.text .text__scroll-to-accordion {
    color: #017387;
    cursor: pointer
}

.text .text__scroll-to-accordion:hover,
.text .text__scroll-to-accordion:active {
    color: var(--text-color);
    outline: 0;
    text-decoration: none
}

.text.deluxe-filter-icon-variation {
    padding-top: 6px;
    padding-bottom: 5px;
    background: url(../../../content/dam/corp/abbott/en-in/product-filter-icon-green.png) no-repeat #fff;
    background-position: 3%;
    background-position-y: 45%;
    display: block;
    padding-left: 24px;
    padding-right: 5px;
    word-break: break-word;
    z-index: 997
}

@media only screen and (min-width:768px) {
    .text.deluxe-filter-icon-variation {
        border-bottom: 1px solid #d9dadb
    }
}

@media only screen and (max-width:767.98px) {
    .text.deluxe-filter-icon-variation {
        display: flex !important;
        margin-left: auto;
        margin-right: 0;
        margin-top: 10px
    }

    .text.deluxe-filter-icon-variation .cmp-text {
        flex: 0 0 100%
    }
}

@media only screen and (max-width:767.98px) {
    .text.deluxe-filter-icon-variation {
        display: flex !important;
        margin-left: auto;
        margin-right: 0
    }

    .text.deluxe-filter-icon-variation .cmp-text {
        flex: 0 0 100%
    }
}

.text.deluxe-filter-icon-variation .cmp-text * {
    margin: 0
}

@media only screen and (max-width:767.98px) {
    .text.deluxe-filter-icon-variation {
        background: url(../../../content/dam/corp/abbott/en-in/product-filter-icon-green.png) no-repeat #2a2b30;
        background-position: 51%;
        background-position-y: 11%;
        color: #78fa6f;
        display: inline-block;
        height: 36px;
        padding: 0;
        text-align: center;
        text-transform: uppercase;
        width: 46px
    }

    .text.deluxe-filter-icon-variation .cmp-text {
        padding-top: 17px
    }

    .text.deluxe-filter-icon-variation .cmp-text,
    .text.deluxe-filter-icon-variation .cmp-text * {
        font-size: .563rem
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {

    .text.deluxe-filter-icon-variation .cmp-text,
    .text.deluxe-filter-icon-variation .cmp-text * {
        font-size: .65rem
    }
}

.text.a-text--quote-rich .cmp-text {
    border-top: 1px solid #88888d;
    border-bottom: 1px solid #88888d;
    padding-top: 40px;
    padding-bottom: 2rem;
    position: relative;
    text-align: center
}

.text.a-text--quote-rich .cmp-text * {
    line-height: 1.4em
}

.text.a-text--quote-rich .cmp-text::before {
    content: "\201C";
    font-size: 4.75rem;
    font-family: 'Georgia';
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translate(-50%)
}

.text.text-word-break .cmp-text,
.text.text-word-break .cmp-text * {
    word-break: break-word
}

.text.a-text--hover-color-match .cmp-text a {
    color: var(--text-color) !important
}

.text.a-text--hover-color-match .cmp-text a:hover,
.text.a-text--hover-color-match .cmp-text a:active {
    color: var(--text-color);
    outline: 0;
    text-decoration: none
}

.text.a-text--hover-link-primaryblue-color-match .cmp-text a {
    color: #009cde !important
}

.text.a-text--hover-link-primaryblue-color-match .cmp-text a:hover,
.text.a-text--hover-link-primaryblue-color-match .cmp-text a:active {
    color: #009cde;
    outline: 0;
    text-decoration: none
}

.text.a-text--link-18 .cmp-text a,
.text.a-text--link-18 .cmp-text a * {
    font-size: 1.125rem
}

.text.a-text--remove-underline .cmp-text a:hover,
.text.a-text--remove-underline .cmp-text a:active {
    outline: 0;
    text-decoration: none
}

.text.a-text--hover-color-bastille .cmp-text a:hover,
.text.a-text--hover-color-bastille .cmp-text a:hover * {
    color: #2a2b33 !important
}

.text.a-text--hover-color-white .cmp-text a:hover {
    color: #fff !important
}

.text.a-text--link-color-lemon-yellow .cmp-text a {
    color: #fffc57 !important
}

.text.a-text--link-color-blue-lagoon .cmp-text a {
    color: #017387 !important
}

.text.a-text--link-hover-color .cmp-text a:hover {
    color: #2a6496 !important
}

.text.a-text--link__blue-lagoon .cmp-text a,
.text.a-text--link__blue-lagoon .cmp-text a * {
    color: #017387
}

.text.a-text--link__blue-lagoon .cmp-text a:hover,
.text.a-text--link__blue-lagoon .cmp-text a *:hover {
    color: inherit;
    outline: 0;
    text-decoration: none
}

.text.a-text--table-variation-2 table {
    border-collapse: collapse;
    width: 100%
}

.text.a-text--table-variation-2 table td img {
    margin-right: 05px;
    padding: 0
}

.text.a-text--table-variation-2 table td,
.text.a-text--table-variation-2 table th {
    border: 1px solid #fff;
    padding: 15px
}

.text.a-text--table-variation-2 table th {
    background-color: #6a737b;
    text-align: center
}

.text.a-text--table-variation-2 table tr:nth-child(odd) {
    background-color: #e6e6e6
}

.text[class*="a-text__table-color"] table,
.text[class*="a-text__table-color"] th,
.text[class*="a-text__table-color"] td {
    border-collapse: collapse;
    border: 1px #c7c39f dotted;
    text-align: center;
    padding: 13px 1px 16px 1px
}

.text[class*="a-text__table-color"] table th,
.text[class*="a-text__table-color"] th th,
.text[class*="a-text__table-color"] td th {
    background-color: #e2e7f2
}

.text.a-text__table-color--light-steel-blue table th {
    color: #4e65a7
}

.text.a-text__table-color--yellow table th {
    color: #ffd100
}

.text.a-text__table-color--dark-yellow table th {
    color: #ded548
}

.text.a-text__table-color--green table th {
    color: #7ccc6c
}

.text.a-text__table-color--dark-green table th {
    color: #00b140
}

.text.a-text__table-color--fuscia table th {
    color: #aa0061
}

.text.a-text__table-color--dark-fuscia table th {
    color: #470a68
}

.text.a-text__table-color--orange table th {
    color: #e4002b
}

.text.a-text__table-color--cyan table th {
    color: #5bc2e7
}

.text.a-text__table-color--blue table th {
    color: #004f71
}

.text.a-text__table-color--gray table th {
    color: #63666a
}

.text.a-text__table-color--dark-gray table th {
    color: #222731
}

.text.a-text__table-color--primary-blue table th {
    color: #009cde
}

.text.a-text__table-color--mint table th {
    color: #64ccc9
}

.text.a-text__table-color--white table th {
    color: #fff
}

.text.a-text__table-color--bastille table th {
    color: #2a2b33
}

.text.background-theme-color--light-blue {
    --text-bg-color: #5bc2e7
}

.text.background-theme-color--medium-blue {
    --text-bg-color: #004f71
}

.text.background-theme-color--primary-blue {
    --text-bg-color: #009cde
}

.text.background-theme-color--dark-blue {
    --text-bg-color: #002a3a
}

.text.background-theme-color--mint {
    --text-bg-color: #64ccc9
}

.text.background-theme-color--light-gray {
    --text-bg-color: #d9d9d6
}

.text.background-theme-color--dark-gray {
    --text-bg-color: #222731
}

.text.background-theme-color--medium-gray {
    --text-bg-color: #939799
}

.text.background-theme-color--black {
    --text-bg-color: #000
}

.text.background-theme-color--magenta {
    --text-bg-color: #aa0061
}

.text.background-theme-color--purple {
    --text-bg-color: #470a68
}

.text.background-theme-color--light-green {
    --text-bg-color: #7ccc6c
}

.text.background-theme-color--medium-green {
    --text-bg-color: #00b140
}

.text.background-theme-color--green {
    --text-bg-color: #7ccc6c
}

.text.background-theme-color--red {
    --text-bg-color: #e4002b
}

.text.background-theme-color--gold {
    --text-bg-color: #eeb33b
}

.text.background-theme-color--yellow {
    --text-bg-color: #ffd100
}

.text.background-theme-color--white {
    --text-bg-color: #fff
}

.text.a-text-color--light-teal .cmp-text,
.text.a-text-color--light-teal .cmp-text * {
    --text-color: #00747e
}

.text.a-text-color--dark-charcoal .cmp-text,
.text.a-text-color--dark-charcoal .cmp-text * {
    --text-color: #333
}

.text.a-text-color--brand-logo-panel-grey .cmp-text,
.text.a-text-color--brand-logo-panel-grey .cmp-text * {
    --text-color: #615e61
}

.text.a-text-color--pantone-grey .cmp-text,
.text.a-text-color--pantone-grey .cmp-text * {
    --text-color: #888b8d
}

.text.a-text-color--yellow .cmp-text,
.text.a-text-color--yellow .cmp-text * {
    --text-color: #ffd100
}

.text.a-text-color--dark-yellow .cmp-text,
.text.a-text-color--dark-yellow .cmp-text * {
    --text-color: #ded548
}

.text.a-text-color--green .cmp-text,
.text.a-text-color--green .cmp-text * {
    --text-color: #7ccc6c
}

.text.a-text-color--dark-green .cmp-text,
.text.a-text-color--dark-green .cmp-text * {
    --text-color: #00b140
}

.text.a-text-color--fuscia .cmp-text,
.text.a-text-color--fuscia .cmp-text * {
    --text-color: #aa0061
}

.text.a-text-color--dark-fuscia .cmp-text,
.text.a-text-color--dark-fuscia .cmp-text * {
    --text-color: #470a68
}

.text.a-text-color--orange .cmp-text,
.text.a-text-color--orange .cmp-text * {
    --text-color: #e4002b
}

.text.a-text-color--blue .cmp-text,
.text.a-text-color--blue .cmp-text * {
    --text-color: #004f71
}

.text.a-text-color--gray .cmp-text,
.text.a-text-color--gray .cmp-text * {
    --text-color: #63666a
}

.text.a-text-color--dark-gray .cmp-text,
.text.a-text-color--dark-gray .cmp-text * {
    --text-color: #222731
}

.text.a-text-color--light-gray .cmp-text,
.text.a-text-color--light-gray .cmp-text * {
    --text-color: #d9d9d6
}

.text.a-text-color--medium-gray .cmp-text,
.text.a-text-color--medium-gray .cmp-text * {
    --text-color: #939799
}

.text.a-text-color--button-gray .cmp-text,
.text.a-text-color--button-gray .cmp-text * {
    --text-color: #63666b
}

.text.a-text-color--cyan .cmp-text,
.text.a-text-color--cyan .cmp-text * {
    --text-color: #5bc2e7
}

.text.a-text-color--light-pink .cmp-text,
.text.a-text-color--light-pink .cmp-text * {
    --text-color: #f5889d
}

.text.a-text-color--dark-cyan .cmp-text,
.text.a-text-color--dark-cyan .cmp-text * {
    --text-color: #007589
}

.text.a-text-color--primary-blue .cmp-text,
.text.a-text-color--primary-blue .cmp-text * {
    --text-color: #009cde
}

.text.a-text-color--button-hover-blue .cmp-text,
.text.a-text-color--button-hover-blue .cmp-text * {
    --text-color: #019cde
}

.text.a-text-color--mint .cmp-text,
.text.a-text-color--mint .cmp-text * {
    --text-color: #64ccc9
}

.text.a-text-color--white .cmp-text,
.text.a-text-color--white .cmp-text * {
    --text-color: #fff
}

.text.a-text-color--black .cmp-text,
.text.a-text-color--black .cmp-text * {
    --text-color: #000
}

.text.a-text-color--bastille .cmp-text,
.text.a-text-color--bastille .cmp-text * {
    --text-color: #2a2b33
}

.text.a-text-color--quotes-grey .cmp-text,
.text.a-text-color--quotes-grey .cmp-text * {
    --text-color: #88888d
}

.text.a-text-color--blue-lagoon .cmp-text,
.text.a-text-color--blue-lagoon .cmp-text * {
    --text-color: #017387
}

.text.a-text-color--gold .cmp-text,
.text.a-text-color--gold .cmp-text * {
    --text-color: #eeb33b
}

.text.a-text-color--mischka .cmp-text,
.text.a-text-color--mischka .cmp-text * {
    --text-color: #a4a5a7
}

.text.a-text--remove-list-color .cmp-text,
.text.a-text--remove-list-color ul,
.text.a-text--remove-list-color li {
    --text-color: unset !important
}

.text.a-text-margin--remove-bottom {
    margin-bottom: 0 !important
}

.text.a-text-margin--remove-bottom .cmp-text,
.text.a-text-margin--remove-bottom p,
.text.a-text-margin--remove-bottom h1,
.text.a-text-margin--remove-bottom h2,
.text.a-text-margin--remove-bottom h3,
.text.a-text-margin--remove-bottom h4,
.text.a-text-margin--remove-bottom h5,
.text.a-text-margin--remove-bottom h6 {
    margin-bottom: 0 !important
}

.text.a-text--flags-variation tr {
    display: flex
}

.text.a-text--flags-variation tr td {
    flex: 0 0 20%;
    padding-right: 10px
}

@media only screen and (min-width:992px) {
    .text.a-text--flags-variation tr td {
        padding-right: 40px
    }
}

.text.a-text--flags-variation tr td img {
    padding-bottom: 10px
}

.text.a-text--flags-variation tr td a {
    text-decoration: none
}

.text.a-text-margin--remove-top {
    margin-top: 0 !important
}

.text.a-text-margin--remove-top .cmp-text,
.text.a-text-margin--remove-top p,
.text.a-text-margin--remove-top h1,
.text.a-text-margin--remove-top h2,
.text.a-text-margin--remove-top h3,
.text.a-text-margin--remove-top h4,
.text.a-text-margin--remove-top h5,
.text.a-text-margin--remove-top h6 {
    margin-top: 0 !important
}

.text.a-text-variation--articlebreifnew {
    padding: 20px;
    border: 1px solid #d9d9d6;
    border-top: 0
}

@media only screen and (max-width:991.98px) {
    .text.a-text-variation--articlebreifnew {
        height: 150px !important
    }
}

@media only screen and (min-width:992px) {
    .text.a-text-variation--articlebreifnew {
        height: 120px !important
    }
}

.text.a-text-variation--articlebreifnew .cmp-text,
.text.a-text-variation--articlebreifnew p,
.text.a-text-variation--articlebreifnew h1,
.text.a-text-variation--articlebreifnew h2,
.text.a-text-variation--articlebreifnew h3,
.text.a-text-variation--articlebreifnew h4,
.text.a-text-variation--articlebreifnew h5,
.text.a-text-variation--articlebreifnew h6 {
    min-height: 70px
}

@media only screen and (max-width:767.98px) {

    .text.a-text-variation--articlebreifnew .cmp-text,
    .text.a-text-variation--articlebreifnew p,
    .text.a-text-variation--articlebreifnew h1,
    .text.a-text-variation--articlebreifnew h2,
    .text.a-text-variation--articlebreifnew h3,
    .text.a-text-variation--articlebreifnew h4,
    .text.a-text-variation--articlebreifnew h5,
    .text.a-text-variation--articlebreifnew h6 {
        min-height: 0
    }
}

.text.text-align .cmp-text {
    width: 75%;
    margin: 0 auto;
    clear: both
}

.text.text-dir--right .cmp-text {
    direction: rtl
}

.text.text--variation-article {
    border-bottom: 1px solid #63666a;
    border-top: 1px solid #63666a;
    padding: 10px
}

.text.text--variation-article .cmp-text {
    max-height: 330px;
    overflow-y: auto;
    padding-right: 10px
}

.text.text--variation-article .cmp-text::-webkit-scrollbar {
    width: 9px
}

.text.text--variation-article .cmp-text::-webkit-scrollbar-thumb {
    background-color: #63666a;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff
}

.text.text--variation-article .cmp-text::-webkit-scrollbar-track {
    background: #63666a;
    border-left: 4px solid #fff;
    border-right: 4px solid #fff
}

.text.a-text-variation--global-sites .cmp-text ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding-left: 0
}

.text.a-text-variation--global-sites .cmp-text ul li {
    display: inline-block;
    min-height: 32px;
    margin-bottom: 14px;
    padding-right: 10px;
    width: 16%
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .text.a-text-variation--global-sites .cmp-text ul li {
        width: calc(19% - 10px)
    }
}

@media only screen and (max-width:767.98px) {
    .text.a-text-variation--global-sites .cmp-text ul li {
        width: calc(50% - 10px)
    }
}

.text.a-text-variation--global-sites .cmp-text ul li a {
    color: #000;
    display: block;
    line-height: 1em;
    text-decoration: none;
    text-transform: uppercase
}

.text.a-text--hover-color-black .cmp-text a:hover {
    color: #000 !important
}

.text.footer-text .cmp-text p {
    margin-bottom: 5px;
    line-height: 1rem;
    padding-bottom: 4px;
    padding-top: 4px;
    color: #a4a5a9
}

@media only screen and (min-width:768px) {
    .text.footer-text .cmp-text p {
        color: #d9d9d6;
        font-size: 1em
    }
}

.text.footer-text .cmp-text h5 {
    color: #c6c6c9;
    font-weight: 400
}

.text.footer-text .cmp-text * {
    font-size: .8em;
    color: #d9d9d6
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .text.footer-text .cmp-text * {
        font-size: .6em
    }
}

@media only screen and (max-width:767.98px) {
    .text.footer-text .cmp-text * {
        font-size: .75em
    }
}

.text.header-text {
    display: block;
    max-width: 1440px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999
}

.text.header-text .cmp-text {
    padding: 5px 40px
}

.text.article-subheading--color-gray .cmp-text a {
    color: #63666a
}

.text.article-subheading--color-gray .cmp-text a:hover {
    color: #63666a
}

.text.article-subheading--color-light-blue .cmp-text a {
    color: #5bc2e7
}

.text.article-subheading--color-light-blue .cmp-text a:hover {
    color: #5bc2e7
}

.text.article-subheading--color-medium-green .cmp-text a {
    color: #00b140
}

.text.article-subheading--color-medium-green .cmp-text a:hover {
    color: #00b140
}

.text.article-subheading--color-red .cmp-text a {
    color: #e4002b
}

.text.article-subheading--color-red .cmp-text a:hover {
    color: #e4002b
}

.text.article-subheading--color-gold .cmp-text a {
    color: #eeb33b
}

.text.article-subheading--color-gold .cmp-text a:hover {
    color: #eeb33b
}

.text.article-subheading--color-medium-blue .cmp-text a {
    color: #004f71
}

.text.article-subheading--color-medium-blue .cmp-text a:hover {
    color: #004f71
}

.text.article-subheading--color-fuscia .cmp-text a {
    color: #aa0061
}

.text.article-subheading--color-fuscia .cmp-text a:hover {
    color: #aa0061
}

.text.article-subheading--color-mint .cmp-text a {
    color: #64ccc9
}

.text.article-subheading--color-mint .cmp-text a:hover {
    color: #64ccc9
}

.text.article-subheading--color-purple .cmp-text a {
    color: #470a68
}

.text.article-subheading--color-purple .cmp-text a:hover {
    color: #470a68
}

.text.article-subheading .cmp-text * {
    font-size: 1.25rem;
    font-family: 'BrandonGrotesqueBold'
}

.text.article-subheading .cmp-text *:not(a) {
    font-family: 'BrandonGrotesqueMedium'
}

.text.m-text-fontsize--20px .cmp-text p {
    font-size: 1.25rem;
    line-height: 1.5
}

.text.m-text-fontsize--20px .cmp-text ul li {
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0 0 15px
}

.text.m-text-fontsize--20px .cmp-text ol li {
    font-size: 1.25rem;
    line-height: 1.5
}

.text.m-text-fontsize--20px h5 {
    font-size: 1.25rem
}

.text #about-fund-text {
    width: 100%
}

@media only screen and (min-width:1200px) {
    .text.text-90px .cmp-text h1 {
        font-size: 5.625rem
    }
}

.text.text-30px .cmp-text h3 {
    font-size: 1.875rem
}

.text.text-corpnewsroom-header .cmp-text {
    padding: 10px 0 4px
}

.text.text-corpnewsroom-header .cmp-text p {
    line-height: 1.275rem
}

@media only screen and (min-width:992px) {
    .text.text-corp-16px .cmp-text h4 {
        font-size: 1rem
    }
}

.text.text-corp-14px .cmp-text p {
    font-size: .875rem
}

.text.text-corp-11px .cmp-text p {
    font-size: .688rem;
    line-height: 1.3
}

@media only screen and (min-width:768px) {

    .text.text-corp-19px .cmp-text h4,
    .text.text-corp-19px .cmp-text p {
        font-size: 1.188rem
    }
}

.text.text-line-height-1-2 .cmp-text p {
    line-height: 1.2
}

.text.text-line-height-1-2 .cmp-text li {
    line-height: 1.2
}

.text.text-line-height-1-5 .cmp-text p {
    line-height: 1.5
}

.text.text-line-height-1-5 .cmp-text li {
    line-height: 1.5
}

.text.text-link-color .cmp-text a {
    color: #428bca
}

.text.text-link-color .cmp-text li a {
    color: #428bca
}

.text #eudpoforms-link ul {
    padding-left: 25px
}

.text #eudpoforms-link ul li {
    line-height: 1.1rem
}

@media only screen and (max-width:575.98px) {
    .mobile {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .ipadview {
        display: block !important
    }
}

.columncontrol.align-single-line .container {
    padding-right: 0
}

.columncontrol.align-single-line .container .row {
    justify-content: space-between
}

@media only screen and (min-width:992px) {
    .columncontrol.align-single-line .container .row .columncontrol__column {
        flex: 0 0 auto;
        max-width: max-content
    }
}

.columncontrol.align-single-line .container .cmp-text * {
    font-size: 1rem
}

.columncontrol.align-single-line .container .columncontrol__column {
    padding: 0
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.align-single-line .container .columncontrol__column {
        margin-bottom: 0;
        max-width: 33.33%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.align-single-line .container .columncontrol__column {
        margin-bottom: 0 !important
    }

    .columncontrol.align-single-line .container .row {
        justify-content: flex-start
    }

    .columncontrol.align-single-line .container .col-md-6 {
        max-width: 33.33%
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.mob-column-reverse .row {
        flex-direction: column-reverse !important
    }
}

.columncontrol.more-information-panel-variation .imghover:hover .cmp-image__image {
    transform: unset
}

@media only screen and (max-width:767.98px) {
    .columncontrol.more-information-panel-variation .row {
        margin: 0 10px !important
    }

    .columncontrol.more-information-panel-variation .row .image {
        max-width: 180px;
        width: 40%
    }

    .columncontrol.more-information-panel-variation .row .image .img-container {
        position: unset
    }

    .columncontrol.more-information-panel-variation .row .image .cmp-image__image {
        height: 100px
    }
}

.columncontrol.more-information-panel-variation .columncontrol__column {
    border: 1px solid #ccc;
    height: 420px;
    padding: 0 !important
}

.columncontrol.more-information-panel-variation .columncontrol__column .text {
    margin: 0;
    padding: 10px
}

@media only screen and (max-width:767.98px) {
    .columncontrol.more-information-panel-variation .columncontrol__column .text {
        width: 60%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.more-information-panel-variation .columncontrol__column {
        height: 450px
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.more-information-panel-variation .columncontrol__column {
        height: auto
    }
}

@media only screen and (min-width:992px) {
    .columncontrol.more-information-panel-variation .columncontrol__column {
        margin-right: 20px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.more-information-panel-variation .columncontrol__column {
        flex: 0 0 30%;
        max-width: 30%;
        margin-right: 10px;
        padding: 0
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.more-information-panel-variation .columncontrol__column {
        display: flex;
        flex-direction: row-reverse;
        margin: 10px 0 !important
    }
}

.columncontrol.more-information-panel-variation .columncontrol__column:hover {
    background: #d9d9d7
}

.columncontrol.more-information-panel-variation .columncontrol__column:hover .image-text--top {
    background: #000;
    height: 100%;
    opacity: .6;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%
}

.columncontrol.deluxe-filter-tabs-alignment {
    margin: 0
}

.columncontrol.deluxe-filter-tabs-alignment .row {
    align-items: end
}

@media only screen and (max-width:767.98px) {
    .columncontrol.deluxe-filter-tabs-alignment .row {
        align-items: start;
        flex-direction: row !important
    }

    .columncontrol.deluxe-filter-tabs-alignment .row .columncontrol__column:first-child {
        width: 80%
    }

    .columncontrol.deluxe-filter-tabs-alignment .row .columncontrol__column:last-child {
        width: 20%
    }
}

.columncontrol.deluxe-filter-tabs-alignment .row .columncontrol__column {
    margin: 0 !important
}

.columncontrol.deluxe-filter-tabs-alignment .row .columncontrol__column .m-link-stack--content {
    padding-top: 0
}

@media only screen and (max-width:767.98px) {
    .columncontrol.deluxe-filter-tabs-alignment .row .columncontrol__column {
        flex: unset;
        max-width: unset
    }

    .columncontrol.deluxe-filter-tabs-alignment .row .columncontrol__column .m-link-stack--content {
        --link-stack-tablet-spacing-top: 0
    }
}

.columncontrol.deluxe-filter-tabs-alignment .row .m-link-stack--header {
    display: none
}

.columncontrol.deluxe-filter-variation .experiencefragment .cmp-container {
    padding: 0
}

@media only screen and (max-width:767.98px) {
    .columncontrol.deluxe-filter-variation .navigation>div {
        display: flex;
        flex-wrap: wrap
    }

    .columncontrol.deluxe-filter-variation .navigation>div .m-mega-menu__item {
        width: 50%
    }

    .columncontrol.deluxe-filter-variation .navigation>div .m-mega-menu__item .nav-link {
        word-wrap: break-word
    }
}

.columncontrol.deluxe-filter-variation .navigation {
    background-color: #f4f4f4
}

@media only screen and (max-width:991.98px) {
    .columncontrol.deluxe-filter-variation .navigation .m-mega-menu__item.m-mega-menu__mobile-item {
        display: none !important
    }
}

.columncontrol.deluxe-filter-variation .navigation .m-mega-menu__item * {
    color: #00747e;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase
}

@media only screen and (max-width:991.98px) {
    .columncontrol.deluxe-filter-variation .navigation .m-mega-menu__item {
        display: block !important
    }
}

.columncontrol.deluxe-filter-variation .navigation .m-mega-menu__item .nav-item,
.columncontrol.deluxe-filter-variation .navigation .m-mega-menu__item a {
    word-wrap: break-word
}

.columncontrol.deluxe-filter-variation .navigation .m-mega-menu__item .nav-item.delux-active,
.columncontrol.deluxe-filter-variation .navigation .m-mega-menu__item a.delux-active {
    color: #2a2b33;
    pointer-events: none
}

@media only screen and (max-width:767.98px) {

    .columncontrol.deluxe-filter-variation .navigation .m-mega-menu__item .nav-item.delux-alphabet-variation-active,
    .columncontrol.deluxe-filter-variation .navigation .m-mega-menu__item a.delux-alphabet-variation-active {
        border: 1px solid #aacdd0
    }
}

.columncontrol.deluxe-filter-variation .navigation .m-mega-menu__item .nav-item:hover {
    color: #2a2b33
}

@media only screen and (max-width:767.98px) {
    .columncontrol.stories-mob-variation .columncontrol__column {
        align-items: center;
        border-bottom: 1px solid #888b8d;
        display: flex;
        flex-direction: row-reverse
    }

    .columncontrol.stories-mob-variation .columncontrol__column:hover .img-container {
        position: unset !important
    }

    .columncontrol.stories-mob-variation .columncontrol__column:hover .img-container .image-text {
        position: unset !important
    }

    .columncontrol.stories-mob-variation .columncontrol__column:hover .img-container .image-text .toggle-overlay {
        display: block !important
    }

    .columncontrol.stories-mob-variation .columncontrol__column .image {
        margin: 0 !important;
        padding: 10px 5px 10px 0;
        width: 30%
    }

    .columncontrol.stories-mob-variation .columncontrol__column .text {
        margin: 0 !important;
        padding: 10px 20px 10px 5px;
        width: 70%
    }

    .columncontrol.stories-mob-variation .columncontrol__column .text .cmp-text * {
        margin: 0 !important
    }

    .columncontrol.stories-mob-variation .columncontrol__column .text .cmp-text,
    .columncontrol.stories-mob-variation .columncontrol__column .text .cmp-text * {
        font-family: 'BrandonGrotesqueBold';
        line-height: 1.37em;
        text-transform: uppercase
    }
}

.columncontrol.panel-rotation-variation .columncontrol__column .image {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .image .cmp-image .image-text--top {
    display: block;
    font-family: 'Microsoft YaHei';
    z-index: 1;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../../../content/dam/corp/abbott/global/gradient.png);
    background-repeat: repeat-x;
    padding-left: 20px;
    padding-top: 20px
}

.columncontrol.panel-rotation-variation .columncontrol__column .image .cmp-image .image-text--top h1,
.columncontrol.panel-rotation-variation .columncontrol__column .image .cmp-image .image-text--top h2,
.columncontrol.panel-rotation-variation .columncontrol__column .image .cmp-image .image-text--top h3,
.columncontrol.panel-rotation-variation .columncontrol__column .image .cmp-image .image-text--top h4,
.columncontrol.panel-rotation-variation .columncontrol__column .image .cmp-image .image-text--top h5,
.columncontrol.panel-rotation-variation .columncontrol__column .image .cmp-image .image-text--top h6 {
    font-family: 'Microsoft YaHei';
    font-weight: 700
}

.columncontrol.panel-rotation-variation .columncontrol__column .image .cmp-image .image-text--top p {
    display: none
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover {
    background-color: #282931 !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .cmp-image__image {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 400ms;
    transition-timing-function: ease-in-out;
    transition-delay: 0;
    display: block
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top p {
    display: block !important;
    font-family: 'Georgia';
    margin-right: 30px
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h6 * {
    color: #004f71 !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h6 * {
    color: #009cde !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h6 * {
    color: #7ccc6c !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h6 * {
    color: #ffd100 !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h6 * {
    color: #e4002b !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h6 * {
    color: #5bc2e7 !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h6 * {
    color: #63666a !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h6 * {
    color: #470a68 !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h6 * {
    color: #e4002b !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h6 * {
    color: #ccc !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h6 * {
    color: #aa0061 !important
}

.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h1,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h1 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h2,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h2 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h3,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h3 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h4,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h4 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h5,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h5 *,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h6,
.columncontrol.panel-rotation-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h6 * {
    color: #64ccc9 !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .image {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .image .cmp-image .image-text--top {
    display: block;
    font-family: 'Microsoft YaHei';
    z-index: 1;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(../../../content/dam/corp/abbott/global/gradient.png);
    background-repeat: repeat-x;
    padding-left: 20px;
    padding-top: 20px
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .image .cmp-image .image-text--top h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .image .cmp-image .image-text--top h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .image .cmp-image .image-text--top h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .image .cmp-image .image-text--top h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .image .cmp-image .image-text--top h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .image .cmp-image .image-text--top h6 {
    font-family: 'Microsoft YaHei';
    font-weight: 700
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .image .cmp-image .image-text--top p {
    display: none
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover {
    background-color: #282931 !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .cmp-image__image {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 400ms;
    transition-timing-function: ease-in-out;
    transition-delay: 0;
    display: block
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top p {
    display: block !important;
    font-family: 'Georgia';
    margin-right: 30px
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-blue h6 * {
    color: #004f71 !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-primary-blue h6 * {
    color: #009cde !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-green h6 * {
    color: #7ccc6c !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-yellow h6 * {
    color: #ffd100 !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-orange h6 * {
    color: #e4002b !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-cyan h6 * {
    color: #5bc2e7 !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-gray h6 * {
    color: #63666a !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-purple h6 * {
    color: #470a68 !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-red h6 * {
    color: #e4002b !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-silver h6 * {
    color: #ccc !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-magenta h6 * {
    color: #aa0061 !important
}

.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h1,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h1 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h2,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h2 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h3,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h3 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h4,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h4 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h5,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h5 *,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h6,
.columncontrol.panel-rotation-transparent-variation .columncontrol__column .cmp-image:hover .image-text--top.image-text--hover-heading-mint h6 * {
    color: #64ccc9 !important
}

.columncontrol.panel-rotation-transparent-variation .cmp-image:hover .cmp-image__image {
    opacity: .5 !important
}

@media only screen and (max-width:767.98px) {

    .columncontrol.panel-rotation-transparent-variation-2 .columncontrol__column .image .cmp-image:active,
    .columncontrol.panel-rotation-transparent-variation-2 .columncontrol__column .image .cmp-image:focus {
        background-color: unset !important
    }

    .columncontrol.panel-rotation-transparent-variation-2 .columncontrol__column .image .cmp-image:active .img-container .cmp-image__image,
    .columncontrol.panel-rotation-transparent-variation-2 .columncontrol__column .image .cmp-image:focus .img-container .cmp-image__image {
        opacity: .5 !important
    }

    .columncontrol.panel-rotation-transparent-variation-2 .columncontrol__column .cmp-image:hover .img-container .image-text--top p {
        display: none !important
    }
}

.columncontrol.brand-logo-variation .columncontrol__column .text .cmp-text * {
    line-height: 1.2;
    word-wrap: break-word
}

@media only screen and (max-width:767.98px) {
    .columncontrol.brand-logo-variation .columncontrol__column {
        align-items: start;
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 0 !important
    }

    .columncontrol.brand-logo-variation .columncontrol__column .container {
        padding: 0 !important
    }

    .columncontrol.brand-logo-variation .columncontrol__column .logo {
        padding: 10px 0 10px 10px;
        margin: 0 !important;
        width: 40%
    }

    .columncontrol.brand-logo-variation .columncontrol__column .logo .a-logo-comp {
        width: 100%
    }

    .columncontrol.brand-logo-variation .columncontrol__column .logo .a-logo-comp .a-logo-comp--image {
        display: inline-block;
        min-height: 60px;
        width: 123px
    }

    .columncontrol.brand-logo-variation .columncontrol__column .logo .a-logo-comp .a-logo-comp--link {
        display: inline-block;
        width: 100%
    }

    .columncontrol.brand-logo-variation .columncontrol__column .text {
        padding: 12px 0 12px 12px;
        margin: 0 !important;
        width: 60%
    }

    .columncontrol.brand-logo-variation .columncontrol__column .text .cmp-text * {
        line-height: 1.2;
        text-align: left !important;
        word-wrap: break-word
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.col-reverse-mob .container .row {
        flex-direction: column-reverse
    }
}

.columncontrol.col-reverse-mob .columncontrol__column {
    padding-right: 0 !important
}

@media only screen and (max-width:991.98px) {
    .columncontrol.socialmedia-with-feed--hide .row .columncontrol__column:first-child {
        display: none
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol .hide-mobile {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-primary-blue .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-primary-blue .column-divider::after {
    --column-border-light: 2px dashed #009cde;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-primary-blue .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-dark-yellow .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-dark-yellow .column-divider::after {
    --column-border-light: 2px dashed #ded548;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-dark-yellow .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-cyan .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-cyan .column-divider::after {
    --column-border-light: 2px dashed #007589;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-cyan .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-green .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-green .column-divider::after {
    --column-border-light: 2px dashed #7ccc6c;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-green .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-dark-green .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-dark-green .column-divider::after {
    --column-border-light: 2px dashed #00b140;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-dark-green .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-fuscia .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-fuscia .column-divider::after {
    --column-border-light: 2px dashed #aa0061;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-fuscia .column-divider::after {
        display: none
    }
}

.columncontrol.column-divider-color--corp-dark-fuscia .column-divider::after {
    --column-border-light: 2px dashed #470a68;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-dark-fuscia .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-orange .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-orange .column-divider::after {
    --column-border-light: 2px dashed #e4002b;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-orange .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-dark-orange .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-dark-orange .column-divider::after {
    --column-border-light: 2px dashed #eeb33b;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-dark-orange .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-gray .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-gray .column-divider::after {
    --column-border-light: 2px dashed #63666a;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-gray .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-blue .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-blue .column-divider::after {
    --column-border-light: 2px dashed #004f71;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-blue .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-dark-gray .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-dark-gray .column-divider::after {
    --column-border-light: 2px dashed #222731;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-dark-gray .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-mint .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-mint .column-divider::after {
    --column-border-light: 2px dashed #64ccc9;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-mint .column-divider::after {
        display: none
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol.column-divider-color--corp-black .column-divider:nth-child(2n + 2)::after {
        display: block !important
    }
}

.columncontrol.column-divider-color--corp-black .column-divider::after {
    --column-border-light: 2px dashed #000;
    height: 100%
}

@media only screen and (max-width:575.98px) {
    .columncontrol.column-divider-color--corp-black .column-divider::after {
        display: none
    }
}

.columncontrol.column-spacing--15 .row .columncontrol__column {
    padding-left: 7.5px;
    padding-right: 7.5px
}

.columncontrol.column-spacing--7 .row .columncontrol__column {
    padding-left: 3.5px;
    padding-right: 3.5px
}

.columncontrol.column-spacing--0 .row .columncontrol__column {
    padding-left: 0;
    padding-right: 0
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-mob-spacing--7 .row .columncontrol__column {
        margin-bottom: 7px !important
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-mob-spacing--15 .row .columncontrol__column {
        margin-bottom: 15px !important
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-mob-spacing--0 .row .columncontrol__column {
        margin-bottom: 0 !important
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.column-tablet-spacing--0 .row .columncontrol__column {
        margin-bottom: 0 !important
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-mob-remove--bottom-spacing .row .columncontrol__column {
        margin-bottom: 0 !important
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-mob-remove--top-spacing .row .columncontrol__column {
        margin-top: 0 !important
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-remove-mob--left-spacing+.container {
        padding-left: 0
    }

    .columncontrol.column-remove-mob--left-spacing .columncontrol__column {
        padding-left: 0
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-remove-mob--right-spacing+.container {
        padding-right: 0
    }

    .columncontrol.column-remove-mob--right-spacing .columncontrol__column {
        padding-right: 0
    }
}

@media only screen and (min-width:768px) {
    .columncontrol.column-remove--left-spacing+.container {
        padding-left: 0
    }

    .columncontrol.column-remove--left-spacing .columncontrol__column {
        padding-left: 0 !important
    }
}

@media only screen and (min-width:768px) {
    .columncontrol.column-remove--right-spacing+.container {
        padding-right: 0
    }

    .columncontrol.column-remove--right-spacing .columncontrol__column {
        padding-right: 0 !important
    }
}

@media only screen and (min-width:768px) {
    .columncontrol.column-remove--around-spacing>.container {
        padding-left: 0;
        padding-right: 0
    }

    .columncontrol.column-remove--around-spacing>.container>.row>.columncontrol__column:first-child {
        padding-left: 0
    }

    .columncontrol.column-remove--around-spacing>.container>.row>.columncontrol__column:last-child {
        padding-right: 0
    }
}

@media only screen and (min-width:768px) {
    .columncontrol.column-variation--hero-banner-col>.container>.row>.columncontrol__column {
        padding-left: 3.5px;
        padding-right: 3.5px
    }

    .columncontrol.column-variation--hero-banner-col>.container>.row>.columncontrol__column:first-child {
        padding-left: 0
    }

    .columncontrol.column-variation--hero-banner-col>.container>.row>.columncontrol__column:last-child {
        padding-right: 0
    }

    .columncontrol.column-variation--hero-banner-col>.container>.row>.columncontrol__column .image {
        height: 100%
    }

    .columncontrol.column-variation--hero-banner-col>.container>.row>.columncontrol__column .image .cmp-image {
        height: 100%
    }

    .columncontrol.column-variation--hero-banner-col>.container>.row>.columncontrol__column .image .cmp-image .img-container {
        height: 100%
    }

    .columncontrol.column-variation--hero-banner-col>.container>.row>.columncontrol__column .image .cmp-image .img-container .overlay-hover {
        height: 100%
    }

    .columncontrol.column-variation--hero-banner-col>.container>.row>.columncontrol__column .image .cmp-image .img-container .overlay-hover .cmp-image__link {
        display: block;
        height: 100%
    }

    .columncontrol.column-variation--hero-banner-col>.container>.row>.columncontrol__column .image .cmp-image .img-container .overlay-hover .cmp-image__link .imghover {
        height: 100%
    }

    .columncontrol.column-variation--hero-banner-col>.container>.row>.columncontrol__column .image .cmp-image .img-container .overlay-hover .cmp-image__link .imghover .cmp-image__image {
        height: 100%
    }
}

@media only screen and (min-width:768px) {
    .columncontrol.column-spacing--9>.container>.row>.columncontrol__column {
        padding-left: 4.5px;
        padding-right: 4.5px
    }
}

.columncontrol.content-left-spacing--25 .columncontrol__column .image-title {
    left: 25px
}

@media only screen and (min-width:768px) {
    .columncontrol.investment-column-height-variation .columncontrol__column {
        max-height: 536px
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.column-ipad-spacing--25px .columncontrol__column {
        padding-left: 25px;
        padding-right: 25px
    }
}

.columncontrol.column-align-content--middle .columncontrol__column {
    margin-bottom: auto;
    margin-top: auto
}

.columncontrol.column-align-content--bottom .columncontrol__column {
    margin-bottom: 0;
    margin-top: auto
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-mob-fluid-container+.container {
        max-width: 100%
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-mob-col-6 .columncontrol__column.col-12 {
        flex: 0 0 50%
    }
}

@media only screen and (min-width:768px) {
    .columncontrol.column-control-variation--make-difference .columncontrol__column.col-12.col-md-9.col-lg-9 {
        display: flex;
        flex-wrap: wrap
    }
}

@media only screen and (min-width:768px) {
    .columncontrol.column-control-variation--make-difference .columncontrol__column.col-12.col-md-9.col-lg-9 .container.a-container {
        flex: 0 0 50%;
        margin: 0;
        padding: 5px 10px 5px 0
    }
}

.columncontrol.column-control-variation--make-difference .columncontrol__column.col-12.col-md-9.col-lg-9 .container.a-container .cmp-container {
    padding: 0
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-control-variation--make-difference .columncontrol__column.col-md-3.col-lg-3 {
        margin: 0
    }

    .columncontrol.column-control-variation--make-difference .columncontrol__column,
    .columncontrol.column-control-variation--make-difference .columncontrol__column .container.a-container {
        padding: 5px 0
    }
}

.columncontrol.column-control-image-alignment .columncontrol__column {
    width: 100% !important
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.column-control-image-alignment .columncontrol__column {
        flex: 0 0 100%;
        margin-bottom: 0
    }
}

.columncontrol.column-control-image-alignment .columncontrol__column .m-card {
    margin-bottom: 2.5rem !important;
    margin-top: 0 !important
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.column-control-image-alignment .columncontrol__column .m-card {
        display: inline-block;
        width: 49.5%;
        max-width: 50%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.column-control-image-alignment .columncontrol__column .m-card .m-card-link {
        display: inline-block;
        text-align: left
    }

    .columncontrol.column-control-image-alignment .columncontrol__column .m-card .m-card-link .m-card__body {
        padding: 5px
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-control-image-alignment .columncontrol__column .m-card .m-card-link {
        padding-bottom: 1rem !important
    }
}

.columncontrol.column-control-image-alignment .columncontrol__column .m-card__media {
    --card-large-horizontal-media-height-mobile: 160px;
    --card-large-horizontal-media-height: 160px
}

.columncontrol.column-control-image-alignment .columncontrol__column .m-card__media .m-card__wrap .m-card__image .cmp-image__image {
    border: 1px solid #ccc
}

.columncontrol.column-control-image-alignment .columncontrol__column .m-card__image .m-card__title .nonClickableLink {
    margin: 0 !important
}

.columncontrol.column-control-image-alignment.mob-padding-1rem {
    padding-bottom: 1rem
}

.columncontrol.column-control-moreinfopanelcount .row {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.columncontrol.column-control-moreinfopanelcount .row:hover {
    background-color: #ccc !important
}

.columncontrol.column-control-moreinfopanelcount .row .image.image-align--right .cmp-image .cmp-image__image {
    border: solid 1px #ccc
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-control--footer .row .columncontrol__column {
        padding-left: 0
    }
}

.columncontrol.column-control--footer .row .linkstack .m-link-stack .m-link-stack--header {
    display: none
}

.columncontrol.column-control--footer .row .linkstack .m-link-stack .m-link-stack--content {
    padding: 0
}

@media only screen and (min-width:992px) {
    .columncontrol.column-control--footer .row .linkstack .m-link-stack .m-link-stack--content .a-link {
        padding-bottom: 10px
    }
}

.columncontrol.column-control--footer .row .linkstack .m-link-stack .m-link-stack--content .a-link .a-link__text {
    color: #d9d9d6;
    font-size: .8rem;
    font-weight: 400;
    text-transform: uppercase
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.column-control--footer .row .linkstack .m-link-stack .m-link-stack--content .a-link .a-link__text {
        font-size: .6rem
    }
}

.columncontrol.column-control--footer .row .linkstack .m-link-stack .m-link-stack--content .a-link .a-link__text:hover,
.columncontrol.column-control--footer .row .linkstack .m-link-stack .m-link-stack--content .a-link .a-link__text:focus {
    color: #5bc2e7
}

.columncontrol.column-control--footer .row .socialmedia {
    display: flex;
    flex-direction: row-reverse
}

.columncontrol.column-control--footer .row .socialmedia .m-social-media {
    display: inline-block !important;
    flex-direction: column;
    width: auto
}

.columncontrol.column-control--footer .row .socialmedia .m-social-media .m-social-media--title {
    color: #d9d9d6;
    font-size: 1.1em;
    margin-top: 0;
    text-transform: uppercase
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.column-control--footer .row .socialmedia .m-social-media .m-social-media--title {
        display: block;
        font-size: .9em;
        margin-bottom: 0
    }
}

.columncontrol.column-control--footer .row .socialmedia .m-social-media .m-social-media--icons .a-logo-comp--link {
    color: #d9d9d6;
    text-decoration: none
}

.columncontrol.column-control--footer .row .socialmedia .m-social-media .m-social-media--icons .a-logo-comp--link:hover .abt-icon,
.columncontrol.column-control--footer .row .socialmedia .m-social-media .m-social-media--icons .a-logo-comp--link:focus .abt-icon {
    color: #5bc2e7
}

@media only screen and (min-width:768px) {
    .columncontrol.column-control--investor-calendar-variation .columncontrol__column {
        padding-left: 2rem;
        padding-right: 2rem
    }

    .columncontrol.column-control--investor-calendar-variation .columncontrol__column:first-child {
        padding-left: 0;
        border-right: 1px solid #898989
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.column-control--investor-calendar-variation .columncontrol__column {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem
    }

    .columncontrol.column-control--investor-calendar-variation .columncontrol__column:first-child {
        border-bottom: 1px solid #898989
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol.columncontrol--tablet-full-width>.container>.row>.columncontrol__column {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.columncontrol.columncontrol-related-search .container {
    padding: 0 !important;
    max-width: 100%
}

.columncontrol.columncontrol-related-search .container .row {
    width: 75%;
    margin: 0 auto
}

@media(max-width:991px) {
    .columncontrol.columncontrol-related-search .container .row {
        width: 90%;
        display: flex;
        flex-direction: column
    }
}

@media(max-width:767px) {
    .columncontrol.columncontrol-related-search .container .row {
        width: 100%;
        padding: 5px;
        display: flex;
        flex-direction: column
    }
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child {
    width: 60%;
    padding-right: 40px;
    float: left;
    padding-left: 0;
    flex: 0 0 60%;
    max-width: 60%
}

@media(max-width:991px) {
    .columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res {
    padding: 0 !important;
    max-width: 100%
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .col-12 {
    display: none
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container {
    margin: 0;
    width: 100%
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-3 {
    display: none
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 {
    margin: 0;
    padding: 3px 0 4px;
    max-width: 100%;
    flex: 0 0 100%
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-cards-carousel {
    display: none
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results {
    margin: 0;
    font-family: 'Georgia'
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results div:first-child .a-result {
    border-top: 1px solid #d9dadb
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results .a-result.a-result--border-bottom {
    width: 100%;
    padding: 16px 15px 16px 0;
    border: 0;
    border-bottom: 1px solid #d9dadb
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results .a-result.a-result--border-bottom .a-result__title {
    line-height: 1.5rem
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results .a-result.a-result--border-bottom .a-result__title a.a-result__title--link {
    padding: 0;
    margin: 0;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.375rem;
    color: #004f71
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results .a-result.a-result--border-bottom p {
    color: #2a2b33;
    font-family: 'Georgia';
    font-size: .875rem;
    margin: 0;
    word-wrap: break-word;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    line-height: initial;
    padding-bottom: 20px
}

@media(max-width:991px) {
    .columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results .a-result.a-result--border-bottom p {
        line-height: 1.25rem
    }
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__header {
    width: 100%;
    margin: 0 auto;
    text-transform: uppercase;
    line-height: 1.875rem
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__header .o-search-res__header-title {
    margin: 0 auto;
    display: block;
    font-family: 'BrandonGrotesqueBold';
    font-size: .875rem;
    text-transform: uppercase;
    line-height: 1.875rem
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:first-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__header .o-search-res__header-title .o-search-res__count {
    font-family: 'BrandonGrotesqueBold';
    font-size: .875rem
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child {
    float: left;
    width: 38%;
    padding-left: 0;
    flex: 0 0 38%;
    max-width: 38%;
    padding-right: 0
}

@media(max-width:991px) {
    .columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res {
    padding: 0 !important;
    max-width: 100%
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .col-12 {
    display: none
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container {
    margin: 0;
    width: 100%
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-3 {
    display: none
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 {
    margin: 0;
    padding: 3px 0 4px;
    max-width: 100%;
    flex: 0 0 100%
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-cards-carousel {
    display: none
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results {
    margin: 0;
    font-family: 'Georgia'
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results div:first-child .a-result {
    border-top: 1px solid #d9dadb
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results .a-result.a-result--border-bottom {
    color: #2a2b33;
    font-family: 'Georgia';
    padding: 16px 15px 16px 0;
    width: 100%;
    border-bottom: 1px solid #d9dadb
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results .a-result.a-result--border-bottom .a-result__title {
    line-height: 1.5rem
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results .a-result.a-result--border-bottom .a-result__title a.a-result__title--link {
    padding: 0;
    margin: 0;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.375rem;
    color: #004f71
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results .a-result.a-result--border-bottom p {
    color: #2a2b33;
    font-family: 'Georgia';
    font-size: .875rem;
    padding-bottom: 0
}

@media(max-width:991px) {
    .columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__results .a-result.a-result--border-bottom p {
        line-height: 1.25rem
    }
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__header {
    width: 100%;
    margin: 0 auto;
    text-transform: uppercase;
    line-height: 1.875rem
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__header .o-search-res__header-title {
    margin: 0 auto;
    display: block;
    font-family: 'BrandonGrotesqueBold';
    font-size: .875rem;
    text-transform: uppercase;
    line-height: 1.875rem
}

.columncontrol.columncontrol-related-search .container .row .columncontrol__column:last-child .searchresults .container.o-search-res .row.o-search-res__container .col-md-8 .o-search-res__header .o-search-res__header-title .o-search-res__count {
    font-family: 'BrandonGrotesqueBold';
    font-size: .875rem
}

.columncontrol.news-room-coloumn {
    margin-top: 2rem
}

.columncontrol.news-room-coloumn .container .col-12.col-md-8.col-lg-8.columncontrol__column .title .cmp-title {
    padding: 12px 0
}

.columncontrol.news-room-coloumn .container .col-12.col-md-8.col-lg-8.columncontrol__column .title .cmp-title h2 {
    font-size: 1.25rem;
    line-height: 1.5em;
    text-transform: uppercase
}

.columncontrol.news-room-coloumn .container .col-12.col-md-8.col-lg-8.columncontrol__column .title .cmp-title h2 a {
    color: #5bc2e7 !important
}

.columncontrol.news-room-coloumn .container .col-12.col-md-8.col-lg-8.columncontrol__column .title .cmp-title h2 span.devider {
    padding: 0 10px;
    color: #888b8d
}

.columncontrol.news-room-coloumn .container .col-12.col-md-8.col-lg-8.columncontrol__column .title .cmp-title h2 span {
    font-size: 1.25rem;
    line-height: 1.5em;
    color: #888b8d
}

.columncontrol #expert-component {
    padding: 0
}

@media only screen and (max-width:991.98px) {
    .columncontrol #expert-component .row {
        flex-direction: column-reverse
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol #expert-component .row {
        margin: 0
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol #expert-component .row .columncontrol__column {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.columncontrol #expert-component .row .columncontrol__column:first-child {
    padding-left: 75px;
    padding-right: 0
}

@media only screen and (max-width:991.98px) {
    .columncontrol #expert-component .row .columncontrol__column:first-child {
        padding-left: 15px
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol #expert-component .row .columncontrol__column:first-child {
        padding-right: 15px
    }
}

@media only screen and (min-width:1200px) {
    .columncontrol #expert-component .row .columncontrol__column:first-child {
        padding-left: 2%
    }
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container {
    padding: 0
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container {
    width: 100%
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .search-results-container {
    display: none !important
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .col-md-9 {
    flex: 0 0 99%;
    max-width: 99%
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view {
    margin-bottom: 5px
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .experts-view {
    border: 1px solid #d9d9d6
}

@media only screen and (min-width:992px) {
    .columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .experts-view {
        overflow: hidden
    }
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .experts-view .article-link .profile-image .product-card_image {
    width: 100%;
    object-fit: cover
}

@media only screen and (min-width:992px) {
    .columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .experts-view .article-link .profile-image .product-card_image {
        max-height: 210px
    }
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .experts-view .article-link .profile-details {
    width: 92%;
    margin: 0 auto;
    padding: 7px 0 5px 7px;
    min-height: 130px
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .experts-view .article-link .profile-details .profile-tag {
    display: none
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .experts-view .article-link .profile-details .profile-title {
    margin-top: 8px;
    letter-spacing: 1px;
    line-height: 1.2;
    font-family: 'BrandonGrotesqueBlack';
    font-size: .875rem;
    text-transform: uppercase;
    color: #000
}

@media only screen and (min-width:992px) {
    .columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .experts-view .article-link .profile-details .greyHr {
        display: none
    }
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .experts-view .article-link .profile-details .profile-desc {
    font-family: 'Georgia';
    font-size: .875rem;
    line-height: 1.2;
    margin: 5px 0
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .a-pagination {
    display: flex !important;
    width: 100%;
    align-items: center;
    justify-content: center
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages {
    border: 0
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages .a-pagination__page {
    border: 1px solid #ddd
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages .a-pagination__page.a-pagination--active {
    background-color: #000;
    color: #fff
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages .a-pagination__page .a-pagination__link {
    padding: 7px 13px 4px
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages .a-pagination__page .a-pagination__link:hover {
    background: #ededed
}

.columncontrol #expert-component .row .columncontrol__column:first-child .container .o-search-results-filter .container .o-search-res__container .a-pagination.a-pagination--hide {
    display: none !important
}

@media only screen and (min-width:992px) {
    .columncontrol #expert-component .row .columncontrol__column:last-child {
        padding-right: 0
    }
}

@media only screen and (min-width:992px) {
    .columncontrol #expert-component .row .columncontrol__column:last-child .container {
        padding-right: 0;
        margin-right: 0;
        width: 85%
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol #expert-component .row .columncontrol__column .container {
        padding: 0;
        margin: 0
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol #expert-component .row .columncontrol__column .container .customtextlist {
        padding-left: 0
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol #expert-component .row .columncontrol__column .container .customtextlist .m-custom-list__wrapper .m-custom-list__content {
        width: 49%;
        margin-right: 1%;
        float: left
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .columncontrol #expert-component .row .columncontrol__column .container .customtextlist .m-custom-list__wrapper .m-custom-list__content:nth-child(even) {
        margin-left: 1%;
        margin-right: 0
    }
}

.columncontrol #expert-component .row .columncontrol__column .container .customtextlist .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .m-custom-list__title {
    display: inline-block;
    padding: 5px 0 1px 10px;
    font-size: .875rem;
    width: 100%;
    color: #fff
}

.columncontrol #expert-component .row .columncontrol__column .container .customtextlist .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .m-custom-list__title.active {
    background-color: #009cde
}

.columncontrol #expert-component .row .columncontrol__column .container .customtextlist .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .m-custom-list__title:hover {
    color: #3d566e
}

.columncontrol #executive-page {
    margin: 0 auto
}

@media only screen and (min-width:992px) {
    .columncontrol #executive-page {
        max-width: 75%;
        padding: 0
    }
}

.columncontrol #executive-page .o-search-results-filter .container {
    width: 100%
}

@media only screen and (min-width:992px) {
    .columncontrol #executive-page .o-search-results-filter .container {
        max-width: 98%
    }
}

.columncontrol #executive-page .o-search-results-filter .container .search-results-container {
    display: none !important
}

.columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 {
    flex: 0 0 99%;
    max-width: 99%
}

@media only screen and (min-width:992px) {
    .columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view {
        justify-content: flex-start
    }
}

.columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
    flex: 0 0 32%;
    max-width: 32%
}

@media only screen and (min-width:992px) {
    .columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
        margin-right: 2%
    }
}

@media only screen and (max-width:991.98px) {
    .columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
        flex: 0 0 49%;
        max-width: 49%
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media only screen and (min-width:992px) {
    .columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result:nth-child(3n) {
        margin-right: 0
    }
}

.columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .executive-view {
    border: 1px solid #d9d9d5
}

.columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .executive-view a .profile-image img {
    width: 100%;
    max-height: 293px;
    object-fit: cover;
    object-position: top
}

@media only screen and (min-width:768px) {
    .columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .executive-view a .profile-image img {
        height: 269px
    }
}

@media only screen and (min-width:992px) {
    .columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .executive-view a .profile-image img {
        height: 170px
    }
}

@media only screen and (min-width:1200px) {
    .columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .executive-view a .profile-image img {
        height: 251px
    }
}

.columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .executive-view a .profile-details {
    padding: 15px 20px
}

.columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .executive-view a .profile-details .profile-title {
    margin-top: 8px;
    letter-spacing: 1px;
    line-height: 1.2;
    font-family: 'BrandonGrotesqueBlack';
    font-size: .813rem;
    text-transform: uppercase;
    color: #000
}

.columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .executive-view a .profile-details .greyHr {
    display: none
}

.columncontrol #executive-page .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .executive-view a .profile-details .profile-desc {
    font-family: 'Georgia';
    font-size: .75rem;
    line-height: 1.2;
    margin: 5px 0;
    min-height: 34px
}

.columncontrol #humans-working {
    margin: 0 auto
}

@media only screen and (min-width:992px) {
    .columncontrol #humans-working {
        max-width: 800px
    }
}

@media only screen and (min-width:1200px) {
    .columncontrol #humans-working {
        max-width: 980px
    }
}

.columncontrol #humans-working .cmp-text h2 {
    font-size: 1.875rem;
    margin-bottom: 10px
}

.columncontrol #humans-working .cmp-text p {
    line-height: 1.125rem
}

.columncontrol.columncontrol-make-an-impact .m-card .m-card__body .m-card__title.h4 {
    text-transform: none;
    font-size: 1.25rem
}

@media only screen and (max-width:767.98px) {
    .columncontrol.columncontrol-make-an-impact .m-card .m-card__body .m-card__title.h4 {
        font-size: .875rem
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.columncontrol-abbott-at-a-glance .a-container__content .text .cmp-text h1 {
        padding-bottom: 5px
    }
}

.columncontrol.columncontrol-abbott-at-a-glance .a-container__content .text .cmp-text h4 {
    font-size: 1.188rem
}

@media only screen and (max-width:991.98px) {
    .columncontrol.columncontrol-abbott-at-a-glance .a-container__content .text .cmp-text h4 {
        font-size: .938rem
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.columncontrol-abbott-at-a-glance .a-container__content .text .cmp-text h4 {
        font-size: .75rem;
        line-height: 1.2rem
    }
}

.columncontrol.columncontrol-biomedical-waste .accordion .m-accordion__content .m-accordion__header .m-accordion__title-wrapper h3 {
    font-size: 1rem;
    line-height: 1.5;
    padding-top: 5px
}

@media only screen and (max-width:767.98px) {
    .columncontrol.columncontrol-biomedical-waste .accordion .m-accordion__content .m-accordion__header .m-accordion__title-wrapper h3 {
        font-size: .875rem;
        line-height: 1.25rem;
        padding-top: 3px
    }
}

.columncontrol.columncontrol-biomedical-waste .accordion .m-accordion__content .m-accordion__body .a-container__content .btn span {
    font-size: 1rem;
    font-weight: normal
}

@media only screen and (max-width:767.98px) {
    .columncontrol.columncontrol-biomedical-waste .accordion .m-accordion__content .m-accordion__body .a-container__content .btn span {
        font-size: .875rem
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.columncontrol-biomedical-waste .contentfragmentlist .article-ahnchor .cmp-contentfragment__element-value p {
        display: flex;
        align-items: center
    }
}

.columncontrol.columncontrol-biomedical-waste .contentfragmentlist .article-ahnchor .cmp-contentfragment__element-value p .img-thumbnail {
    border: 0
}

.columncontrol #executive-member .columncontrol__column .text .cmp-text p {
    margin-bottom: 30px
}

.columncontrol #executive-member .columncontrol__column .image {
    margin-right: 8.5%
}

@media only screen and (min-width:992px) {
    .columncontrol #executive-member .columncontrol__column:last-child {
        padding-right: 35px
    }
}

.columncontrol #media-contacts .row .columncontrol__column .text .cmp-text p {
    font-size: .875rem
}

.columncontrol #media-contacts .row .columncontrol__column .text .cmp-text p a {
    font-size: .875rem
}

.columncontrol #media-contacts .row .columncontrol__column .text .cmp-text h3 {
    font-size: 1.25rem
}

.columncontrol #our-best-innovation {
    padding: 0
}

@media only screen and (max-width:767.98px) {
    .columncontrol #our-best-innovation {
        padding: 0 40px
    }
}

.columncontrol #our-best-innovation .cmp-title h2.cmp-title__text {
    font-size: 1.875rem
}

@media only screen and (min-width:992px) {
    .columncontrol.column-control--img-centre .container {
        max-width: 960px
    }
}

.columncontrol.column-control--img-centre .container .row .columncontrol__column {
    display: flex;
    align-items: center;
    justify-content: center
}

.columncontrol.abbott-in-latin-america-varient p {
    line-height: 1.125rem
}

.columncontrol.abbott-in-latin-america-varient h2 {
    font-size: 1.875rem;
    line-height: 2.125rem;
    margin-bottom: 20px
}

.columncontrol.abbott-in-latin-america-varient h4 {
    font-size: 1rem
}

@media only screen and (min-width:992px) {
    .columncontrol.columncontrol-with-adjustment {
        max-width: 75%;
        padding: 0
    }
}

.columncontrol #nossos-produtos {
    padding-left: 82px
}

.columncontrol #nossos-produtos .text .cmp-text h2 {
    font-size: 2.25rem
}

.columncontrol #nossos-produtos .text .cmp-text p {
    font-size: .875rem
}

.columncontrol #nossos-produtos .button a span {
    font-size: .875rem
}

@media only screen and (min-width:992px) {
    .columncontrol.columncontrol-with-adjustment-container>.container {
        max-width: 75%;
        padding: 0
    }
}

.columncontrol #our-products .m-card a .m-card__body .m-card__title {
    font-size: 1.25rem
}

.columncontrol #our-products .m-card a .m-card__body .m-card__description h5 {
    font-size: 1.125rem
}

.columncontrol #advanced-innovation .m-card {
    --card-media-height: 131px !important
}

@media only screen and (min-width:992px) {
    .columncontrol #para-consumidores {
        max-width: 75%;
        padding: 0
    }
}

.columncontrol #para-consumidores .title h3 {
    font-size: 1.875rem
}

.columncontrol #business-areas-nutrition .text .cmp-text h3 {
    font-size: 1.25rem;
    line-height: 1.875rem;
    letter-spacing: .5px;
    font-family: 'BrandonGrotesqueBlack'
}

.columncontrol #business-areas-nutrition .button.button-cta--variation-accordion .btn span {
    font-size: 1.125rem;
    text-transform: none
}

.columncontrol.coloumn-control-lineheight-18px .text .cmp-text p {
    line-height: 1.125rem
}

.columncontrol.coloumn-control-lineheight-18px .text .cmp-text li a {
    line-height: 1.125rem
}

.columncontrol #careers-testimonials .text .cmp-text p {
    font-size: .875rem;
    line-height: 1.05rem
}

@media only screen and (min-width:992px) {
    .columncontrol #investors-columcontrol .columncontrol__column .image .img-container .image-title h2 {
        font-family: 'BrandonGrotesqueBlack'
    }
}

@media only screen and (min-width:1200px) {
    .columncontrol #investors-columcontrol .columncontrol__column .image .img-container .image-title h2 {
        font-size: 2.125rem
    }
}

@media only screen and (min-width:992px) {
    .columncontrol #investors-columcontrol .columncontrol__column .m-hero--short {
        min-height: 49.15%
    }
}

@media only screen and (min-width:992px) {
    .columncontrol #investor-resources {
        max-width: 65%
    }
}

@media only screen and (min-width:992px) {
    .columncontrol #investor-resources .columncontrol__column .container-variation--related-info-panel {
        padding: 0 5px
    }
}

@media only screen and (min-width:1200px) {
    .columncontrol #investor-resources .columncontrol__column .container-variation--related-info-panel .cmp-container {
        height: 350px !important
    }
}

.columncontrol #investor-resources .columncontrol__column .container-variation--related-info-panel .cmp-container .text .cmp-text p.font-georgia {
    font-size: .875rem;
    line-height: 1.05rem
}

@media only screen and (min-width:992px) {
    .columncontrol #life-changing-technologies .m-card .m-card-link .m-card__body .m-card__title {
        font-size: 1.25rem
    }
}

@media only screen and (min-width:992px) {
    .columncontrol #requirements-careers {
        padding-top: 30px
    }
}

.columncontrol #requirements-careers .columncontrol__column .image {
    margin-bottom: 15px
}

@media only screen and (min-width:992px) {
    .columncontrol #requirements-careers .columncontrol__column .image .cmp-image__image {
        max-width: 100px;
        display: block
    }
}

.columncontrol.columncontrol-product-btn-varient .row {
    margin: 0
}

@media only screen and (min-width:992px) {
    .columncontrol.columncontrol-product-btn-varient .row .columncontrol__column {
        padding: 0
    }
}

@media only screen and (min-width:1200px) {
    .columncontrol.columncontrol-product-btn-varient .row .columncontrol__column {
        max-width: 119px;
        margin-right: 5px
    }
}

@media only screen and (min-width:992px) {
    .columncontrol #at-a-glance-columncontrol {
        max-width: 63% !important;
        padding: 0
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol #at-a-glance-columncontrol .columncontrol__column .cmp-container .image img {
        max-width: 70px;
        margin-top: 12px
    }

    .columncontrol #at-a-glance-columncontrol .columncontrol__column .cmp-container .container .text {
        padding-top: 10px
    }

    .columncontrol #at-a-glance-columncontrol .columncontrol__column .cmp-container .container .text.text-corp-19px h4 {
        font-size: .75rem
    }
}

@media only screen and (min-width:992px) {
    .columncontrol #our-promise {
        padding: 0 15px !important
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.coloum-control-edge-archive-variant .columncontrol__column .cmp-text ul {
        padding-left: 5px
    }
}

@media only screen and (max-width:767.98px) {
    .columncontrol.consumer-product-section .container .columncontrol__column .container-variation--product-related-info-panel {
        border: 1px solid #ccc;
        padding: 10px !important
    }

    .columncontrol.consumer-product-section .container .columncontrol__column .container-variation--product-related-info-panel .a-container__content .image {
        width: 49%;
        float: right
    }

    .columncontrol.consumer-product-section .container .columncontrol__column .container-variation--product-related-info-panel .a-container__content .image img {
        max-height: 100px;
        width: auto
    }

    .columncontrol.consumer-product-section .container .columncontrol__column .container-variation--product-related-info-panel .a-container__content .columncontrol-product-btn-varient .columncontrol__column {
        padding: 0
    }

    .columncontrol.consumer-product-section .container .columncontrol__column .container-variation--product-related-info-panel .a-container__content .columncontrol-product-btn-varient .columncontrol__column .button-product-related--variation .btn {
        margin-bottom: 5px;
        margin-top: 5px
    }
}

@media only screen and (max-width:767.98px) {
    .navigation.deluxe-side-by-variation {
        padding: 25px
    }

    .navigation.deluxe-side-by-variation .m-mega-menu__item {
        width: 20%
    }

    .navigation.deluxe-side-by-variation .m-mega-menu__item .nav-item {
        background-color: #fff;
        border: 1px solid transparent;
        height: 38px !important;
        margin: 8px auto;
        padding: 9px 13px !important;
        width: 38px !important
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .navigation.deluxe-side-by-variation .m-mega-menu__item .nav-item {
        padding: 6px !important
    }
}

.navigation.deluxe-side-by-variation .m-mega-menu__item:first-child a {
    cursor: auto;
    color: #d4d4d4;
    pointer-events: none
}

.navigation.deluxe-side-by-variation .m-mega-menu__item:first-child a.nav-item:hover {
    color: #d4d4d4 !important
}

@media only screen and (max-width:767.98px) {
    .navigation.deluxe-side-by-variation .m-mega-menu__item:first-child a {
        background-color: unset;
        border: unset !important
    }
}

.navigation.deluxe-side-by-variation>div {
    display: flex;
    flex-wrap: wrap
}

.navigation.deluxe-side-by-variation>div .m-mega-menu__item {
    width: 20%
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .navigation.deluxe-side-by-variation>div .m-mega-menu__item {
        width: 25% !important
    }
}

@media only screen and (max-width:767.98px) {
    .navigation.deluxe-side-by-variation>div .m-mega-menu__item {
        width: 20% !important
    }
}

.navigation.deluxe-side-by-variation>div .m-mega-menu__item .nav-link {
    padding: 12px
}

@media only screen and (max-width:767.98px) {

    .navigation.deluxe-side-by-variation>div .m-mega-menu__item .nav-link:hover,
    .navigation.deluxe-side-by-variation>div .m-mega-menu__item .nav-link:focus {
        border: 1px solid #aacdd0
    }
}

.navigation.navigation__secondary-links {
    padding: 0 40px
}

.navigation.navigation__secondary-links div[id^="navigation"] {
    margin: 0
}

.navigation.navigation__secondary-links .m-mega-menu__item.m-mega-menu__mobile-item {
    display: none !important
}

.navigation.navigation__secondary-links .m-mega-menu__item {
    display: inline-block !important
}

.navigation.navigation__secondary-links .m-mega-menu__item .nav-link {
    color: #838585;
    text-transform: uppercase;
    padding: 1rem 1rem .5rem 0
}

.navigation.navigation__secondary-links .m-mega-menu__item .nav-link:hover {
    color: #5bc2e7;
    font-weight: normal
}

.navigation.navigation__secondary-links .m-mega-menu__item .nav-link__active {
    color: #009cde;
    cursor: pointer
}

.navigation.navigation__secondary-links .m-mega-menu__item .nav-link__active:hover {
    color: #009cde
}

@media only screen and (max-width:767.98px) {
    .navigation.navigation__secondary-links {
        display: none !important
    }
}

.navigation.navigation__secondary-links.m--font-profile-header .m-mega-menu__item a {
    line-height: 1.6;
    font-size: .75em;
    font-family: 'BrandonGrotesqueMedium'
}

@media only screen and (min-width:768px) {
    .navigation.navigation__secondary-links.m--font-profile-header .m-mega-menu__item a {
        font-size: .625em
    }
}

@media only screen and (min-width:992px) {
    .navigation.navigation__secondary-links.m--font-profile-header .m-mega-menu__item a {
        font-size: .813em
    }
}

@media only screen and (max-width:767.98px) {
    .navigation.navigation__secondary-links--mob-show {
        display: block !important;
        padding: 1rem
    }

    .navigation.navigation__secondary-links--mob-show .m-mega-menu__item .nav-link {
        padding: .5rem .5rem 0 0
    }
}

.navigation.navigation__redesign-links {
    padding: 0 40px;
    border-bottom: 0;
    padding: 15px 0 0;
    margin-top: 0 !important
}

.navigation.navigation__redesign-links div[id^="navigation"] {
    margin: 0
}

.navigation.navigation__redesign-links .m-mega-menu__item.m-mega-menu__mobile-item {
    display: none !important
}

.navigation.navigation__redesign-links .m-mega-menu__item {
    display: inline-block !important
}

.navigation.navigation__redesign-links .m-mega-menu__item .nav-link {
    color: #838585;
    text-transform: uppercase;
    padding: 1rem 1rem .5rem 0
}

.navigation.navigation__redesign-links .m-mega-menu__item .nav-link:hover {
    color: #5bc2e7;
    font-weight: normal
}

.navigation.navigation__redesign-links .m-mega-menu__item .nav-link__active {
    color: #009cde;
    cursor: pointer
}

.navigation.navigation__redesign-links .m-mega-menu__item .nav-link__active:hover {
    color: #009cde
}

@media only screen and (max-width:767.98px) {
    .navigation.navigation__redesign-links {
        display: none !important
    }
}

.navigation.navigation__redesign-links.m--font-profile-header .m-mega-menu__item a {
    line-height: 1.6;
    font-size: .75em;
    font-family: 'BrandonGrotesqueMedium'
}

@media only screen and (min-width:768px) {
    .navigation.navigation__redesign-links.m--font-profile-header .m-mega-menu__item a {
        font-size: .625em
    }
}

@media only screen and (min-width:992px) {
    .navigation.navigation__redesign-links.m--font-profile-header .m-mega-menu__item a {
        font-size: .813em
    }
}

.navigation.navigation__redesign-links div[id^="navigation"] {
    margin: auto
}

@media only screen and (max-width:767.98px) {
    .navigation.navigation__redesign-links div[id^="navigation"] {
        padding-left: 10px !important;
        padding-right: 10px !important
    }
}

@media only screen and (max-width:991.98px) {
    .navigation.navigation__redesign-links div[id^="navigation"] {
        max-width: 100%;
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }
}

@media only screen and (min-width:992px) and (max-width:1199.98px) {
    .navigation.navigation__redesign-links div[id^="navigation"] {
        max-width: 960px
    }
}

@media only screen and (min-width:1200px) {
    .navigation.navigation__redesign-links div[id^="navigation"] {
        max-width: 1140px
    }
}

.navigation.navigation__redesign-links .nav-link {
    color: #63666a !important;
    padding: .2rem .5rem .2rem .2rem !important
}

.navigation.navigation__redesign-links .nav-link:hover {
    color: #009cdd !important
}

.navigation.navigation__redesign-links .nav-link__active {
    color: #009cdd !important
}

.navigation.navigation__redesign-links .nav-link__active:hover {
    color: #009cdd !important
}

@media only screen and (max-width:767.98px) {
    .navigation.navigation__redesign-links {
        display: block !important
    }

    .navigation.navigation__redesign-links .m-mega-menu__item.m-mega-menu__mobile-item {
        display: none !important
    }

    .navigation.navigation__redesign-links .m-mega-menu__item:not(.m-mega-menu__mobile-item) {
        display: inline-block !important
    }
}

.navigation.navigation__redesign-links.navigation__redesign-links--bg-gray,
.navigation.navigation__redesign-links.navigation__redesign-links--bg-white {
    display: none !important
}

.navigation.navigation__secondary-fixed {
    background-color: #fff;
    width: 100%;
    z-index: 99;
    box-shadow: 0 0 2px #1d1d1d
}

@media only screen and (min-width:1441px) {
    .navigation.navigation__secondary-fixed {
        width: 1440px
    }
}

.navigation.navigation__redesign-fixed {
    background-color: #fff;
    width: 100%;
    z-index: 99;
    box-shadow: 0 0 2px #1d1d1d;
    margin-top: 0 !important
}

@media only screen and (min-width:1441px) {
    .navigation.navigation__redesign-fixed {
        width: 1440px
    }
}

@media only screen and (min-width:768px) {
    .navigation.navigation__links--md-right {
        text-align: right
    }
}

.navigation.navbar-sitemap-variation .m-mega-menu__item {
    padding-left: 20px
}

@media only screen and (max-width:991.98px) {
    .navigation.navbar-sitemap-variation .m-mega-menu__item {
        display: block !important
    }
}

@media only screen and (max-width:767.98px) {
    .navigation.navbar-sitemap-variation .m-mega-menu__item.m-mega-menu__mobile-item {
        display: none !important
    }
}

.navigation.navbar-sitemap-variation .m-mega-menu__item .nav-item {
    color: #00747e;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0;
    width: fit-content
}

.navigation.navbar-sitemap-variation .m-mega-menu__item.d-lg-none .m-mega-menu__mobile-header {
    display: none
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var {
    display: block !important;
    box-shadow: none;
    --mega-menu-wrapper-width: auto
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper {
    background-color: #fff;
    padding: 0
}

@media only screen and (max-width:991.98px) {
    .navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper {
        display: block
    }
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper .a-link:hover {
    --mega-menu-list-font-size: 1rem;
    font-weight: normal;
    --mega-menu-list-h4-line-height: unset
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper .m-mega-menu__content.d-inline-flex {
    display: block !important;
    padding-left: 30px
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper .m-mega-menu__content.d-inline-flex .m-mega-menu__sub-list {
    min-height: 1rem;
    max-width: 100%
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper .m-mega-menu__content.d-inline-flex .m-mega-menu__sub-list .m-mega-menu__title {
    padding-bottom: 8px
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper .m-mega-menu__content.d-inline-flex .m-mega-menu__sub-list .m-mega-menu__title * {
    color: #00747e;
    text-decoration: none;
    font-weight: normal
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper .m-mega-menu__content.d-inline-flex .m-mega-menu__sub-list .m-mega-menu__title h6 {
    --mega-menu-list-h6-font-size: 1rem;
    padding-bottom: 0 !important
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper .m-mega-menu__content.d-inline-flex .m-mega-menu__sub-list .m-mega-menu__title:first-child {
    padding-top: 8px
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper .m-mega-menu__content.d-inline-flex .m-mega-menu__sub-list .m-mega-menu__list-var-title {
    padding-left: 30px;
    padding-bottom: 0;
    padding-top: 0
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper .m-mega-menu__content.d-inline-flex .m-mega-menu__sub-list .m-mega-menu__list-var-title .a-link {
    text-transform: uppercase;
    margin-bottom: 0;
    padding-bottom: 8px;
    padding-top: 0
}

.navigation.navbar-sitemap-variation .m-mega-menu__list-var .m-mega-menu__list-var-wrapper .m-mega-menu__content.d-inline-flex .m-mega-menu__sub-list .m-mega-menu__list-var-title .a-link * {
    color: #00747e;
    text-decoration: none;
    --mega-menu-list-font-size: 1rem
}

.navigation.secondary-nav-fonts .m-mega-menu__nested-menu .m-mega-menu__nested-menu-wrapper .m-link-stack .a-link a {
    font-family: 'BrandonGrotesqueRegular'
}

.navigation.primary-nav-fonts .m-mega-menu__item a {
    font-weight: normal
}

@media only screen and (min-width:768px) {
    .mblcontainer {
        display: none
    }
}

.mblmenu {
    border-bottom: 1px solid #838585;
    background: #fff;
    margin-top: -5px;
    position: absolute;
    width: 100%;
    z-index: 900
}

@media only screen and (max-width:767.98px) {
    .mblmenu.mblmenu__hide {
        display: none
    }
}

.mblmenu .fooactive.active-link {
    align-items: baseline;
    color: #5bc2e7;
    display: flex;
    justify-content: space-between;
    padding: 20px 56px 10px 40px;
    text-transform: uppercase;
    width: 100%
}

@media only screen and (max-width:575.98px) {
    .mblmenu .fooactive.active-link {
        padding-left: 16px;
        padding-right: 30px
    }
}

.mblmenu .fooactive.active-link .abt-icon {
    color: #838585
}

@media only screen and (min-width:768px) {
    .mblmenu {
        display: none
    }
}

@media only screen and (max-width:767.98px) {
    .mblmenu .m-mega-menu__item.m-mega-menu__mobile-item {
        display: none !important
    }

    .mblmenu .m-mega-menu__item:not(.m-mega-menu__mobile-item) {
        display: flex !important;
        padding-left: 40px
    }

    .mblmenu .m-mega-menu__item:not(.m-mega-menu__mobile-item) .nav-link {
        color: #838585;
        padding-left: 0;
        text-transform: uppercase
    }
}

@media only screen and (max-width:575.98px) {
    .mblmenu .m-mega-menu__item:not(.m-mega-menu__mobile-item) {
        padding-left: 16px
    }
}

.mblmenu.mblmenu--bg-gray {
    background: #4a4b4d;
    border: 0
}

.mblmenu.mblmenu--bg-gray .fooactive.active-link {
    color: #838585
}

.mblmenu.mblmenu--bg-gray .nav-link {
    color: #fff !important
}

.mblmenu.mblmenu--bg-gray .nav-link:hover {
    color: #5bc2e7 !important
}

.mblmenu.mblmenu--bg-white .nav-link:hover {
    color: #004f71 !important
}

.accordion.accordion__expanded-button-view .m-accordion .m-accordion__content-items {
    border: 0
}

.accordion.accordion__expanded-button-view .m-accordion .m-accordion__content-items .m-accordion__header {
    background-color: #63666a;
    height: 1.75rem;
    justify-content: center
}

.accordion.accordion__expanded-button-view .m-accordion .m-accordion__content-items .m-accordion__header .m-accordion-toggle .m-accordion-icon:last-child .abt-icon:before {
    display: inline-block;
    transform: rotate(90deg)
}

@media only screen and (max-width:767.98px) {
    .accordion.accordion__expanded-button-view .m-accordion .m-accordion__content-items .m-accordion__header {
        align-items: center;
        height: auto
    }
}

.accordion.accordion__expanded-button-view .m-accordion .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper {
    padding: 0;
    width: auto
}

.accordion.accordion__expanded-button-view .m-accordion .m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper {
    padding-top: .5rem
}

.accordion.accordion__expanded-button-view .m-accordion .m-accordion__content-items .m-accordion__header * {
    color: #fff;
    font-family: 'BrandonGrotesqueBold';
    font-size: 1rem;
    text-transform: uppercase
}

.accordion.accordion__expanded-button-view .m-accordion .m-accordion__content-items .m-accordion__body {
    background-color: #fff;
    padding: 10px;
    transition: all .3s ease
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .accordion.accordion__expanded-button-view .m-accordion .m-accordion__content-items .m-accordion__body {
        padding: 5px
    }
}

.accordion.accordion__expand-collapse-group .m-accordion__content-items {
    border-top: 1px solid #d9d9d6;
    border-bottom: 1px solid #d9d9d6
}

.accordion.accordion__expand-collapse-group .m-accordion__content-items.m-accordion__expanded {
    background: #e1e1e1;
    border-bottom: 0
}

.accordion.accordion__expand-collapse-group .m-accordion__content-items.m-accordion__expanded:hover .m-accordion__header * {
    color: #004f71 !important
}

.accordion.accordion__expand-collapse-group .m-accordion__content-items .m-accordion__header * {
    color: #004f71 !important;
    font-weight: 500 !important
}

.accordion.accordion__expand-collapse-group .m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper {
    padding-left: 0
}

.accordion.accordion__expand-collapse-group .m-accordion__content-items .m-accordion__body {
    padding-left: 1.75rem !important;
    transition: .2s all ease
}

.accordion.accordion__expand-collapse-group .m-accordion__content-items:hover {
    background: #e1e1e1
}

.accordion.accordion__expand-collapse-group .m-accordion__content-items:hover .m-accordion__header * {
    color: #000 !important
}

.accordion.accordion__expand-collapse-group #accordion-top .m-accordion__content-items:first-child {
    border: 1px solid #d9d9d6
}

.accordion.accordion__expand-collapse-group #accordion-top .m-accordion__content-items:first-child .m-accordion__header {
    background: #fff
}

@media only screen and (max-width:991.98px) {
    .accordion.accordion__expand-collapse-group .m-accordion__content-items:first-child.m-accordion__expanded .m-accordion__header {
        background-color: #e1e1e1 !important
    }
}

@media only screen and (max-width:767.98px) {
    .accordion.m-accordion-look-lg-hide .m-accordion__content .m-accordion__content-items {
        --accordion-content-border: 1px solid #e0e0e0
    }
}

@media only screen and (min-width:768px) {
    .accordion.m-accordion-look-lg-hide .m-accordion__content .m-accordion__content-items {
        border: 0
    }

    .accordion.m-accordion-look-lg-hide .m-accordion__content .m-accordion__content-items .m-accordion__body {
        display: block !important
    }

    .accordion.m-accordion-look-lg-hide .m-accordion__content .m-accordion__content-items .m-accordion__header {
        pointer-events: none
    }

    .accordion.m-accordion-look-lg-hide .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper {
        padding-left: 36px
    }

    .accordion.m-accordion-look-lg-hide .m-accordion__content .m-accordion__content-items .m-accordion__icon-wrapper {
        display: none
    }

    .accordion.m-accordion-look-lg-hide .m-accordion__content .m-accordion__content-items .columncontrol .container {
        padding: 0
    }

    .accordion.m-accordion-look-lg-hide .m-accordion__content .m-accordion__content-items .columncontrol .container .columncontrol__column {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
        padding: 5px
    }
}

.accordion.m-accordion--medialibrary-variation-2 {
    padding-top: 0 !important
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__options {
    margin-bottom: 0 !important
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items {
    border: 0;
    margin-bottom: -20px
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper {
    padding-left: 0
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper * {
    color: #2a2b33;
    padding-left: 10px
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper *:hover {
    color: #fff;
    background-color: #009cde
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper {
    display: none
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items .m-accordion__body {
    padding-left: 15px
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items .m-accordion__body .button {
    margin-top: 0 !important;
    margin-bottom: 5px !important
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items .m-accordion__body .button .btn {
    padding: 0;
    color: #63666a;
    font-weight: bold
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items .m-accordion__body .button.tag-list-button-active .btn {
    color: #009cde !important
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items .m-accordion__body .button.tag-list-button-not-active .btn {
    color: #63666a !important
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items.tag-list-article-active .m-accordion__title-wrapper * {
    background-color: #009cde;
    color: #fff
}

.accordion.m-accordion--medialibrary-variation-2 .m-accordion__content-items.tag-list-article-active .m-accordion__body .button:first-child .btn {
    color: #009cde
}

.accordion.m-accordion-variation--deluxe-filter {
    padding-bottom: 0 !important;
    padding-top: 0 !important
}

@media only screen and (min-width:992px) {
    .accordion.m-accordion-variation--deluxe-filter {
        width: 85%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .accordion.m-accordion-variation--deluxe-filter {
        width: 90%
    }
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__options {
    display: none
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__content .m-accordion__content-items {
    border-top: 0;
    border-bottom: 1px solid #d9d9d6
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__content .m-accordion__content-items.m-accordion__expanded {
    background-color: #f4f4f4;
    border-bottom: 0
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__content .m-accordion__content-items.m-accordion__expanded:hover .m-accordion__header * {
    color: #00747e
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__content .m-accordion__content-items .m-accordion__header {
    position: relative
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__content .m-accordion__content-items .m-accordion__header * {
    color: #00747e;
    font-size: 1.125rem
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper {
    --accordion-title-padding-sm: 20px 0 20px 22px
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper {
    padding-left: 0;
    width: 20px;
    position: absolute;
    right: 20px;
    top: 20px
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper .abt-icon {
    font-weight: bold
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__content .m-accordion__content-items .m-accordion__body {
    padding-left: 1.75rem;
    transition: .2s all ease
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__content .m-accordion__content-items:hover {
    background: #f4f4f4
}

.accordion.m-accordion-variation--deluxe-filter .m-accordion__content .m-accordion__content-items:hover .m-accordion__header * {
    color: #000
}

.accordion.m-accordion-header-bold .m-accordion__content-items .m-accordion__header * {
    font-weight: bold !important
}

.accordion.m-accordion--full-width .m-accordion.cmp-accordion {
    --accordion-lg-max-width: 100%
}

html[lang*='en'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='zh'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='id'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='tr'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='es'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='gr'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='it'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='nl'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='pl'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='pt'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='sk'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='cz'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='fr'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='de'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='ch'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='ar'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='ua'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='ca'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header * {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header * {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='th'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header *,
html[lang*='tw'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header * {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .accordion.m-accordion-header-font-bold .m-accordion__content-items .m-accordion__header * {
    --font-family: 'Segoe UI Bold'
}

.accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header * {
    font-weight: 300
}

html[lang*='en'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='zh'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='id'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='tr'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='es'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='gr'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='it'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='nl'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='pl'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='pt'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='sk'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='cz'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='fr'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='de'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='ch'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='ar'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='ua'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='ca'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header * {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='th'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header *,
html[lang*='tw'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header * {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .accordion.m-accordion-header-font-thin .m-accordion__content-items .m-accordion__header * {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='zh'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='id'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='tr'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='es'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='gr'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='it'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='nl'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='pl'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='pt'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='sk'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='cz'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='fr'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='de'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='ch'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='ar'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='ua'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='ca'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header * {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='th'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header *,
html[lang*='tw'] .accordion.m-accordion-header-font-medium .m-accordion__content-items .m-accordion__header * {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='zh'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='id'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='tr'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='es'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='gr'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='it'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='nl'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='pl'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='pt'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='sk'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='cz'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='fr'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='de'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='ch'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='ar'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='ua'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header *,
html[lang*='ca'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header * {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .accordion.m-accordion-header-font-italic .m-accordion__content-items .m-accordion__header * {
    --font-family: 'Segoe UI Italic'
}

html[lang*='en'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='zh'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='id'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='tr'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='es'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='gr'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='it'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='nl'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='pl'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='pt'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='sk'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='cz'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='fr'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='de'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='ch'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='ar'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='ua'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='ca'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header * {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='th'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header *,
html[lang*='tw'] .accordion.m-accordion-header-font-black .m-accordion__content-items .m-accordion__header * {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='zh'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='id'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='tr'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='es'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='gr'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='it'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='nl'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='pl'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='pt'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='sk'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='cz'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='fr'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='de'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='ch'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='ar'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='ua'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='ca'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header * {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='th'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header *,
html[lang*='tw'] .accordion.m-accordion-header-font-regular .m-accordion__content-items .m-accordion__header * {
    --font-family: 'Noto Sans TC Regular'
}

.accordion.m-accordion-header-font-arial .m-accordion__content-items .m-accordion__header * {
    font-family: 'Arial'
}

.accordion.m-accordion-header-font-brandon-grotesque-medium .m-accordion__content-items .m-accordion__header * {
    font-family: 'BrandonGrotesqueMedium'
}

.accordion.m-accordion-header-font-brandon-grotesque-black .m-accordion__content-items .m-accordion__header * {
    font-family: 'BrandonGrotesqueBlack'
}

.accordion.m-accordion-header-font-brandon-grotesque-regular .m-accordion__content-items .m-accordion__header * {
    font-family: 'BrandonGrotesqueRegular'
}

.accordion.m-accordion-header-font-brandon-grotesque-bold .m-accordion__content-items .m-accordion__header * {
    font-family: 'BrandonGrotesqueBold'
}

.accordion.m-accordion-header-font-georgia .m-accordion__content-items .m-accordion__header * {
    font-family: 'Georgia'
}

.accordion.m-accordion-header-font-meiryo .m-accordion__content-items .m-accordion__header * {
    font-family: 'Meiryo'
}

.accordion.m-accordion-header-font-segoe-ui .m-accordion__content-items .m-accordion__header * {
    font-family: 'Segoe UI'
}

.accordion.m-accordion-header-font-times-new-roman .m-accordion__content-items .m-accordion__header * {
    font-family: 'Times New Roman'
}

.accordion.m-accordion-header-font-extazy-black .m-accordion__content-items .m-accordion__header * {
    font-family: 'Extazy Black'
}

.accordion.m-accordion-header-font-extazy-bold .m-accordion__content-items .m-accordion__header * {
    font-family: 'Extazy Bold'
}

.accordion.m-accordion-header-font-extazy-light .m-accordion__content-items .m-accordion__header * {
    font-family: 'Extazy Light'
}

.accordion.m-accordion-header-font-extazy-regular .m-accordion__content-items .m-accordion__header * {
    font-family: 'Extazy Regular'
}

.accordion.m-accordion-header-font-noto-sans-thin .m-accordion__content-items .m-accordion__header * {
    font-family: 'Noto Sans TC Thin'
}

.accordion.m-accordion-header-font-noto-sans-regular .m-accordion__content-items .m-accordion__header * {
    font-family: 'Noto Sans TC Regular'
}

.accordion.m-accordion-header-font-noto-sans-bold .m-accordion__content-items .m-accordion__header * {
    font-family: 'Noto Sans TC Bold'
}

.accordion.m-accordion-header-font-noto-sans-black .m-accordion__content-items .m-accordion__header * {
    font-family: 'Noto Sans TC Black'
}

.accordion.m-accordion-header-font-microsoft-ya-hei .m-accordion__content-items .m-accordion__header * {
    font-family: 'Microsoft YaHei'
}

.accordion.m-accordion-header-font-calibri .m-accordion__content-items .m-accordion__header * {
    font-family: 'Calibri'
}

.accordion.m-accordion-header-font-helvetica-neue .m-accordion__content-items .m-accordion__header * {
    font-family: 'Helvetica Neue'
}

.accordion.m-accordion-header-font-sans-serif .m-accordion__content-items .m-accordion__header * {
    font-family: 'sans-serif'
}

.accordion.m-accordion-header-font-noto-sans-kr .m-accordion__content-items .m-accordion__header * {
    font-family: '"Noto Sans KR", sans-serif'
}

.accordion.m-accordion-header-font-mercury-text-g1-roman .m-accordion__content-items .m-accordion__header * {
    font-family: 'Mercury Text G1 Roman'
}

.accordion.m-accordion-header-font-Helvetica-neue .m-accordion__content-items .m-accordion__header * {
    font-family: 'Helvetica Neue'
}

.accordion.m-accordion-header-font-hiragino-mincho-pron .m-accordion__content-items .m-accordion__header * {
    font-family: 'Hiragino Mincho ProN', 'MS PGothic'
}

.accordion.m-accordion-header-font-malgun-gothic-w35-regular .m-accordion__content-items .m-accordion__header * {
    font-family: 'Malgun Gothic W35 Regular'
}

.accordion.m-accordion-header-font-noto-sans-sc-regular .m-accordion__content-items .m-accordion__header * {
    font-family: 'Noto Sans SC Regular'
}

.accordion.m-accordion-header-font-noto-sans-vi-regular .m-accordion__content-items .m-accordion__header * {
    font-family: 'Noto Sans Regular'
}

.accordion.m-accordion-header-font-noto-serif-vi-regular .m-accordion__content-items .m-accordion__header * {
    font-family: 'Noto Serif Regular'
}

.accordion.m-accordion-header-font-brandon-medium .m-accordion__content-items .m-accordion__header * {
    font-family: 'Brandon Medium'
}

.accordion.m-accordion-header-font-brandon-bold .m-accordion__content-items .m-accordion__header * {
    font-family: 'Brandon Bold'
}

.accordion.m-accordion-header-font-brandon-regular .m-accordion__content-items .m-accordion__header * {
    font-family: 'Brandon Regular'
}

.accordion.m-accordion-header-white .m-accordion__content-items .m-accordion__header * {
    color: #fff !important
}

.accordion.m-accordion-header-black .m-accordion__content-items .m-accordion__header * {
    color: #000 !important
}

.accordion.m-accordion-header-abbott-dark-blue .m-accordion__content-items .m-accordion__header * {
    color: #002a3a !important
}

.accordion.m-accordion-header-abbott-light-blue .m-accordion__content-items .m-accordion__header * {
    color: #5bc2e7 !important
}

.accordion.m-accordion-header-abbott-medium-blue .m-accordion__content-items .m-accordion__header * {
    color: #004f71 !important
}

.accordion.m-accordion-header-abbott-yellow .m-accordion__content-items .m-accordion__header * {
    color: #ffd100 !important
}

.accordion.m-accordion-header-abbott-dark-yellow .m-accordion__content-items .m-accordion__header * {
    color: #ded548 !important
}

.accordion.m-accordion-header-abbott-green .m-accordion__content-items .m-accordion__header * {
    color: #7ccc6c !important
}

.accordion.m-accordion-header-abbott-fuscia .m-accordion__content-items .m-accordion__header * {
    color: #aa0061 !important
}

.accordion.m-accordion-header-abbott-orange .m-accordion__content-items .m-accordion__header * {
    color: #e4002b !important
}

.accordion.m-accordion-header-abbott-cyan .m-accordion__content-items .m-accordion__header * {
    color: #5bc2e7 !important
}

.accordion.m-accordion-header-abbott-blue .m-accordion__content-items .m-accordion__header * {
    color: #004f71 !important
}

.accordion.m-accordion-header-abbott-dark-gray .m-accordion__content-items .m-accordion__header * {
    color: #222731 !important
}

.accordion.m-accordion-header-abbott-primary-blue .m-accordion__content-items .m-accordion__header * {
    color: #009cde !important
}

.accordion.m-accordion-header-abbott-charcoal .m-accordion__content-items .m-accordion__header * {
    color: #222731 !important
}

.accordion.m-accordion-header-abbott-purple .m-accordion__content-items .m-accordion__header * {
    color: #470a68 !important
}

.accordion.m-accordion-header-abbott-red .m-accordion__content-items .m-accordion__header * {
    color: #e4002b !important
}

@media only screen and (min-width:992px) {
    .accordion #diversity-and-inclusion-accordion {
        max-width: 100%
    }
}

.accordion #accordion-about-product .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3 {
    width: 90%
}

@media only screen and (min-width:992px) {
    .accordion #accordion-about-product .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3 {
        font-size: 1.25rem;
        line-height: 1.75rem
    }
}

.accordion #accordion-about-abbott .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3,
.accordion #shareholder-faq .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3 {
    width: 90%
}

@media only screen and (min-width:992px) {

    .accordion #accordion-about-abbott .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3,
    .accordion #shareholder-faq .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3 {
        font-size: 1.25rem;
        line-height: 1.75rem
    }
}

.accordion #global-locations-contacts .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper {
    padding-left: 0
}

@media only screen and (min-width:992px) {
    .accordion #global-locations-contacts .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3 {
        font-size: 1.25rem;
        line-height: 1.75rem
    }
}

.accordion #global-locations-contacts .m-accordion__content .m-accordion__content-items .m-accordion__body {
    padding-left: 11px
}

.accordion #global-locations-contacts .m-accordion__content .m-accordion__content-items .m-accordion__body .text p a {
    font-size: .8rem;
    line-height: 1rem
}

@media only screen and (min-width:992px) {
    .accordion #accordion-product-list {
        max-width: 75%
    }
}

.accordion #accordion-product-list .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3 {
    width: 90%
}

@media only screen and (min-width:992px) {
    .accordion #accordion-product-list .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3 {
        font-size: 1.875rem;
        line-height: 2.25rem
    }
}

@media only screen and (min-width:992px) {
    .accordion #accordion-product-list .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper .m-accordion-icon .abt-icon {
        font-size: 1.875rem;
        font-weight: bold !important
    }
}

.accordion.accordion-font-20 .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3 {
    width: 90%
}

@media only screen and (min-width:992px) {
    .accordion.accordion-font-20 .m-accordion__content .m-accordion__content-items .m-accordion__header .m-accordion__title-wrapper h3 {
        font-size: 1.25rem;
        line-height: 1.75rem
    }
}

@media only screen and (max-width:767.98px) {
    .image.mob-image--corp-d-none {
        display: none
    }
}

@media only screen and (min-width:768px) {
    .image.image--corp-d-none {
        display: none
    }
}

.image.image-align--left .cmp-image {
    text-align: left
}

.image.image-align--left .cmp-image .cmp-image__image {
    margin-left: 0
}

.image.image-align--right .cmp-image {
    text-align: right
}

.image.image-align--right .cmp-image .cmp-image__image {
    margin-right: 0
}

.image.image-align--center .cmp-image {
    text-align: center
}

.image.image--spacing-bottom-5 .cmp-image {
    padding-bottom: 5px
}

.image.image-hover-transition .img-container .imghover {
    transition: all .3s ease
}

.image.image-hover-transition .img-container .imghover img {
    transition: all .3s ease;
    max-height: 602px
}

.container.a-container-spacing-40 {
    padding: 25px 40px 0 40px
}

@media only screen and (max-width:767.98px) {
    .container.a-container-spacing-40 {
        padding: 25px 16px 0 16px
    }
}

.container.a-container-spacing-40 .title * {
    font-size: 3.125rem;
    line-height: 3.5rem
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .container.a-container-spacing-40 .title * {
        font-size: 2.5rem;
        line-height: 2.75rem
    }
}

@media only screen and (max-width:767.98px) {
    .container.a-container-spacing-40 .title * {
        font-size: 1.5rem;
        line-height: 1.625rem
    }
}

.container.a-container-spacing-40 .columncontrol .container {
    max-width: 100%;
    padding: 0
}

@media only screen and (max-width:767.98px) {
    .container.a-container-spacing-40 .columncontrol .container {
        padding: 0 16px
    }
}

@media only screen and (max-width:767.98px) {
    .container.a-container-spacing-40 .columncontrol .columncontrol__column {
        padding: 0
    }
}

.container.a-container-spacing-40 .columncontrol .image {
    margin-right: 10%
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .container.a-container-spacing-40 .columncontrol .image {
        margin-right: 3%
    }
}

@media only screen and (max-width:767.98px) {
    .container.a-container-spacing-40 .columncontrol .image {
        margin-right: 0
    }
}

.container .cmp-container {
    background-image: none !important
}

.container.a-container-cmp--full-width {
    max-width: 100%
}

.container.a-container-cmp--full-width .cmp-container {
    max-width: 100% !important
}

.container.a-container-cmp--maximum-width {
    max-width: 100%;
    padding: 0 !important
}

.container.a-container-cmp--maximum-width .cmp-container {
    max-width: 100% !important;
    padding: 0 !important
}

.container.container-top-spacing-10 {
    padding-top: 10px !important
}

.container.container-top-spacing-25 {
    padding-top: 25px !important
}

.container.container-top-spacing-50 {
    padding-top: 50px !important
}

.container.container-bottom-spacing-10 {
    padding-bottom: 10px !important
}

.container.container-bottom-spacing-25 {
    padding-bottom: 25px !important
}

.container.container-bottom-spacing-50 {
    padding-bottom: 50px !important
}

.container.container-remove-top-space {
    padding-top: 0 !important
}

.container.container-remove-bottom-space {
    padding-bottom: 0 !important
}

.container.container-remove-left-space {
    padding-left: 0
}

.container.container-remove-right-space {
    padding-right: 0
}

.container.image-carousel-variation .image .imghover:hover .cmp-image__image {
    transform: unset !important
}

.container.image-carousel-variation .row .columncontrol__column .image .cmp-image:active,
.container.image-carousel-variation .cmp-image:focus {
    background-color: unset !important
}

.container.image-carousel-variation .row .columncontrol__column .image .cmp-image:active .image-text--top *,
.container.image-carousel-variation .cmp-image:focus .image-text--top * {
    color: #fff !important
}

.container.image-carousel-variation .row .columncontrol__column .image .cmp-image:active .cmp-image__image,
.container.image-carousel-variation .cmp-image:focus .cmp-image__image {
    opacity: .5 !important
}

@media only screen and (max-width:767.98px) {
    .container.image-carousel-variation .row .columncontrol__column .image {
        margin: 0 !important
    }

    .container.image-carousel-variation .image-text--top {
        padding-left: 16px;
        padding-right: 15px;
        right: 0;
        left: 0
    }

    .container.image-carousel-variation .image-text--top * {
        font-family: 'BrandonGrotesqueBold' !important
    }
}

.container.image-carousel-variation .o-hero-carousel .slick-dots {
    display: none !important
}

.container.image-carousel-variation .o-hero-carousel .slick-arrow:before {
    font-size: 4.375rem;
    font-weight: normal
}

.container.image-carousel-variation .abt-icon {
    --hero-carousel-arrow-width: 70px;
    --hero-carousel-arrow-height: 70px
}

.container.image-carousel-variation .o-hero-carousel .slick-prev {
    left: -50px
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .container.image-carousel-variation .o-hero-carousel .slick-prev {
        left: -5px
    }
}

.container.image-carousel-variation .o-hero-carousel .slick-next {
    right: -50px
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .container.image-carousel-variation .o-hero-carousel .slick-next {
        right: -5px
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--fast-facts .a-container__content .cmp-container {
        display: flex
    }

    .container.container-variation--fast-facts .a-container__content .cmp-container .image.image--corp-d-none {
        margin: auto !important;
        min-width: 70px
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--fast-facts .a-container__content .cmp-container .image+.container {
        padding: 15px
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--fast-facts .a-container__content .cmp-container .image+.container .cmp-container {
        display: block
    }
}

.container.container-variation--fast-facts .a-container__content .cmp-container .image+.container .cmp-container .text {
    text-align: center
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--fast-facts .a-container__content .cmp-container .image+.container .cmp-container .text {
        text-align: left
    }
}

@media only screen and (min-width:768px) {
    .container.container-variation--float-top {
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
        top: -124px;
        margin-bottom: -125px !important;
        z-index: 1
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--float-top {
        padding-left: 0;
        padding-right: 0
    }
}

.container.container-variation--float-top .a-container__content>.cmp-container {
    padding-left: 0;
    padding-right: 0
}

@media only screen and (min-width:768px) {
    .container.container-variation--float-top .a-container__content>.cmp-container>.columncontrol {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--float-top .a-container__content>.cmp-container>.columncontrol>.container {
        padding-left: 0;
        padding-right: 0
    }
}

@media only screen and (min-width:768px) {
    .container.container-social-media .a-container__row .a-container__content {
        padding-top: 23%;
        padding-bottom: 380px
    }

    .container.container-social-media .a-container__row .a-container__content .cmp-container {
        width: 60%;
        margin: 0 auto
    }

    .container.container-social-media .a-container__row .a-container__content .m-card__media .m-card__wrap .m-card__image .cmp-image__image {
        object-fit: contain;
        max-width: 100%;
        max-height: 100%;
        width: 50px;
        height: auto
    }
}

.container.container-variation--related-info-panel .cmp-container {
    border: 1px solid #ccc
}

@media only screen and (min-width:768px) {
    .container.container-variation--related-info-panel .cmp-container {
        height: 400px !important
    }
}

@media only screen and (min-width:1200px) {
    .container.container-variation--related-info-panel .cmp-container {
        height: 450px !important
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--related-info-panel .cmp-container {
        display: flex;
        flex-direction: row-reverse
    }

    .container.container-variation--related-info-panel .cmp-container .image {
        align-self: center;
        width: 40%
    }

    .container.container-variation--related-info-panel .cmp-container .text {
        width: 60%
    }
}

.container.container-variation--related-info-panel .cmp-container .text {
    padding: 15px
}

.container.container-variation--related-info-panel .cmp-container:hover {
    background-color: #d9d9d7
}

.container.container-variation--related-info-panel .cmp-container:hover .image .img-container .wrapper .image-text .toggle-overlay {
    display: block
}

.container.container-variation--related-info-panel-v2 .cmp-container {
    border: 1px solid #ccc
}

@media only screen and (min-width:768px) {
    .container.container-variation--related-info-panel-v2 .cmp-container {
        height: 400px !important
    }
}

@media only screen and (min-width:1200px) {
    .container.container-variation--related-info-panel-v2 .cmp-container {
        height: 450px !important
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--related-info-panel-v2 .cmp-container {
        display: flex;
        flex-direction: row-reverse
    }

    .container.container-variation--related-info-panel-v2 .cmp-container .image {
        align-self: center;
        width: 40%
    }

    .container.container-variation--related-info-panel-v2 .cmp-container .text {
        width: 60%
    }
}

.container.container-variation--related-info-panel-v2 .cmp-container .text {
    padding: 15px
}

.container.container-variation--related-info-panel-v2 .cmp-container:hover {
    background-color: #d9d9d7
}

.container.container-variation--related-info-panel-v2 .cmp-container:hover .image .img-container .wrapper .image-text .toggle-overlay {
    display: block
}

@media only screen and (max-width:767.98px) {

    .container.container-variation--related-info-panel-v2 .text .cmp-text p,
    .container.container-variation--related-info-panel-v2 .text .cmp-text span {
        display: none
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel .cmp-container article.m-card {
        height: auto !important;
        padding-bottom: 10px;
        border-bottom: 1px solid #888b8d
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel .cmp-container article.m-card .m-card-link {
        display: flex;
        flex-direction: row-reverse
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel .cmp-container article.m-card .m-card-link .m-card__body {
        width: 55%;
        padding: 10px 12px 0 0
    }
}

.container.container-variation--product-related-info-panel .cmp-container article.m-card .m-card-link .m-card__body .m-card__title.h4 {
    font-size: 1rem;
    line-height: 1.375rem
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel .cmp-container article.m-card .m-card-link .m-card__body .m-card__description {
        display: none
    }
}

.container.container-variation--product-related-info-panel .cmp-container article.m-card .m-card-link .m-card__body .m-card__description p {
    font-size: 1rem;
    line-height: 1.375rem;
    color: #000
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel .cmp-container article.m-card .m-card-link .m-card__media {
        width: 45%;
        max-height: 80px
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel .cmp-container article.m-card .m-card-link .m-card__media .m-card__image {
        max-height: 80px
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel-mob .cmp-container article.m-card {
        height: auto !important;
        padding-bottom: 10px;
        border-bottom: 1px solid #888b8d
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel-mob .cmp-container article.m-card .m-card-link {
        display: flex;
        flex-direction: row-reverse
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel-mob .cmp-container article.m-card .m-card-link .m-card__body {
        width: 55%;
        padding: 10px 12px 0 0
    }
}

.container.container-variation--product-related-info-panel-mob .cmp-container article.m-card .m-card-link .m-card__body .m-card__title.h4 {
    font-size: 1rem;
    line-height: 1.375rem
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel-mob .cmp-container article.m-card .m-card-link .m-card__body .m-card__description {
        display: none
    }
}

.container.container-variation--product-related-info-panel-mob .cmp-container article.m-card .m-card-link .m-card__body .m-card__description p {
    font-size: 1rem;
    line-height: 1.375rem;
    color: #000
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel-mob .cmp-container article.m-card .m-card-link .m-card__media {
        width: 45%;
        max-height: 80px
    }
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--product-related-info-panel-mob .cmp-container article.m-card .m-card-link .m-card__media .m-card__image {
        max-height: 80px
    }
}

.container.container-variation--product-related-info-panel-mob .cmp-container {
    border: none !important
}

.container.container-variation--article-isi {
    padding: 0 10px 10px;
    margin-bottom: 2.5rem !important
}

.container.container-variation--article-isi>section .cmp-container .text {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 20px 12px
}

.container.container-variation--article-isi>section .cmp-container .text .cmp-text * {
    margin-bottom: 0
}

.container.container-variation--article-isi>section .cmp-container .container {
    padding: 0;
    margin: 0 !important;
    background-color: #fff
}

.container.container-variation--article-isi>section .cmp-container .container .a-container__content {
    border-top: 1px solid #63666a;
    border-bottom: 1px solid #63666a;
    padding: 10px;
    overflow-y: auto;
    max-height: 328px
}

.container.container-variation--article-isi>section .cmp-container .container .a-container__content::-webkit-scrollbar {
    width: 23px
}

.container.container-variation--article-isi>section .cmp-container .container .a-container__content::-webkit-scrollbar-thumb {
    background-color: #63666a;
    border-left: 8px solid #fff;
    border-right: 8px solid #fff
}

.container.container-variation--article-isi>section .cmp-container .container .a-container__content::-webkit-scrollbar-track {
    background-color: #63666a;
    border-left: 11px solid #fff;
    border-right: 11px solid #fff;
    margin: 10px
}

.container.container-variation--article-isi>section .cmp-container .container .text {
    padding: 0
}

.container.container-variation--article-isi>section .cmp-container .container .text .cmp-text p {
    margin-bottom: 10px
}

.container.container-variation--article-isi>section .cmp-container .container .text .cmp-text a:hover,
.container.container-variation--article-isi>section .cmp-container .container .text .cmp-text a:focus {
    text-decoration: none
}

.container.container-variation--article-isi>section .cmp-container .container .text .cmp-text a[href^="#"] {
    color: #009cde
}

.container.container-variation--cf-hubarticlebrief {
    padding: 0 !important
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor {
    text-decoration: none;
    color: #000
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment {
    margin-bottom: 15px
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    position: absolute;
    top: 5%;
    left: 5%;
    color: #019cde;
    opacity: 0;
    text-transform: uppercase
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'BrandonGrotesqueBold'
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    filter: brightness(50%)
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    opacity: 1;
    z-index: 100
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__title {
    display: none
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__elements {
    position: relative
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    width: 100%;
    height: 145px
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    text-transform: uppercase;
    font-family: 'BrandonGrotesqueBold'
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value,
.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value,
.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading p,
.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * p {
    margin: 0
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading {
    display: none
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Georgia'
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'BrandonGrotesqueMedium';
    color: #939799
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment .article-ahnchor .cmp-contentfragment__element-title {
    display: none
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment:nth-child(2) .cmp-contentfragment__elements .cmp-contentfragment-text-wrapper,
.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment:nth-child(2) .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription {
    padding-left: 10px;
    padding-right: 10px
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment:nth-child(2) .cmp-contentfragment__elements .cmp-contentfragment-text-wrapper i,
.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment:nth-child(2) .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription i {
    font-style: normal
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment:not(:nth-child(2)) .cmp-contentfragment {
    padding-left: 10px;
    padding-right: 10px
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment:not(:nth-child(2)) .cmp-contentfragment .cmp-contentfragment__elements {
    display: flex;
    flex-direction: row;
    margin-top: 0
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment:not(:nth-child(2)) .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage img {
    height: auto;
    filter: brightness(100%);
    width: 112px
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment:not(:nth-child(2)) .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment-text-wrapper {
    padding-left: 10px;
    flex: 80%
}

.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment:not(:nth-child(2)) .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
.container.container-variation--cf-hubarticlebrief .cmp-container .contentfragment:not(:nth-child(2)) .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--duration {
    display: none
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--cf-hubarticlebrief .cmp-contentfragment__elements {
        margin: 0
    }
}

.container.container-variation--cf-hubarticlebrief .button .btn .abt-icon+span {
    padding-left: 0
}

.container.container-cookie-policy {
    bottom: 0;
    position: fixed;
    z-index: 1000;
    padding-top: 0
}

.container.container-cookie-policy .button .btn {
    background: #b3b3b3;
    font-weight: normal;
    --button-border-radius: 0;
    margin-left: 5px;
    text-transform: lowercase
}

.container.container-cookie-policy .button .btn:hover {
    background: #b3b3b3
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .container.container-cookie-policy .row .columncontrol__column:nth-child(1) {
        flex: 0 0 100%;
        max-width: 100%
    }

    .container.container-cookie-policy .button .btn {
        width: 100%
    }
}

@media only screen and (min-width:768px) {
    .container.container-footer--left-notch {
        border-top-left-radius: 50px;
        position: relative
    }

    .container.container-footer--left-notch:before {
        background: radial-gradient(100px circle at 0 0, transparent 50%, #000 0);
        content: "";
        display: block;
        height: 50px;
        position: absolute;
        right: 0;
        top: -50px;
        width: 50px
    }
}

@media only screen and (min-width:1200px) {
    .container.container-footer--left-notch .cmp-container {
        max-width: 1400px
    }
}

@media only screen and (min-width:768px) {
    .container.container-footer--right-notch {
        border-top-right-radius: 50px;
        position: relative
    }

    .container.container-footer--right-notch:before {
        background: radial-gradient(100px circle at 100% 0, transparent 50%, #000 0);
        content: "";
        display: block;
        height: 50px;
        position: absolute;
        left: 0;
        top: -50px;
        width: 50px
    }
}

@media only screen and (min-width:1200px) {
    .container.container-footer--right-notch .cmp-container {
        max-width: 1400px
    }
}

@media only screen and (min-width:768px) {
    .container.float-footer-top--175px {
        margin-top: -175px !important
    }
}

.container.top-spacing-100:not(.float-footer-top) {
    padding-top: 100px !important
}

.container.top-spacing-50:not(.float-footer-top) {
    padding-top: 50px !important
}

.container .container-slider-curve.rounded-type {
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    left: 0;
    right: 0;
    bottom: -3px
}

.container .container-slider-curve.notch-type {
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    left: 0;
    right: 0;
    bottom: 100%;
    margin-bottom: -5px !important
}

.container .container-split-right-curve {
    position: absolute;
    width: 100%;
    bottom: 100%
}

.container .container-split-right-curve .img {
    width: 100%
}

.container .container-split-left-curve {
    position: absolute;
    width: 100%;
    bottom: 100%;
    margin-bottom: -5px
}

.container .container-split-left-curve .img {
    width: 100%
}

.container .a-container__media .slider-bg-curve-with-image {
    height: 623px;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    margin-top: -73px
}

.container .a-container__media .slider-bg-curve-with-image.rounded-type {
    margin-top: -115px !important
}

@media only screen and (max-width:767.98px) {
    .container .a-container__media .slider-bg-curve-with-image {
        display: none
    }
}

.container.curve-image-height-stretch {
    margin-bottom: 100px
}

.container.curve-image-height-stretch .a-container__media .slider-bg-curve-with-image {
    height: 725px !important
}

.container.container--article-page-variation .cmp-container .text .cmp-text {
    color: #333
}

.container.container--article-page-variation .cmp-container .text .cmp-text h1,
.container.container--article-page-variation .cmp-container .text .cmp-text h2,
.container.container--article-page-variation .cmp-container .text .cmp-text h3,
.container.container--article-page-variation .cmp-container .text .cmp-text h4,
.container.container--article-page-variation .cmp-container .text .cmp-text h5,
.container.container--article-page-variation .cmp-container .text .cmp-text h6 {
    font-size: 2.813rem
}

.container.container--article-page-variation .cmp-container .text:nth-child(2) {
    margin-bottom: 27px !important
}

.container.container--article-page-variation .cmp-container .text:nth-child(2) h1,
.container.container--article-page-variation .cmp-container .text:nth-child(2) h2,
.container.container--article-page-variation .cmp-container .text:nth-child(2) h3,
.container.container--article-page-variation .cmp-container .text:nth-child(2) h4,
.container.container--article-page-variation .cmp-container .text:nth-child(2) h5,
.container.container--article-page-variation .cmp-container .text:nth-child(2) h6,
.container.container--article-page-variation .cmp-container .text:nth-child(2) p {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.313em
}

.container.container--article-page-variation .cmp-container .image {
    margin-top: 0 !important
}

.container.container--article-title-variation {
    padding: 0;
    margin: 0 auto
}

@media only screen and (max-width:767.98px) {
    .container.container--article-title-variation {
        padding: 0 15px
    }
}

.container.container--article-title-variation .cmp-container .title:first-child {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important
}

.container.container--article-title-variation .cmp-container .title:nth-child(2) {
    margin-bottom: 27px !important
}

.container.container--article-title-variation .cmp-container .title .cmp-title h2 {
    color: #222731;
    font-size: 2.813rem;
    font-weight: 500;
    line-height: 3.438rem
}

.container.container--article-title-variation .cmp-container .title .cmp-title h3 {
    color: #222731;
    font-size: 2rem;
    font-style: italic;
    line-height: 2.625rem
}

@media only screen and (max-width:767.98px) {
    .container.container--article-title-variation .cmp-container .title .cmp-title h3 {
        font-size: 1.25rem;
        line-height: 1.5em
    }
}

.container.container--article-title-variation .cmp-container .image {
    margin-top: 0 !important
}

@media only screen and (max-width:767.98px) {
    .container.newsroom-article-pg {
        padding: 1rem .8rem
    }
}

.container.newsroom-article-pg .container .a-container__row .a-container__content .cmp-container .title .cmp-title h2 {
    font-size: 2.813rem
}

.container.newsroom-article-pg .container .a-container__row .a-container__content .cmp-container .title.a-title-color--dark-charcoal.font-georgia .cmp-title h2 {
    font-style: italic;
    font-size: 2rem;
    line-height: 1.313em
}

.container.container-variation--copyright {
    width: 75%;
    margin: 0 auto;
    padding: 0
}

.container.container-variation--copyright .a-container__row .cmp-container .cmp-text p {
    font-size: 1rem;
    line-height: 1.3em;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.container.container-variation--copyright .a-container__row .cmp-container .cmp-text p a {
    font-size: 1rem;
    line-height: 1.3em;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #428bca
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol {
    margin-top: 25px !important
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column {
    padding: 0;
    margin: 0
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container {
    padding: 0
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .a-input-field .form-group.validation-require .input-group .a-input-control {
    background: url("../../../content/dam/corp/abbott/global/icons/error_red2.png") right -2px center no-repeat #fefd55
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container #Identifythenformation p {
    box-shadow: none;
    width: 100%;
    margin: 20px 0 0;
    line-height: normal
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field {
    height: 38px;
    --dropdown-field-height: 38px;
    --dropdown-field-max-height: 38px;
    padding: 9px 6px 6px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field .a-dropdown__placeholder {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field .a-dropdown__menu {
    background-color: #ffc;
    border: 1px solid #000
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field .a-dropdown__menu li span {
    padding: 3px 12px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field.active-selection {
    background-color: #b8f5b1
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field.active-selection .a-dropdown-selected {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field.active {
    background-color: #ffc
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .checkbox .a-checkbox .a-checkbox__label .a-checkbox__text h5 {
    font-size: 1.063rem;
    line-height: 1.563rem;
    margin-top: -5px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .checkbox .checkbox--text-require {
    font-size: .9rem;
    color: #e91e63;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .checkbox .checkbox--text-require .abt-icon {
    font-size: 1.25rem;
    color: #fefd55;
    top: 4px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .text #ConfirmDataSubject {
    max-height: 200px;
    overflow-y: scroll;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 6px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .text #ConfirmDataSubject .privacyPolicy {
    margin: 0 20px 0 10px !important;
    color: #000 !important;
    font-size: 1.063rem;
    font-weight: 600;
    float: none !important;
    padding-left: 13px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .text #ConfirmDataSubject .privacyPolicy p,
.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .text #ConfirmDataSubject .privacyPolicy li {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.563rem
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .text #ConfirmDataSubject .privacyPolicy p {
    box-shadow: none;
    width: 100%;
    margin: 20px 0 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields input {
    border: 1px solid #333;
    height: 38px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 6px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields input.valid-input {
    background-color: #b8f5b1
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .validation-error input,
.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .validation-regex input {
    background-color: #fefd55
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-require,
.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-error,
.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-regex {
    font-size: .9rem;
    color: #e91e63;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-require .abt-icon,
.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-error .abt-icon,
.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-regex .abt-icon {
    font-size: 1.25rem;
    color: #fefd55;
    top: 4px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields.tooltip-fields .form-label__align {
    display: block;
    width: 4%;
    float: right
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields.tooltip-fields .form-label__align .a-tooltip {
    margin-top: 8px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields.tooltip-fields .form-label__align .a-tooltip .abt-icon {
    font-size: 1.4rem
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields.tooltip-fields .input-group {
    display: block;
    width: 96%;
    float: left;
    margin-bottom: 16px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields.tooltip-fields .input-group input {
    width: 100%
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .columncontrol .container {
    padding: 0 15px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .columncontrol .container .row .columncontrol__column:first-child {
    padding-right: 15px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container .o-form-container__buttons .button .btn {
    padding: 6px 6px 1px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container .o-form-container__buttons .button .btn span {
    font-size: 1.25rem;
    font-family: 'Arial';
    font-weight: 700
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container .o-form-container__buttons .button.font-brandon-grotesque-black .btn {
    padding: 6px 18px 1px
}

.container.container-variation--copyright .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container .o-form-container__buttons .button.font-brandon-grotesque-black .btn span {
    font-size: 1.25rem;
    font-family: 'BrandonGrotesqueBlack';
    font-weight: 500
}

.container.container-variation--contactus {
    width: 90%;
    margin: 0 auto;
    padding: 0
}

@media only screen and (min-width:992px) {
    .container.container-variation--contactus {
        width: 75%
    }
}

.container.container-variation--contactus .a-container__row .cmp-container .cmp-text p {
    font-size: 1rem;
    line-height: 1.3em;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.container.container-variation--contactus .a-container__row .cmp-container .cmp-text p a {
    font-size: 1rem;
    line-height: 1.3em;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #428bca
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol {
    margin-top: 25px !important
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column {
    padding: 0;
    margin: 0
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container {
    padding: 0
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .a-input-field .form-group.validation-require .input-group .a-input-control {
    background: url("../../../content/dam/corp/abbott/global/icons/error_red2.png") right -2px center no-repeat #fefd55
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container #Identifythenformation p {
    box-shadow: none;
    width: 100%;
    margin: 20px 0 0;
    line-height: normal
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field {
    height: 38px;
    --dropdown-field-height: 38px;
    --dropdown-field-max-height: 38px;
    padding: 9px 6px 6px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field .a-dropdown__placeholder {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field .a-dropdown__menu {
    border: 1px solid #000
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field .a-dropdown__menu li span {
    padding: 3px 12px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .a-dropdown .a-dropdown__field.active-selection .a-dropdown-selected {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .checkbox .a-checkbox .a-checkbox__label .a-checkbox__text h5 {
    font-size: 1.063rem;
    line-height: 1.563rem;
    margin-top: -5px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .checkbox .checkbox--text-require {
    font-size: .9rem;
    color: #e91e63;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .options .checkbox .checkbox--text-require .abt-icon {
    font-size: 1.25rem;
    color: #fefd55;
    top: 4px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .text #ConfirmDataSubject {
    max-height: 200px;
    overflow-y: scroll;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 6px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .text #ConfirmDataSubject .privacyPolicy {
    margin: 0 20px 0 10px !important;
    color: #000 !important;
    font-size: 1.063rem;
    font-weight: 600;
    float: none !important;
    padding-left: 13px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .text #ConfirmDataSubject .privacyPolicy p,
.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .text #ConfirmDataSubject .privacyPolicy li {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.563rem
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .text #ConfirmDataSubject .privacyPolicy p {
    box-shadow: none;
    width: 100%;
    margin: 20px 0 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields input {
    border: 1px solid #333;
    height: 38px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 6px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields input.valid-input {
    background-color: #b8f5b1
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .validation-error input,
.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .validation-regex input {
    background-color: #fefd55
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-require,
.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-error,
.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-regex {
    font-size: .9rem;
    color: #e91e63;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-require .abt-icon,
.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-error .abt-icon,
.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields .form-text.a-input-field--text-regex .abt-icon {
    font-size: 1.25rem;
    color: #fefd55;
    top: 4px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields.tooltip-fields .form-label__align {
    display: block;
    width: 4%;
    float: right
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields.tooltip-fields .form-label__align .a-tooltip {
    margin-top: 8px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields.tooltip-fields .form-label__align .a-tooltip .abt-icon {
    font-size: 1.4rem
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields.tooltip-fields .input-group {
    display: block;
    width: 96%;
    float: left;
    margin-bottom: 16px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .fields.tooltip-fields .input-group input {
    width: 100%
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .columncontrol .container {
    padding: 0 15px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container form .form-container .columncontrol .container .row .columncontrol__column:first-child {
    padding-right: 15px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container .o-form-container__buttons .button .btn {
    padding: 6px 6px 1px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container .o-form-container__buttons .button .btn span {
    font-size: 1.25rem;
    font-family: 'Arial';
    font-weight: 700
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container .o-form-container__buttons .button.font-brandon-grotesque-black .btn {
    padding: 6px 18px 1px
}

.container.container-variation--contactus .a-container__row .cmp-container .columncontrol .container .row .columncontrol__column .formcontainer .o-form-container__wrapper .container .o-form-container__buttons .button.font-brandon-grotesque-black .btn span {
    font-size: 1.25rem;
    font-family: 'BrandonGrotesqueBlack';
    font-weight: 500
}

.container.a-container--itall .a-container__content .cmp-text h2,
.container.a-container--edge .a-container__content .cmp-text h2 {
    font-size: 2rem
}

@media only screen and (min-width:992px) {

    .container.a-container--itall .a-container__content .cmp-text h2,
    .container.a-container--edge .a-container__content .cmp-text h2 {
        font-size: 2.813rem
    }
}

.container.a-container--itall .a-container__content .cmp-text p,
.container.a-container--edge .a-container__content .cmp-text p {
    font-size: 1.125em;
    line-height: 1.333em
}

.container.a-container--itall .a-container__content .form-container .cmp-text p,
.container.a-container--edge .a-container__content .form-container .cmp-text p {
    font-size: 1rem
}

.container.a-container--preferences .o-form-container__main-form .form-container .cmp-container .columncontrol {
    padding-bottom: 40px
}

.container.a-container--preferences .o-form-container__main-form .form-container .cmp-container .columncontrol .input-group input {
    font-size: 1rem
}

.container.a-container--preferences .o-form-container__main-form .form-container .cmp-container .text {
    padding: 10px 0
}

.container.a-container--preferences .o-form-container__main-form .form-container .cmp-container .options .a-checkbox__text {
    font-family: 'BrandonGrotesqueMedium';
    color: #63666a;
    font-size: .875rem;
    line-height: normal;
    text-transform: capitalize
}

.container.a-container--eudpo-variation {
    padding-top: 20px !important
}

@media only screen and (min-width:992px) {
    .container.a-container--eudpo-variation {
        width: 80%;
        margin: 0 auto
    }
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .cmp-text p {
    font-size: 1rem;
    line-height: 1.3em;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container {
    padding: 0
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container {
    padding: 0
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .columncontrol .container .columncontrol__column {
    padding-left: 0
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .m-file-uploader {
    width: 100%
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .m-file-uploader .a-input-field .filepond--root {
    width: 100%;
    height: 38px
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .m-file-uploader .a-input-field .filepond--drop-label {
    min-height: 35px
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .m-file-uploader .a-input-field .filepond--drip {
    border: 1px solid #000;
    border-radius: 6px;
    width: 99%
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .fields input {
    border: 1px solid #333;
    height: 38px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 6px
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .fields textarea {
    height: 130px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000;
    padding: 6px
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .fields .form-text.a-input-field--text-require,
.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .fields .form-text.a-input-field--text-error {
    font-size: .9rem;
    color: #e91e63;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .fields .form-text.a-input-field--text-require .abt-icon,
.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .fields .form-text.a-input-field--text-error .abt-icon {
    font-size: 1.25rem;
    color: #fefd55;
    top: 4px
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .options .a-dropdown .a-dropdown__field {
    height: 38px;
    --dropdown-field-height: 38px;
    --dropdown-field-max-height: 38px;
    padding: 9px 35px 6px 6px
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .options .a-dropdown .a-dropdown__field .a-dropdown__placeholder {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000;
    display: inline-block;
    height: 20px;
    overflow: hidden
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .options .a-dropdown .a-dropdown__field .a-dropdown-selected {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000;
    display: inline-block;
    height: 20px;
    overflow: hidden
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .options .a-dropdown .a-dropdown__field .a-dropdown__menu {
    background-color: #ffc;
    border: 1px solid #000
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .options .a-dropdown .a-dropdown__field .a-dropdown__menu li span {
    padding: 3px 12px
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .options .a-dropdown .a-dropdown__field::after {
    right: 5px;
    font-size: .625rem
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .options .checkbox .a-checkbox .a-checkbox__label .a-checkbox__text {
    color: #000;
    font-family: 'Arial';
    font-size: 1.063rem;
    font-weight: 600
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .options .checkbox .checkbox--text-require {
    font-size: .9rem;
    color: #e91e63;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .options .checkbox .checkbox--text-require .abt-icon {
    font-size: 1.25rem;
    color: #fefd55;
    top: 4px
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .cmp-text p {
    width: 100%;
    line-height: 1.2em;
    color: #000;
    font-family: 'Arial';
    font-size: 1rem
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .cmp-text#ConfirmDataSubject {
    margin-top: 30px
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .form-container .cmp-container .row {
    margin: 0
}

.container.a-container--eudpo-variation .a-container__row .cmp-container .columncontrol .container .o-form-container__buttons .button .btn span {
    font-size: 1.25rem;
    font-family: 'BrandonGrotesqueBold'
}

.container.container-variation--lasting-impact .text .cmp-text h3 {
    font-size: 1.875rem
}

.container.container-variation--lasting-impact .columncontrol {
    padding-bottom: 75px
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--lasting-impact .columncontrol {
        padding-top: 50px;
        background: #fff
    }
}

@media only screen and (min-width:768px) {
    .container.container-variation--lasting-impact .columncontrol .container .row .columncontrol__column {
        flex: 0 0 25%
    }
}

.container.container-variation--lasting-impact .columncontrol .container .row .columncontrol__column .image .cmp-image {
    display: flex;
    justify-content: end
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--lasting-impact .columncontrol .container .row .columncontrol__column .image .cmp-image {
        justify-content: center
    }
}

.container.container-variation--lasting-impact .columncontrol .container .row .columncontrol__column .image .cmp-image img.cmp-image__image {
    max-width: 150px
}

.container.container-variation--lasting-impact .columncontrol .container .row .columncontrol__column .text .cmp-text p {
    margin-left: 30px;
    font-family: 'BrandonGrotesqueBold';
    font-size: 1.25rem;
    line-height: 1.75rem
}

@media only screen and (max-width:767.98px) {
    .container.container-variation--lasting-impact .columncontrol .container .row .columncontrol__column .text .cmp-text p {
        margin: 30px 50px;
        color: #000
    }
}

@media only screen and (min-width:992px) {
    .container.container-variation--lasting-impact .columncontrol .container .row .columncontrol__column .text .cmp-text p {
        width: 60%
    }
}

@media only screen and (min-width:1200px) {
    .container.container-variation--lasting-impact .columncontrol .container .row .columncontrol__column .text .cmp-text p {
        margin-top: 20px
    }
}

.container #advancing-diversity .cmp-text ul li,
.container #recognitions .cmp-text ul li {
    color: #000;
    font-size: 1.125rem
}

.container #advancing-diversity .cmp-text ul li a,
.container #recognitions .cmp-text ul li a {
    font-size: 1.125rem
}

@media only screen and (min-width:1200px) {
    .container #business-areas {
        max-width: 960px
    }
}

@media only screen and (min-width:992px) {
    .container #partners-suppliers-footer {
        max-width: 75%;
        padding: 0
    }
}

@media only screen and (min-width:992px) {
    .container.container-with-adjustment {
        max-width: 75%;
        padding: 0
    }
}

@media only screen and (min-width:992px) {
    .container.container-with-adjustment-artcle {
        max-width: 75%;
        padding: 0
    }
}

@media only screen and (min-width:992px) {
    .container.container-with-adjustment-artcle .cmp-container {
        padding: 0
    }
}

@media only screen and (min-width:992px) {
    .container #a-care-product {
        max-width: 77%;
        padding: 0
    }
}

.container #a-care-product .cmp-text h3 span {
    font-size: 1.5rem;
    line-height: 1.125rem
}

.container #a-care-product .cmp-text p {
    font-size: .95rem;
    line-height: 1.45rem
}

.container #a-care-product .cmp-text h4 {
    font-size: 1.188rem
}

.container #a-care-product .cmp-text h4 p {
    font-size: .95rem;
    line-height: 1.45rem
}

@media only screen and (min-width:768px) {
    .container.our-heritage-variation {
        top: -20px !important
    }
}

.container.our-heritage-variation h3 .paraHeading {
    font-size: 1.425rem;
    line-height: 1.6rem
}

.container.our-heritage-variation p {
    font-size: .95rem;
    line-height: 1.375rem
}

.container.our-heritage-variation h4 {
    font-size: 1.188rem
}

.container.our-heritage-variation .button .m-popup .a-link .btn span {
    font-size: .8rem
}

.container #newsroom-latest-nutrition-news .text {
    margin: 0 !important
}

.container #newsroom-latest-nutrition-news .text .cmp-text p {
    margin-bottom: 30px
}

.container.accordion-header-font-20px .accordion .m-accordion__content .m-accordion__header .m-accordion__title-wrapper h3 {
    font-size: 1.25rem
}

@media only screen and (min-width:1200px) {
    .container #media-center {
        max-width: 98%
    }
}

@media only screen and (min-width:1200px) {
    .container #media-center .sectiontitle .section-content h2 {
        font-size: 3rem
    }
}

.container #media-center .columncontrol .m-card .m-card__body p {
    line-height: 1.3
}

@media only screen and (min-width:992px) {
    .container #site-map-content .navbar {
        padding: .5rem 0
    }
}

@media only screen and (min-width:992px) {
    .container #site-map-content .navbar .navbar-collapse .m-mega-menu__mobile-item-wrapper .m-mega-menu__item {
        padding-left: 0
    }
}

@media only screen and (min-width:992px) {
    .container #responsibility {
        max-width: 75%;
        padding: 0
    }
}

@media only screen and (min-width:992px) {
    .container.container-width-70-percent {
        max-width: 70%
    }
}

@media only screen and (min-width:768px) {
    .container #container-subscribe .container {
        padding-left: 0;
        padding-right: 0
    }
}

@media only screen and (min-width:992px) {
    .container #honors-awards-section {
        padding: 0 35px
    }
}

@media only screen and (max-width:767.98px) {
    .container #honors-awards-section>.container {
        padding: 0
    }
}

@media only screen and (min-width:992px) {
    .container #focus-area-container {
        padding-left: 15%
    }
}

@media only screen and (min-width:992px) {
    .container #section-honors-container {
        padding: 0 50px
    }
}

.featurescard.feature-card--text-color-primary-blue .o-features-card__content * {
    --feature-card-para-color: #009cde
}

.featurescard.feature-card--corporateoffice-font .o-features-card .o-features-card__block .cmp-title__text {
    font-family: 'Times New Roman';
    font-size: 1.17rem
}

.featurescard.feature-card--corporateoffice-font .o-features-card .o-features-card__block P {
    font-family: 'Times New Roman';
    font-size: 1rem
}

.featurescard.feature-card--relatedlinks-font .o-features-card .o-features-card__block .o-features-card__title {
    height: auto !important
}

.featurescard.feature-card--relatedlinks-font .o-features-card .o-features-card__block .cmp-title__text {
    font-weight: 400
}

.featurescard.feature-card--remove-margin-bottom .o-features-card__title {
    --feature-card-margin: 0
}

.featurescard.feature-card--remove-margin-bottom .o-features-card__title .title .cmp-title__text {
    padding-left: 0
}

.featurescard.feature-card--img-left .o-features-card__image .image .cmp-image {
    text-align: left
}

.featurescard.feature-card--img-right .o-features-card__image .image .cmp-image {
    text-align: right
}

.featurescard.feature-card--hover-color .o-features-card__block .o-features-card__title .title .cmp-title .cmp-title__text a:hover,
.featurescard.feature-card--hover-color .o-features-card__block .o-features-card__title .title .cmp-title .cmp-title__text a:focus {
    color: #63666a;
    text-decoration: none
}

.featurescard.feature-card--hover-color .o-features-card__content .cmp-text a:hover,
.featurescard.feature-card--hover-color .o-features-card__content .cmp-text a a:focus {
    color: #63666a;
    text-decoration: none
}

.abbott-breadcrumb.abbott-breadcrumb__fixed {
    position: relative;
    margin: 0 !important;
    height: 32px
}

.abbott-breadcrumb.abbott-breadcrumb__fixed .container {
    background-color: #d9d9d6;
    padding: 8px 40px 4px !important;
    position: fixed;
    max-width: 100%;
    z-index: 101
}

.abbott-breadcrumb.abbott-breadcrumb__fixed .container .a-breadcrumb {
    margin-left: 0
}

.abbott-breadcrumb.abbott-breadcrumb__fixed .container .a-breadcrumb .a-breadcrumb__list {
    font-weight: normal
}

@media only screen and (min-width:1441px) {
    .abbott-breadcrumb.abbott-breadcrumb__fixed .container {
        width: 1440px
    }
}

.abbott-breadcrumb.abbott-breadcrumb__fixed .a-breadcrumb__item .a-breadcrumb--link {
    color: #888b8d !important;
    text-transform: uppercase;
    font-size: .75rem
}

.abbott-breadcrumb.abbott-breadcrumb__fixed .a-breadcrumb__item .a-breadcrumb--link:hover {
    color: #009cde !important;
    text-decoration: none !important
}

.abbott-breadcrumb.abbott-breadcrumb__fixed .a-breadcrumb__item.a-breadcrumb--active {
    color: #009cde !important;
    text-transform: uppercase;
    font-size: .75rem
}

.abbott-breadcrumb.abbott-breadcrumb__fixed .a-breadcrumb__item:not(:first-child)::before {
    content: ' > ';
    color: #888b8d !important
}

@media only screen and (max-width:767.98px) {
    .abbott-breadcrumb.abbott-breadcrumb__fixed {
        display: none
    }
}

#siteLeavingPopupFragmentPathModal.modal .modal-body {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 25px
}

#siteLeavingPopupFragmentPathModal.modal .modal-body .container {
    padding-top: 30px;
    padding-bottom: 20px;
    padding-right: 30px
}

#siteLeavingPopupFragmentPathModal.modal .row {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding: 0 !important;
    margin: 0
}

@media only screen and (max-width:767.98px) {
    #siteLeavingPopupFragmentPathModal.modal .row {
        justify-content: space-between !important
    }
}

#siteLeavingPopupFragmentPathModal.modal .row .columncontrol__column {
    margin: 0 8px 0 0;
    padding-left: 0;
    padding-right: 0
}

@media only screen and (max-width:767.98px) {
    #siteLeavingPopupFragmentPathModal.modal .row .columncontrol__column {
        margin: 0
    }
}

#siteLeavingPopupFragmentPathModal.modal .row .columncontrol__column.col-12 {
    max-width: 30%
}

@media only screen and (max-width:767.98px) {
    #siteLeavingPopupFragmentPathModal.modal .row .columncontrol__column.col-12 {
        min-width: 49%;
        max-width: 49%;
        width: fit-content
    }
}

#siteLeavingPopupFragmentPathModal.modal .row .columncontrol__column .button.button[class*="font-brandon-grotesque-"] .btn {
    padding-top: 10px
}

#siteLeavingPopupFragmentPathModal.modal .row .columncontrol__column .button .btn {
    border-radius: 0;
    width: 100%
}

@media only screen and (max-width:767.98px) {
    #siteLeavingPopupFragmentPathModal.modal .row .columncontrol__column .button .btn {
        min-width: 100%;
        width: fit-content
    }
}

#siteLeavingPopupFragmentPathModal.modal .modal-footer {
    margin-left: 0;
    margin-right: auto;
    padding-top: 0 !important
}

#siteLeavingPopupFragmentPathModal.modal .generic-modal--close {
    border: 3px solid #009cde;
    border-radius: 50%;
    color: #009cde;
    padding: .375rem .375rem .125rem
}

#siteLeavingPopupFragmentPathModal.modal .generic-modal--close i {
    font-weight: bold
}

#siteLeavingPopupFragmentPathModal.modal .modal-content {
    background-color: #2a2b33
}

#siteLeavingPopupFragmentPathModal.modal .modal-content .generic-modal__content-body * {
    --modal-para-color: var(--text-color)
}

.modal.modal--video-popup .modal-dialog {
    max-width: 1140px;
    width: 70%
}

@media only screen and (max-width:767.98px) {
    .modal.modal--video-popup .modal-dialog {
        margin: auto;
        width: 96%
    }
}

.modal.modal--video-popup .modal-dialog .modal-content {
    background: 0;
    border: 0;
    box-shadow: none
}

.modal.modal--video-popup .modal-dialog .modal-content .modal-header .generic-modal--close {
    color: #fff;
    right: 0;
    top: -1.5rem
}

.modal.modal--video-popup .modal-dialog .modal-content .modal-body {
    padding: 0
}

.modal.modal--video-popup .modal-dialog .modal-content .modal-body .container--video-popup .cmp-container {
    padding-left: 0;
    padding-right: 0
}

.modal.modal--video-popup .modal-dialog .modal-content .modal-body .container--video-popup .video {
    padding: 0;
    margin: 0
}

.modal.modal--video-popup .modal-dialog .modal-content .modal-body .container--video-popup .button {
    display: flex
}

.modal.modal--video-popup .modal-dialog .modal-content .modal-footer:empty {
    display: none
}

.modal.modal--video-popup__white-border .modal-dialog {
    max-width: 1140px;
    width: 70%
}

@media only screen and (max-width:767.98px) {
    .modal.modal--video-popup__white-border .modal-dialog {
        margin: auto;
        width: 96%
    }
}

.modal.modal--video-popup__white-border .modal-dialog .modal-content {
    background: 0;
    border: 0;
    box-shadow: none
}

.modal.modal--video-popup__white-border .modal-dialog .modal-content .modal-header .generic-modal--close {
    color: #fff;
    right: 0;
    top: -1.5rem
}

.modal.modal--video-popup__white-border .modal-dialog .modal-content .modal-body {
    padding: 0
}

.modal.modal--video-popup__white-border .modal-dialog .modal-content .modal-body .container--video-popup .cmp-container {
    padding-left: 0;
    padding-right: 0
}

.modal.modal--video-popup__white-border .modal-dialog .modal-content .modal-body .container--video-popup .video {
    padding: 0;
    margin: 0
}

.modal.modal--video-popup__white-border .modal-dialog .modal-content .modal-body .container--video-popup .button {
    display: flex
}

.modal.modal--video-popup__white-border .modal-dialog .modal-content .modal-footer:empty {
    display: none
}

.modal.modal--video-popup__white-border .modal-dialog .modal-content .modal-body {
    border: .5rem solid #fff
}

.modal.modal--video-popup__white-border .modal-dialog .modal-content .modal-body .video {
    padding: 0
}

.modal.modal--video-popup__no-border .modal-dialog {
    max-width: 1140px;
    width: 70%
}

@media only screen and (max-width:767.98px) {
    .modal.modal--video-popup__no-border .modal-dialog {
        margin: auto;
        width: 96%
    }
}

.modal.modal--video-popup__no-border .modal-dialog .modal-content {
    background: 0;
    border: 0;
    box-shadow: none
}

.modal.modal--video-popup__no-border .modal-dialog .modal-content .modal-header .generic-modal--close {
    color: #fff;
    right: 0;
    top: -1.5rem
}

.modal.modal--video-popup__no-border .modal-dialog .modal-content .modal-body {
    padding: 0
}

.modal.modal--video-popup__no-border .modal-dialog .modal-content .modal-body .container--video-popup .cmp-container {
    padding-left: 0;
    padding-right: 0
}

.modal.modal--video-popup__no-border .modal-dialog .modal-content .modal-body .container--video-popup .video {
    padding: 0;
    margin: 0
}

.modal.modal--video-popup__no-border .modal-dialog .modal-content .modal-body .container--video-popup .button {
    display: flex
}

.modal.modal--video-popup__no-border .modal-dialog .modal-content .modal-footer:empty {
    display: none
}

.modal.modal--video-popup__no-border .modal-dialog .modal-content .modal-body {
    border: .5rem solid #fff
}

.modal.modal--video-popup__no-border .modal-dialog .modal-content .modal-body .video {
    padding: 0
}

.modal.modal--video-popup__no-border .modal-dialog .modal-content .modal-body {
    border: 0
}

@media only screen and (min-width:1200px) {

    .modal.no-border-varient .modal-dialog,
    .modal.modal--video-popup-article .modal-dialog {
        max-width: 80%
    }
}

.modal.no-border-varient .modal-dialog .modal-content .modal-body,
.modal.modal--video-popup-article .modal-dialog .modal-content .modal-body,
.modal.no-border-varient .modal-dialog .modal-content .modal-footer,
.modal.modal--video-popup-article .modal-dialog .modal-content .modal-footer {
    padding: 0
}

.modal.no-border-varient .modal-dialog .modal-content .modal-header .generic-modal--close,
.modal.modal--video-popup-article .modal-dialog .modal-content .modal-header .generic-modal--close {
    top: -8px;
    right: -8px
}

.modal.no-border-varient .modal-dialog .modal-content .modal-header .generic-modal--close .abt-icon-cancel,
.modal.modal--video-popup-article .modal-dialog .modal-content .modal-header .generic-modal--close .abt-icon-cancel {
    color: #fff;
    font-weight: bold
}

@media only screen and (min-width:768px) {
    .modal.pi-locator .modal-dialog {
        max-width: 98%
    }
}

@media only screen and (min-width:992px) {
    .modal.pi-locator .modal-dialog {
        max-width: 90%
    }
}

@media only screen and (min-width:1200px) {
    .modal.pi-locator .modal-dialog {
        max-width: 80%
    }
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .cmp-container .title .cmp-title__text {
    font-size: 1.5rem;
    line-height: .917;
    color: #2a2b33;
    font-family: 'Georgia';
    margin-top: 0;
    margin-bottom: 24px
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .cmp-container .text {
    margin: 0 !important
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .cmp-container .text .cmp-text p {
    font-family: 'Georgia';
    font-size: 1rem;
    color: #2a2b33;
    margin: 0
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .cmp-container .text #healthcare-providers p {
    padding: 0;
    margin: 0;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    font-size: 1rem;
    color: #2a2b33
}

@media only screen and (max-width:767.98px) {
    .modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .row .col-12:first-child .row .col-9 {
        flex: 0 0 65%;
        max-width: 65%
    }
}

@media only screen and (max-width:767.98px) {
    .modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .row .col-12:first-child .row .col-3 {
        flex: 0 0 35%;
        max-width: 35%
    }
}

@media only screen and (min-width:992px) {
    .modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .row .col-12:first-child {
        flex: 0 0 60%;
        max-width: 60%
    }
}

@media only screen and (min-width:992px) {
    .modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .row .col-12:last-child {
        flex: 0 0 40%;
        max-width: 40%
    }
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .m-poi-locator-search-bar__input .a-input-field {
    margin: 0
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .m-poi-locator-search-bar__input .a-input-field input {
    font-family: 'BrandonGrotesqueMedium';
    border: 1px solid #d9d9d6;
    font-size: 1rem;
    line-height: 2.125;
    color: #888b8d;
    text-transform: uppercase
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .m-poi-locator-search-bar__button .search-button .btn {
    padding: 13px 20px 12px;
    background-color: #009cde
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .m-poi-locator-search-bar__button .search-button .btn span {
    padding: 0;
    display: block
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .m-poi-locator-search-bar__button .search-button .btn .abt-icon {
    display: none
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .m-poi-locator-search-bar__use-location .or-text {
    font-family: 'BrandonGrotesqueMedium';
    font-size: 1rem;
    line-height: 2.125;
    color: #888b8d;
    text-transform: uppercase
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .m-poi-locator-search-bar__use-location .use-my-location-button button {
    background-color: #009cde
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-search-bar .m-poi-locator-search-bar__wrap #POI-locator-form .m-poi-locator-search-bar__use-location .use-my-location-button button .abt-icon {
    right: 5px
}

@media only screen and (min-width:768px) {
    .modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map {
        flex-direction: row
    }
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content {
    border: 20px solid #f3f3f3;
    max-height: 300px;
    height: max-content;
    overflow: auto
}

@media only screen and (min-width:768px) {
    .modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content {
        flex: 0 0 40%;
        max-width: 40%;
        margin-left: 3%
    }
}

@media only screen and (min-width:992px) {
    .modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content {
        max-height: 600px
    }
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content::-webkit-scrollbar {
    width: 7px
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content::-webkit-scrollbar-thumb {
    background: #939799;
    border-radius: 10px
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content::-webkit-scrollbar-thumb:hover {
    background: #63666a
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__count {
    text-align: center;
    padding: 10px 0 0;
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list {
    overflow: unset
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item {
    border-bottom: 1px solid #d9d9d6;
    margin-right: 0
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-number {
    display: none
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail p {
    margin-bottom: 7px;
    padding: 0;
    font-family: 'BrandonGrotesqueRegular';
    color: #888b8d;
    font-size: 1rem;
    line-height: 1
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail__label {
    display: none
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--store-address {
    margin-bottom: 5px;
    padding: 0;
    font-family: 'BrandonGrotesqueRegular';
    color: #888b8d;
    font-size: 1rem;
    line-height: 1
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--store-contact-details .m-poi-locator-results__list-item-detail--store-contact {
    margin-bottom: 2px;
    padding: 0
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--store-contact-details .m-poi-locator-results__list-item-detail--store-contact a {
    font-family: 'BrandonGrotesqueRegular';
    color: #009cde;
    font-size: 1rem;
    line-height: 1
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--store-name {
    margin-bottom: 10px;
    font-family: 'BrandonGrotesqueBold';
    color: #888b8d;
    overflow-wrap: break-word;
    line-height: 1.375;
    font-size: 1rem
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--store-name.additional-fields {
    display: none
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--store-phone {
    display: none
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--visit-website,
.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--get-direction {
    margin-bottom: 4px !important
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--visit-website a,
.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--get-direction a {
    padding: 0;
    font-family: 'BrandonGrotesqueRegular';
    color: #009cde;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--visit-website a span,
.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--get-direction a span {
    font-family: 'BrandonGrotesqueRegular';
    color: #009cde;
    font-size: 1rem;
    line-height: 1;
    font-weight: normal
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--visit-website a .abt-icon,
.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-content .m-poi-locator-results__list .m-poi-locator-results__list-item .m-poi-locator-results__list-item-detail .m-poi-locator-results__list-item-detail--get-direction a .abt-icon {
    display: none
}

@media only screen and (min-width:768px) {
    .modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-map {
        flex: 0 0 50%;
        max-width: 50%;
        margin-left: 4%
    }
}

.modal.pi-locator .modal-dialog .modal-content .modal-body .o-poi-locator .o-poi-locator__wrapper .container .m-poi-locator-results .m-poi-locator-results__wrap .row-result-map .row-result-map--horizontal-map .m-poi-locator-results__map {
    margin-top: 0
}

.layoutcontainer.layout-container--remove-top-space {
    padding-top: 0 !important
}

.layoutcontainer.layout-container--remove-bottom-space {
    padding-bottom: 0 !important
}

@media only screen and (min-width:768px) {
    .tileswithbackground.tiles-betweeen-spacing .o-tiles {
        --o-tiles-bg-padding: 60px 60px 124px 60px
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-betweeen-spacing .a-tile {
        padding-right: 20px
    }
}

@media only screen and (max-width:767.98px) {
    .tileswithbackground.tiles-betweeen-spacing .o-tiles__heading {
        display: none
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.extra-tiles-space .o-tiles {
        height: auto
    }

    .tileswithbackground.extra-tiles-space .o-tiles .o-tiles__container .m-tile-list {
        padding-bottom: 13rem
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.bg-image-full-height .o-tiles {
        height: 100%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .tileswithbackground.tablet--full-height .o-tiles {
        height: 100%
    }
}

.tileswithbackground.image {
    width: 100%;
    position: static;
    padding: 0;
    margin: 0;
    overflow: hidden;
    margin-bottom: 0
}

.tileswithbackground.image.image-overlap-curve {
    margin-top: -170px !important;
    position: relative
}

@media only screen and (max-width:767.98px) {
    .tileswithbackground.image.image-overlap-curve {
        margin-top: 0 !important
    }

    .tileswithbackground.image.image-overlap-curve .o-tiles.o-tiles-curve {
        margin-top: 0
    }

    .tileswithbackground.image.image-overlap-curve .o-tiles.o-tiles-curve .m-tile-list {
        padding-top: 0
    }
}

.tileswithbackground.image .sliderBgCurve {
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
    height: calc(100% + 33px)
}

.tileswithbackground.image .sliderBgCurve.reduce-width-img {
    max-height: 700px
}

@media only screen and (min-width:768px) and (max-width:1023.98px) {
    .tileswithbackground.image .sliderBgCurve.reduce-width-img {
        height: 100%
    }
}

.tileswithbackground.image .sliderBgCurve svg {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    height: 100%
}

@media only screen and (max-width:767.98px) {
    .tileswithbackground.image.mobile-notch.notch-type-none .o-tiles.o-tiles-curve img {
        position: static
    }
}

@media only screen and (min-width:768px) {
    .tileswithbackground.image .o-tiles.stretch-img {
        padding-bottom: 8rem !important
    }

    .tileswithbackground.image .o-tiles.reduce-img {
        padding-bottom: 4rem !important
    }
}

.tileswithbackground.image .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading .sTitle {
    width: 100%;
    padding: 10px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0
}

@media(min-width:576px) {
    .tileswithbackground.image .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading .sTitle {
        max-width: 540px
    }
}

@media(min-width:768px) {
    .tileswithbackground.image .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading .sTitle {
        max-width: 720px
    }
}

@media(min-width:992px) {
    .tileswithbackground.image .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading .sTitle {
        max-width: 960px
    }
}

@media(min-width:1200px) {
    .tileswithbackground.image .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading .sTitle {
        max-width: 1140px
    }
}

.tileswithbackground.image .o-tiles.o-tiles-curve {
    position: relative;
    padding: 0;
    padding-bottom: 100px;
    margin-top: 128px;
    height: 100%
}

.tileswithbackground.image .o-tiles.o-tiles-curve .o-tiles img {
    width: 100%
}

.tileswithbackground.image .o-tiles.o-tiles-curve .o-tiles__container {
    top: 10px;
    width: 100%
}

.tileswithbackground.image .o-tiles.o-tiles-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
    width: 100%;
    margin-right: auto;
    margin-left: auto
}

@media(min-width:576px) {
    .tileswithbackground.image .o-tiles.o-tiles-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 540px
    }
}

@media(min-width:768px) {
    .tileswithbackground.image .o-tiles.o-tiles-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 720px
    }
}

@media(min-width:992px) {
    .tileswithbackground.image .o-tiles.o-tiles-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 960px
    }
}

@media(min-width:1200px) {
    .tileswithbackground.image .o-tiles.o-tiles-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 1140px
    }
}

@media only screen and (max-width:767.98px) {
    .tileswithbackground.image .o-tiles.o-tiles-curve {
        position: relative;
        padding: 0;
        min-height: auto;
        height: 100%
    }

    .tileswithbackground.image .o-tiles.o-tiles-curve .o-tiles img {
        width: 100%
    }

    .tileswithbackground.image .o-tiles.o-tiles-curve .o-tiles__container {
        position: relative;
        top: 10px;
        width: 100%
    }
}

.tileswithbackground.image.notch-type-none {
    height: calc(100% + 33px);
    margin-top: 0 !important
}

.tileswithbackground.image.notch-type-none .o-tiles.o-tiles-curve {
    height: 100%;
    margin-top: 0;
    padding-bottom: 0
}

.tileswithbackground.image.notch-type-none .o-tiles.o-tiles-curve img {
    width: 100%;
    height: 100%;
    position: absolute
}

.tileswithbackground.image.notch-type-none .o-tiles.o-tiles-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
    width: 100%;
    margin-right: auto;
    margin-left: auto
}

@media(min-width:576px) {
    .tileswithbackground.image.notch-type-none .o-tiles.o-tiles-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 540px
    }
}

@media(min-width:768px) {
    .tileswithbackground.image.notch-type-none .o-tiles.o-tiles-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 720px
    }
}

@media(min-width:992px) {
    .tileswithbackground.image.notch-type-none .o-tiles.o-tiles-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 960px
    }
}

@media(min-width:1200px) {
    .tileswithbackground.image.notch-type-none .o-tiles.o-tiles-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 1140px
    }
}

@media only screen and (min-width:768px) {
    .tileswithbackground.image.bottom-curve {
        margin-top: 0 !important
    }

    .tileswithbackground.image.bottom-curve .o-tiles .o-tiles__container .o-tiles__row {
        height: 100%;
        position: relative
    }

    .tileswithbackground.image.bottom-curve .o-tiles img {
        position: absolute;
        height: 100%;
        width: 100%;
        padding-bottom: 2px
    }

    .tileswithbackground.image.bottom-curve .o-tiles.o-tiles-bottom-curve {
        position: relative;
        padding: 0;
        height: 100%
    }

    .tileswithbackground.image.bottom-curve .o-tiles.o-tiles-bottom-curve .o-tiles__container {
        width: 100%;
        height: 100%
    }

    .tileswithbackground.image.bottom-curve .o-tiles.o-tiles-bottom-curve .o-tiles__container .o-tiles__row .bottom-notch {
        padding-bottom: 70px
    }

    .tileswithbackground.image.bottom-curve .o-tiles.o-tiles-bottom-curve .o-tiles__container .o-tiles__row .bottom-notch .bottom-slider-curve {
        position: absolute;
        width: 100%;
        bottom: 0
    }

    .tileswithbackground.image.bottom-curve .o-tiles.o-tiles-bottom-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        width: 100%;
        margin-right: auto;
        margin-left: auto
    }
}

@media only screen and (min-width:768px) and (min-width:576px) {
    .tileswithbackground.image.bottom-curve .o-tiles.o-tiles-bottom-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 540px
    }
}

@media only screen and (min-width:768px) and (min-width:768px) {
    .tileswithbackground.image.bottom-curve .o-tiles.o-tiles-bottom-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 720px
    }
}

@media only screen and (min-width:768px) and (min-width:992px) {
    .tileswithbackground.image.bottom-curve .o-tiles.o-tiles-bottom-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 960px
    }
}

@media only screen and (min-width:768px) and (min-width:1200px) {
    .tileswithbackground.image.bottom-curve .o-tiles.o-tiles-bottom-curve .o-tiles__container .o-tiles__row .o-tiles__stack-wrapper {
        max-width: 1140px
    }
}

@media only screen and (max-width:767.98px) {
    .tileswithbackground.image.mobile-notch .o-tiles .o-tiles__bg .o-tiles__image {
        display: block
    }

    .tileswithbackground.image.mobile-notch .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading .sTitle {
        padding-bottom: 50px
    }

    .tileswithbackground.image.mobile-notch .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading .sTitle.reduce-top-spacing {
        padding-top: 10px
    }

    .tileswithbackground.image.mobile-notch .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading .sTitle .cmp-title {
        padding: 0 10px
    }

    .tileswithbackground.image.mobile-notch .o-tiles .o-tiles__container {
        position: unset
    }

    .tileswithbackground.image.mobile-notch .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading .mobile-notch-top {
        position: relative
    }

    .tileswithbackground.image.mobile-notch .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading .mobile-notch-top .mobile-notch-top-curve {
        width: 100%;
        position: absolute;
        overflow: hidden;
        bottom: -5px
    }

    .tileswithbackground.image.mobile-notch .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading .mobile-notch-bottom .mobile-notch-bottom-curve {
        width: 100%;
        position: absolute;
        overflow: hidden;
        margin-top: -20px
    }
}

@media only screen and (max-width:767.98px) {
    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--yellow .sTitle {
        background-color: #ffd100 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--dark-yellow .sTitle {
        background-color: #ded548 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--green .sTitle {
        background-color: #7ccc6c !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--medium-green .sTitle {
        background-color: #00b140 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--fuscia .sTitle {
        background-color: #aa0061 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--dark-fuscia .sTitle {
        background-color: #470a68 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--orange .sTitle {
        background-color: #e4002b !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--dark-orange .sTitle {
        background-color: #eeb33b !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--cyan .sTitle {
        background-color: #5bc2e7 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--blue .sTitle {
        background-color: #004f71 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--gray .sTitle {
        background-color: #63666a !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--dark-gray .sTitle {
        background-color: #222731 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--white .sTitle {
        background-color: #fff !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--light-gray .sTitle {
        background-color: #d9d9d6 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--primary-blue .sTitle {
        background-color: #009cde !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--dark-blue .sTitle {
        background-color: #002a3a !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-bg-color--mint .sTitle {
        background-color: #64ccc9 !important
    }
}

@media only screen and (max-width:767.98px) {
    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--yellow .sTitle .cmp-title * {
        color: #ffd100 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--dark-yellow .sTitle .cmp-title * {
        color: #ded548 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--green .sTitle .cmp-title * {
        color: #7ccc6c !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--medium-green .sTitle .cmp-title * {
        color: #00b140 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--fuscia .sTitle .cmp-title * {
        color: #aa0061 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--dark-fuscia .sTitle .cmp-title * {
        color: #470a68 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--orange .sTitle .cmp-title * {
        color: #e4002b !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--dark-orange .sTitle .cmp-title * {
        color: #eeb33b !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--cyan .sTitle .cmp-title * {
        color: #5bc2e7 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--blue .sTitle .cmp-title * {
        color: #004f71 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--gray .sTitle .cmp-title * {
        color: #63666a !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--dark-gray .sTitle .cmp-title * {
        color: #222731 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--white .sTitle .cmp-title * {
        color: #fff !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--black .sTitle .cmp-title * {
        color: #000 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--light-gray .sTitle .cmp-title * {
        color: #d9d9d6 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--primary-blue .sTitle .cmp-title * {
        color: #009cde !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--dark-blue .sTitle .cmp-title * {
        color: #002a3a !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-mob-text-color--mint .sTitle .cmp-title * {
        color: #64ccc9 !important
    }
}

@media only screen and (min-width:768px) {
    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--yellow .sTitle .cmp-title * {
        color: #ffd100 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--dark-yellow .sTitle .cmp-title * {
        color: #ded548 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--green .sTitle .cmp-title * {
        color: #7ccc6c !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--medium-green .sTitle .cmp-title * {
        color: #00b140 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--fuscia .sTitle .cmp-title * {
        color: #aa0061 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--dark-fuscia .sTitle .cmp-title * {
        color: #470a68 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--orange .sTitle .cmp-title * {
        color: #e4002b !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--dark-orange .sTitle .cmp-title * {
        color: #eeb33b !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--cyan .sTitle .cmp-title * {
        color: #5bc2e7 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--blue .sTitle .cmp-title * {
        color: #004f71 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--gray .sTitle .cmp-title * {
        color: #63666a !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--dark-gray .sTitle .cmp-title * {
        color: #222731 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--white .sTitle .cmp-title * {
        color: #fff !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--black .sTitle .cmp-title * {
        color: #000 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--light-gray .sTitle .cmp-title * {
        color: #d9d9d6 !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--primary-blue .sTitle .cmp-title * {
        color: #009cde !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--dark-blue .sTitle .cmp-title * {
        color: #002a3a !important
    }

    .tileswithbackground .o-tiles .o-tiles__container .o-tiles__row .o-tiles__heading.tileswithbackground-desktop-text-color--mint .sTitle .cmp-title * {
        color: #64ccc9 !important
    }
}

.tileswithbackground .sliderBgCurve .o-tiles .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile {
    margin: 30px 10px !important
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tilelist--card-centre .o-tiles__stack-wrapper {
        max-width: 100% !important
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tilelist--card-centre .o-tiles__stack-wrapper .container {
        max-width: 75%;
        padding-left: 0;
        padding-right: 0
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tilelist--card-centre .o-tiles__stack-wrapper .container .a-tile {
        flex: 0 0 31.5%;
        max-width: 31.5%;
        margin-right: 1.4% !important
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tilelist--card-centre .o-tiles__stack-wrapper .container .a-tile .a-tile__link {
        width: 100%;
        border-radius: 0
    }
}

.tileswithbackground.tilelist--card-centre .o-tiles__stack-wrapper .container .a-tile .a-tile__link .a-tile__title h4 {
    font-size: 1.25rem
}

.tileswithbackground.tilelist--card-centre .o-tiles__stack-wrapper .container .a-tile .a-tile__link .a-tile__para p {
    font-size: .875rem
}

.tileswithbackground.tilelist--card-centre .o-tiles__stack-wrapper .container .a-tile .a-tile__link .a-tile__para p.stock-Info .trade-val span {
    font-size: .984rem
}

.tileswithbackground.tilelist--card-centre .o-tiles__stack-wrapper .container .a-tile .a-tile__link .a-tile__para p.stock-Info .trade-val span.font-12 {
    font-size: .75rem
}

.tileswithbackground.tilelist--card-centre .o-tiles__stack-wrapper .container .a-tile .a-tile__link:hover::after {
    border-radius: 0
}

@media only screen and (min-width:992px) {
    .tileswithbackground.m-cards-variation .o-tiles__stack-wrapper .a-tile {
        margin-right: 13px !important
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.m-cards-variation .o-tiles__stack-wrapper .a-tile .a-tile__link {
        border-radius: 0
    }
}

.tileswithbackground.m-cards-variation .o-tiles__stack-wrapper .a-tile .a-tile__link .a-tile__title h4 {
    font-size: 1.25rem
}

.tileswithbackground.m-cards-variation .o-tiles__stack-wrapper .a-tile .a-tile__link .a-tile__para p {
    font-size: .875rem
}

.tileswithbackground.m-cards-variation .o-tiles__stack-wrapper .a-tile .a-tile__link:hover::after {
    border-radius: 0
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment .o-tiles {
        padding: 70px 0 60px
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment .o-tiles .o-tiles__container .o-tiles__heading .sTitle {
        padding-bottom: 30px !important
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment .o-tiles .o-tiles__container .o-tiles__stack-wrapper .m-tile-list {
        justify-content: space-between
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment .o-tiles .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile {
        margin-left: 0 !important
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment-notch .o-tiles {
        padding-top: 32px !important
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment-notch .o-tiles .o-tiles__container .o-tiles__heading .sTitle {
        padding-bottom: 30px !important
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment-notch .o-tiles .o-tiles__container .o-tiles__heading .sTitle .cmp-title .cmp-title__text {
        font-size: 1.25rem
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment-notch .o-tiles .o-tiles__container .o-tiles__stack-wrapper .m-tile-list {
        justify-content: space-between
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment-notch .o-tiles .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile {
        margin-left: 0 !important
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment-notch-left-align .o-tiles {
        padding-top: 32px !important
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment-notch-left-align .o-tiles .o-tiles__container .o-tiles__heading .sTitle {
        padding-bottom: 30px !important
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment-notch-left-align .o-tiles .o-tiles__container .o-tiles__heading .sTitle .cmp-title .cmp-title__text {
        font-size: 1.25rem
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment-notch-left-align .o-tiles .o-tiles__container .o-tiles__stack-wrapper .m-tile-list {
        justify-content: start
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment-notch-left-align .o-tiles .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile {
        margin-left: 0 !important;
        flex: 0 0 23%;
        max-width: 23%;
        margin-right: 1.5% !important
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-adjustment-notch-left-align .o-tiles .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link {
        width: 100%;
        border-radius: 0
    }
}

.tileswithbackground.tiles-with-background-adjustment-notch-left-align .o-tiles .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link .a-tile__title h4 {
    font-size: 1.25rem
}

.tileswithbackground.tiles-with-background-adjustment-notch-left-align .o-tiles .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link .a-tile__para p {
    font-size: .875rem
}

.tileswithbackground.tiles-with-background-adjustment-notch-left-align .o-tiles .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link:hover::after {
    border-radius: 0
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-4-card-adjustment-notch .o-tiles__container .o-tiles__stack-wrapper {
        max-width: 75% !important
    }
}

.tileswithbackground.tiles-with-background-4-card-adjustment-notch .o-tiles__container .o-tiles__stack-wrapper .m-tile-list {
    padding: 0;
    margin-top: 40px
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-4-card-adjustment-notch .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile {
        flex: 0 0 24%;
        max-width: 24%
    }
}

.tileswithbackground.tiles-with-background-4-card-adjustment-notch .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link {
    border-radius: 0
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-4-card-adjustment-notch .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link {
        width: 96%
    }
}

.tileswithbackground.tiles-with-background-4-card-adjustment-notch .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link .a-tile__title .a-tile__title-text h4 {
    font-size: 1.25rem
}

.tileswithbackground.tiles-with-background-4-card-adjustment-notch .o-tiles__container .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link::after {
    border-radius: 0
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-4-card-adjustment .o-tiles {
        padding: 60px 0
    }
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-4-card-adjustment .o-tiles .o-tiles__stack-wrapper {
        width: 75%;
        margin: 0 auto
    }
}

.tileswithbackground.tiles-with-background-4-card-adjustment .o-tiles .o-tiles__stack-wrapper .m-tile-list {
    padding: 0;
    margin-top: 40px
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-4-card-adjustment .o-tiles .o-tiles__stack-wrapper .m-tile-list .a-tile {
        flex: 0 0 24%;
        max-width: 24%
    }
}

.tileswithbackground.tiles-with-background-4-card-adjustment .o-tiles .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link {
    border-radius: 0
}

@media only screen and (min-width:992px) {
    .tileswithbackground.tiles-with-background-4-card-adjustment .o-tiles .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link {
        width: 96%
    }
}

.tileswithbackground.tiles-with-background-4-card-adjustment .o-tiles .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link .a-tile__title .a-tile__title-text h3 {
    font-size: 1.25rem
}

.tileswithbackground.tiles-with-background-4-card-adjustment .o-tiles .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link .a-tile__para p {
    font-size: .875rem;
    line-height: 1.2
}

.tileswithbackground.tiles-with-background-4-card-adjustment .o-tiles .o-tiles__stack-wrapper .m-tile-list .a-tile .a-tile__link::after {
    border-radius: 0
}

@media only screen and (min-width:992px) {
    .tileswithbackground #responsibility-tiles {
        margin-top: 215px !important
    }
}

@media only screen and (max-width:767.98px) {
    .sectiontitle.section-title-spacing-variation .mob-section-title-center.section-title-container {
        margin: 60px auto !important;
        top: 75px
    }
}

.sectiontitle.section-title-spacing-variation .section-title-container {
    position: relative
}

.sectiontitle.section-title-spacing-variation .section-new-container {
    padding-top: 60px;
    padding-bottom: 10px;
    --section-bg-height: auto !important
}

@media only screen and (min-width:992px) {
    .sectiontitle.section-title-spacing-variation .section-new-container {
        padding-top: 160px
    }
}

.sectiontitle.section-title-spacing-variation .section-content {
    position: relative !important
}

.sectiontitle.corpnewsroom-variation .section-title-container .section-title h4 {
    color: #333
}

.sectiontitle.corpnewsroom-variation .section-title-container .section-title span {
    color: #333
}

.sectiontitle.corpnewsroom-variation .category-name .section-title h5 {
    font-size: 1.25rem
}

.sectiontitle.corpnewsroom-variation .category-name .categories li a {
    font-size: .813rem;
    font-family: 'BrandonGrotesqueRegular'
}

.sectiontitle.corp-margin-adjustment {
    margin: 0 auto !important
}

.sectiontitle.corp-margin-adjustment .main-hubsection-container {
    min-height: 50px
}

.sectiontitle.corp-margin-adjustment .main-hubsection-container .section-title-container {
    margin: 0 auto
}

.sectiontitle.corp-margin-adjustment-equalgap {
    margin: 0 auto !important
}

.sectiontitle.corp-margin-adjustment-equalgap .main-hubsection-container {
    min-height: 68px
}

.sectiontitle.corp-margin-adjustment-equalgap .main-hubsection-container .section-title-container {
    margin: 0 auto
}

.sectiontitle.corp-margin-adjustment-brasil .main-hubsection-container {
    min-height: 50px
}

.sectiontitle.corp-margin-adjustment-brasil .main-hubsection-container .section-title-container {
    margin: 0 auto
}

@media only screen and (min-width:1200px) {
    .sectiontitle.sectiontitle-honor-varient .main-hubsection-container {
        min-height: 413px
    }
}

@media only screen and (min-width:1200px) {
    .sectiontitle.sectiontitle-honor-varient .main-hubsection-container .section-new-container .section-content {
        position: absolute !important
    }
}

.main-hubsection-container {
    clear: both;
    display: block;
    min-height: 80px;
    margin: 0 auto;
    position: relative;
    width: 98%;
    z-index: 1
}

.main-hubsection-container .section-dropdown-variation .category-name .section-title h4 {
    font-size: .8rem;
    line-height: 1.2
}

@media only screen and (min-width:768px) {
    .main-hubsection-container .section-dropdown-variation .category-name .section-title h4 {
        font-size: 1.25rem;
        line-height: 1.25rem
    }
}

.main-hubsection-container .section-dropdown-variation .category-name .section-title .icon {
    font-size: 1.25rem
}

.main-hubsection-container .section-dropdown-variation .category-name .section-title .icon::before {
    margin-left: .155em
}

.main-hubsection-container .categories .bg-color--light-blue+a:hover {
    --section-title-hover-color: #5bc2e7 !important
}

.main-hubsection-container .categories .box.bg-color--medium-green+a:hover {
    --section-title-hover-color: #00b140 !important
}

.main-hubsection-container .categories .box.bg-color--red+a:hover {
    --section-title-hover-color: #e4002b !important
}

.main-hubsection-container .categories .box.bg-color--gold+a:hover {
    --section-title-hover-color: #eeb33b !important
}

.main-hubsection-container .categories .box.bg-color--medium-blue+a:hover {
    --section-title-hover-color: #004f71 !important
}

.main-hubsection-container .categories .box.bg-color--magenta+a:hover {
    --section-title-hover-color: #aa0061 !important
}

.main-hubsection-container .categories .box.bg-color--mint+a:hover {
    --section-title-hover-color: #64ccc9 !important
}

.main-hubsection-container .categories .box.bg-color--purple+a:hover {
    --section-title-hover-color: #470a68 !important
}

@media only screen and (min-width:768px) {
    .main-hubsection-container {
        margin: 0 auto;
        width: 100%
    }
}

.main-hubsection-container .section-new-container {
    --section-bg-height: 360px;
    z-index: 1
}

@media only screen and (max-width:767.98px) {
    .main-hubsection-container .section-new-container {
        --section-bg-height: 260px;
        width: 100%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .main-hubsection-container .section-new-container {
        --section-bg-height: 245px
    }
}

.main-hubsection-container .section-new-container .section-content {
    bottom: 15px;
    color: #fff;
    line-height: 1.3;
    position: absolute;
    margin: 0 0 0 13px;
    width: 70%;
    z-index: 1
}

.main-hubsection-container .section-new-container .section-content * {
    color: #000
}

@media only screen and (max-width:767.98px) {
    .main-hubsection-container .section-new-container .section-content {
        margin-left: 7px;
        width: 96%
    }

    .main-hubsection-container .section-new-container .section-content * {
        margin: 0
    }
}

.main-hubsection-container .section-new-container .media {
    left: 0;
    height: 100%;
    margin: 0 auto;
    position: absolute;
    top: -15px;
    width: 100%;
    z-index: 0
}

.main-hubsection-container .section-new-container .media .media-image {
    height: 100%;
    width: 100%
}

.section-title-container {
    clear: both;
    left: 0;
    margin: 15px auto;
    max-width: 350px;
    position: absolute;
    right: 0;
    text-align: center;
    width: 50%;
    z-index: 1
}

.section-title-container.section-bg-variation {
    pointer-events: none
}

@media only screen and (max-width:767.98px) {
    .section-title-container.section-bg-variation.mob-section-title-center.section-title-container {
        bottom: 50%;
        margin: 0 auto
    }
}

@media only screen and (max-width:767.98px) {
    .section-title-container.section-bg-variation.mob-section-title-top.section-title-container {
        bottom: unset;
        margin: 0 auto
    }
}

.section-title-container .dropdown-menu {
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: .25rem;
    display: none;
    float: left;
    left: 0;
    list-style: none;
    min-width: 10rem;
    margin: .125rem 0 0;
    position: absolute;
    padding: .5rem 0;
    text-align: left;
    top: 100%;
    z-index: 1000
}

.section-title-container .section-title {
    border-radius: 10px 0;
    background: 0;
    border: 1px solid var(--section-title-color);
    cursor: pointer;
    display: block;
    line-height: 1;
    padding: 14px 0 8px;
    text-transform: uppercase;
    z-index: 11
}

.section-title-container .section-title * {
    color: var(--section-title-color);
    display: inline-block;
    margin: 0 !important;
    word-wrap: break-word
}

.section-title-container .section-title .icon.icon-caret-down:before {
    border-top: .33em solid;
    border-right: .33em solid transparent;
    border-bottom: 0;
    border-left: .33em solid transparent;
    content: "";
    display: inline-block;
    height: 0;
    margin-left: .255em;
    vertical-align: .2em;
    width: 0
}

.section-title-container .section-title .icon.icon-caret-up:before {
    border-right: .33em solid transparent;
    border-left: .33em solid transparent;
    border-top: 0;
    border-bottom: .33em solid;
    content: "";
    display: inline-block;
    height: 0;
    margin-left: .255em;
    vertical-align: .2em;
    width: 0
}

.section-title-container .category-name.section-title-color--yellow {
    --section-title-color: #ffd100
}

.section-title-container .category-name.section-title-color--green {
    --section-title-color: #7ccc6c
}

.section-title-container .category-name.section-title-color--fuscia {
    --section-title-color: #aa0061
}

.section-title-container .category-name.section-title-color--orange {
    --section-title-color: #e4002b
}

.section-title-container .category-name.section-title-color--light-gray {
    --section-title-color: #d9d9d6
}

.section-title-container .category-name.section-title-color--primary-blue {
    --section-title-color: #009cde
}

.section-title-container .category-name.section-title-color--mint {
    --section-title-color: #64ccc9
}

.section-title-container .category-name.section-title-color--black {
    --section-title-color: #000
}

.section-title-container .category-name.section-title-color--dark-green {
    --section-title-color: #00b140
}

.section-title-container .category-name.section-title-color--cyan {
    --section-title-color: #5bc2e7
}

.section-title-container .category-name.section-title-color--white {
    --section-title-color: #fff
}

.section-title-container .category-name.open .categories {
    display: block
}

.section-title-container .category-name:before {
    content: "";
    border-top: 1px solid var(--section-title-color);
    display: inline-block;
    bottom: 0;
    height: 0;
    margin: auto;
    position: absolute;
    right: 100%;
    top: 0;
    width: 50%
}

@media only screen and (max-width:767.98px) {
    .section-title-container .category-name:before {
        width: 45%
    }
}

.section-title-container .category-name:after {
    content: "";
    border-top: 1px solid var(--section-title-color);
    bottom: 0;
    display: inline-block;
    height: 0;
    left: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    width: 50%
}

@media only screen and (max-width:767.98px) {
    .section-title-container .category-name:after {
        width: 45%
    }
}

.section-title-container .categories {
    border: 1px solid #63666a;
    border-radius: 4px;
    background-color: #e8e8e8;
    box-shadow: 0 0 10px 0 rgba(1, 1, 1, 0.33);
    display: none;
    max-width: 350px;
    padding: 1.25em;
    width: 100%;
    z-index: 1
}

.section-title-container .categories li {
    align-items: baseline;
    display: flex
}

.section-title-container .categories .box {
    height: 10px;
    width: 10px
}

.section-title-container .categories .category {
    background-color: transparent;
    cursor: pointer;
    --section-title-hover-color: #333;
    line-height: 2.154;
    padding: 0 0 0 10px;
    text-transform: uppercase;
    text-decoration: none
}

.section-title-container .categories .category:hover {
    text-decoration: none
}

@media only screen and (min-width:992px) and (max-width:1199.98px),
only screen and (min-width:768px) and (max-width:991.98px) {
    .section-title-container {
        margin: 30px auto;
        width: 100%
    }

    .section-title-container .category-name:before {
        width: 20%
    }

    .section-title-container .category-name:after {
        width: 20%
    }
}

@media only screen and (min-width:992px) and (max-width:1199.98px) {

    .section-bg-variation .category-name:before,
    .section-bg-variation .category-name:after {
        width: 45% !important
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .section-bg-variation {
        width: 255px
    }

    .section-bg-variation .category-name:before,
    .section-bg-variation .category-name:after {
        width: 70%
    }
}

@media only screen and (max-width:767.98px) {
    .section-title-container {
        max-width: 161px
    }

    .section-title-container .section-title {
        line-height: 1.0635rem;
        padding: 8px 0 4px
    }

    .section-title-container .category-name:before {
        width: 45%
    }

    .section-title-container .category-name:after {
        width: 45%
    }

    .section-title-container .categories {
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        white-space: nowrap
    }
}

.category-filter-anchor-mixin .article-ahnchor {
    text-decoration: none;
    color: #000;
    font-weight: normal
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    position: absolute;
    top: 8%;
    left: 5%;
    color: #019cde;
    opacity: 0;
    text-transform: uppercase
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value *,
html[lang*="ja"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.category-filter-anchor-mixin .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    filter: brightness(50%)
}

.category-filter-anchor-mixin .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    opacity: 1;
    z-index: 98
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__title {
    display: none
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__elements {
    margin-left: 10px;
    margin-top: 15px;
    margin-right: 10px;
    position: relative
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage {
    margin: -10px !important
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value {
    margin-bottom: 25px
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    width: 100%;
    height: 145px
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    text-transform: uppercase;
    letter-spacing: 1.504px;
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="cn"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading *,
html[lang*="ja"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="ja"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="vi"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value {
    margin: 0
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value p,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value p {
    margin-bottom: 0
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-gray,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-gray {
    color: #63666a
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-light-blue,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-light-blue {
    color: #5bc2e7
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-blue,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-blue {
    color: #004f71
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-red,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-red {
    color: #e4002b
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-red,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-red {
    color: #f5889d
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-gold,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-gold {
    color: #eeb33b
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-mint,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-mint {
    color: #64ccc9
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-purple,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-purple {
    color: #470a68
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-magenta,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-magenta {
    color: #aa0061
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-green,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-green {
    color: #00b140
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    text-transform: uppercase;
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="cn"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading *,
html[lang*="ja"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="ja"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="vi"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * .cmp-contentfragment__element-value {
    margin: 0
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value p,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * .cmp-contentfragment__element-value p {
    margin: 0
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Georgia'
}

html[lang*="vi"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
html[lang*="vi"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Serif Regular'
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'BrandonGrotesqueBold';
    color: #939799
}

html[lang*="cn"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*="ja"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.category-filter-anchor-mixin .article-ahnchor .cmp-contentfragment__element-title {
    display: none
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist {
    width: 100%
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor {
    text-decoration: none;
    color: #000;
    font-weight: normal
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment {
    border-bottom: 1px solid #d9d9d6
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment:hover {
    background-color: #e1e1e1
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__title {
    display: none
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__elements {
    margin-left: 10px;
    padding-top: 15px;
    margin-right: 10px
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'BrandonGrotesqueBold';
    color: #009cde;
    margin-bottom: 15px
}

html[lang*="cn"] .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="cn"] .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading *,
html[lang*="ja"] .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="ja"] .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="vi"] .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value,
.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value {
    margin: 0
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value p,
.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value p {
    margin-bottom: 0
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Georgia';
    color: #2a2b33
}

html[lang*="vi"] .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
html[lang*="vi"] .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Serif Regular'
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'BrandonGrotesqueBold';
    color: #63666a;
    margin-bottom: 15px
}

html[lang*="cn"] .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*="ja"] .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element-title {
    display: none
}

@media only screen and (max-width:767.98px) {
    .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist {
        width: 100%
    }

    .contentfragmentlist.contentfragmentlist-press-release .cmp-contentfragmentlist .cmp-contentfragment__elements {
        margin: 0
    }
}

.contentfragmentlist.contentfragmentlist-press-release .pagination {
    text-align: center;
    margin-top: 15px
}

.contentfragmentlist.contentfragmentlist-press-release .pagination .load-more {
    border: 0;
    padding: 5px;
    color: #009cde;
    background-color: #2a2b33;
    width: 100%
}

.contentfragmentlist.contentfragmentlist-press-release .pagination .load-more:hover {
    background-color: #009cde;
    color: #2a2b33
}

.contentfragmentlist.contentfragmentlist-press-release .pagination .pagination-holder {
    color: #63666a;
    font-weight: 700;
    padding-bottom: 15px
}

.contentfragmentlist.contentfragmentlist-press-release-variation-2 .article-ahnchor {
    text-decoration: none;
    color: #000;
    font-weight: normal
}

.contentfragmentlist.contentfragmentlist-press-release-variation-2 .article-ahnchor .cmp-contentfragment__title,
.contentfragmentlist.contentfragmentlist-press-release-variation-2 .article-ahnchor .cmp-contentfragment__element-title,
.contentfragmentlist.contentfragmentlist-press-release-variation-2 .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.contentfragmentlist.contentfragmentlist-press-release-variation-2 .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    color: #888b8d
}

.contentfragmentlist.contentfragmentlist-press-release-variation-2 .pagination {
    display: none
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist {
    width: 100%
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor {
    text-decoration: none;
    color: #000;
    font-weight: normal
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment {
    margin-bottom: 15px
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    position: absolute;
    top: 5%;
    left: 5%;
    color: #019cde;
    opacity: 0;
    text-transform: uppercase
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value *,
html[lang*="ja"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    filter: brightness(50%)
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    opacity: 1;
    z-index: 98
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__title {
    display: none
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__elements {
    position: relative
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    width: 100%;
    height: 145px
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    text-transform: uppercase;
    font-family: 'BrandonGrotesqueBold';
    font-weight: 600
}

html[lang*="cn"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="cn"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading *,
html[lang*="ja"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="ja"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="vi"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value,
.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value,
.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading p,
.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * p {
    margin: 0
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading {
    display: none
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Georgia'
}

html[lang*="vi"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
html[lang*="vi"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Serif Regular'
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'BrandonGrotesqueMedium';
    color: #939799
}

html[lang*="cn"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*="ja"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*="vi"] .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Brandon Medium'
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element-title {
    display: none
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .article-ahnchor:first-child .cmp-contentfragment-text-wrapper,
.contentfragmentlist.contentfragmentlist-hubarticlebrief .article-ahnchor:first-child .cmp-contentfragment__element--detaildescription {
    padding-left: 10px;
    padding-right: 10px
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .article-ahnchor:first-child .cmp-contentfragment-text-wrapper i,
.contentfragmentlist.contentfragmentlist-hubarticlebrief .article-ahnchor:first-child .cmp-contentfragment__element--detaildescription i {
    font-style: normal
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .article-ahnchor:not(:first-child) .cmp-contentfragment {
    padding-left: 10px;
    padding-right: 10px
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .article-ahnchor:not(:first-child) .cmp-contentfragment .cmp-contentfragment__elements {
    display: flex;
    flex-direction: row;
    margin-top: 0
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .article-ahnchor:not(:first-child) .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage img {
    height: auto;
    filter: brightness(100%);
    width: 112px
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .article-ahnchor:not(:first-child) .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment-text-wrapper {
    padding-left: 10px;
    flex: 80%
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .article-ahnchor:not(:first-child) .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
.contentfragmentlist.contentfragmentlist-hubarticlebrief .article-ahnchor:not(:first-child) .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--duration {
    display: none
}

@media only screen and (max-width:767.98px) {
    .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist {
        width: 100%
    }

    .contentfragmentlist.contentfragmentlist-hubarticlebrief .cmp-contentfragmentlist .cmp-contentfragment__elements {
        margin: 0
    }
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief .pagination {
    display: none
}

.contentfragmentlist.contentfragmentlist-hubarticlebrief+.button .btn .abt-icon+span {
    padding-left: 0
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist {
    width: 100%
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor {
    text-decoration: none;
    color: #000;
    font-weight: normal
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment {
    margin-bottom: 30px
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    position: absolute;
    top: 5%;
    left: 5%;
    color: #019cde;
    font-family: 'BrandonGrotesqueBold';
    opacity: 0;
    text-transform: uppercase
}

html[lang*="cn"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value,
html[lang*="ja"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value,
html[lang*="vi"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    font-family: 'Brandon Bold'
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    filter: brightness(50%)
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    opacity: 1;
    z-index: 98
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__title {
    display: none
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__elements {
    margin-left: 10px;
    margin-top: 15px;
    margin-right: 10px;
    position: relative
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage {
    margin: -10px !important
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value {
    margin-bottom: 25px
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    width: 100%;
    height: 157px
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    text-transform: uppercase;
    letter-spacing: 1.504px;
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="cn"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading *,
html[lang*="ja"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="ja"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading *,
html[lang*="vi"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="vi"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Brandon Bold'
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value {
    margin: 0
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value p,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value p {
    margin-bottom: 0
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-gray,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-gray {
    color: #63666a
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-light-blue,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-light-blue {
    color: #5bc2e7
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-blue,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-blue {
    color: #004f71
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-red,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-red {
    color: #e4002b
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-red,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-red {
    color: #f5889d
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-gold,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-gold {
    color: #eeb33b
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-mint,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-mint {
    color: #64ccc9
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-purple,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-purple {
    color: #470a68
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-magenta,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-magenta {
    color: #aa0061
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-green,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-green {
    color: #00b140
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    text-transform: uppercase;
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="cn"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading *,
html[lang*="ja"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="ja"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading *,
html[lang*="vi"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="vi"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    font-family: 'Brandon Bold'
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * .cmp-contentfragment__element-value {
    margin: 0
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value p,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * .cmp-contentfragment__element-value p {
    margin: 0
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Georgia'
}

html[lang*="vi"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
html[lang*="vi"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Serif Regular'
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'BrandonGrotesqueMedium';
    color: #88888d
}

html[lang*="cn"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*="ja"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*="vi"] .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Brandon Bold'
}

.contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element-title {
    display: none
}

@media only screen and (max-width:767.98px) {
    .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist {
        width: 100%
    }

    .contentfragmentlist.cnt-trending-list .cmp-contentfragmentlist .cmp-contentfragment__elements {
        margin: 0
    }
}

.contentfragmentlist.cnt-trending-list .pagination {
    display: none
}

@media only screen and (min-width:768px) {
    .contentfragmentlist.categoryfilter-three-column .cmp-contentfragmentlist {
        display: grid;
        grid-template-columns: repeat(3, 1fr) !important
    }
}

@media only screen and (min-width:768px) {
    .contentfragmentlist.categoryfilter .cmp-contentfragmentlist {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 7.5px));
        grid-gap: 1.875em 15px;
        margin-bottom: 3.125em;
        padding-left: 10px;
        padding-right: 10px
    }
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor {
    text-decoration: none;
    color: #000;
    font-weight: normal
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    position: absolute;
    top: 8%;
    left: 5%;
    color: #019cde;
    opacity: 0;
    text-transform: uppercase
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value *,
html[lang*="ja"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    filter: brightness(50%)
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    opacity: 1;
    z-index: 98
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__title {
    display: none
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__elements {
    margin-left: 10px;
    margin-top: 15px;
    margin-right: 10px;
    position: relative
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage {
    margin: -10px !important
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value {
    margin-bottom: 25px
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    width: 100%;
    height: 145px
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    text-transform: uppercase;
    letter-spacing: 1.504px;
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="cn"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading *,
html[lang*="ja"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="ja"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="vi"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value {
    margin: 0
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value p,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value p {
    margin-bottom: 0
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-gray,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-gray {
    color: #63666a
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-light-blue,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-light-blue {
    color: #5bc2e7
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-blue,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-blue {
    color: #004f71
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-red,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-red {
    color: #e4002b
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-red,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-red {
    color: #f5889d
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-gold,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-gold {
    color: #eeb33b
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-mint,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-mint {
    color: #64ccc9
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-purple,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-purple {
    color: #470a68
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-magenta,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-magenta {
    color: #aa0061
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-green,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-green {
    color: #00b140
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    text-transform: uppercase;
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="cn"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading *,
html[lang*="ja"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="ja"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="vi"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * .cmp-contentfragment__element-value {
    margin: 0
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value p,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * .cmp-contentfragment__element-value p {
    margin: 0
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Georgia'
}

html[lang*="vi"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
html[lang*="vi"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Serif Regular'
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'BrandonGrotesqueBold';
    color: #939799
}

html[lang*="cn"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*="ja"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragmentlist.categoryfilter .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element-title {
    display: none
}

@media only screen and (max-width:767.98px) {
    .contentfragmentlist.categoryfilter .cmp-contentfragmentlist {
        width: 100%;
        padding: 0
    }

    .contentfragmentlist.categoryfilter .cmp-contentfragmentlist .cmp-contentfragment__elements {
        margin: 0
    }
}

.contentfragmentlist.categoryfilter .pagination {
    display: none
}

@media only screen and (min-width:768px) {
    .contentfragmentlist.content-fragment-medialibrary-variation-2 .cmp-contentfragmentlist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.875em 15px;
        margin-bottom: 3.125em;
        padding-left: 10px;
        padding-right: 10px
    }
}

.contentfragmentlist.content-fragment-medialibrary-variation-2 .cmp-contentfragmentlist .article-ahnchor {
    display: none
}

.contentfragmentlist.content-fragment-medialibrary-variation-2 .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element-title {
    display: none
}

.contentfragmentlist.content-fragment-medialibrary-variation-2 .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__title {
    display: none
}

.contentfragmentlist.content-fragment-medialibrary-variation-2 .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration {
    display: none
}

.contentfragmentlist.content-fragment-medialibrary-variation-2 .cmp-contentfragmentlist .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.contentfragmentlist.content-fragment-medialibrary-variation-2 .pagination {
    display: none
}

@media only screen and (min-width:768px) {
    .contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.875em 15px;
        margin-bottom: 3.125em
    }
}

.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment {
    border: 1px solid #ccc
}

@media only screen and (max-width:767.98px) {
    .contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment {
        margin-top: 25px
    }
}

.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment a {
    color: #009cde;
    font-family: 'Georgia'
}

.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment a:hover,
.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment a:focus {
    color: #2a6496;
    text-decoration: none
}

.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment__title {
    display: none
}

.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment__elements {
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 10px;
    position: relative
}

.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value {
    margin-bottom: 25px
}

.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    width: 100%;
    height: 300px;
    border: 0
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
        height: 240px
    }
}

.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment__element.cmp-contentfragment__element--heading,
.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    text-transform: uppercase;
    letter-spacing: 1.504px;
    font-weight: 500;
    font-family: 'BrandonGrotesqueBlack'
}

.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value,
.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value {
    margin: 0
}

.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.contentfragmentlist.content-fragment-medialibrary .cmp-contentfragmentlist .cmp-contentfragment__element-title {
    display: none
}

.contentfragmentlist.content-fragment-medialibrary .pagination {
    display: none
}

@media only screen and (min-width:768px) {
    .contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.875em 15px;
        margin-bottom: 3.125em
    }
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment {
    border: 1px solid #ccc
}

@media only screen and (max-width:767.98px) {
    .contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment {
        margin-top: 25px
    }
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment a {
    color: #009cde;
    font-family: 'Georgia'
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment a:hover,
.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment a:focus {
    color: #2a6496;
    text-decoration: none
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment__title {
    display: none
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment__elements {
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 10px;
    position: relative
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value {
    margin-bottom: 25px
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    width: 100%;
    height: 300px;
    border: 0
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
        height: 240px
    }
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment__element.cmp-contentfragment__element--heading,
.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    text-transform: uppercase;
    letter-spacing: 1.504px;
    font-weight: 500;
    font-family: 'BrandonGrotesqueBlack'
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value,
.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value {
    margin: 0
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment__element-title {
    display: none
}

.contentfragmentlist.content-fragment-our-experts .pagination {
    display: none
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment .cmp-contentfragment__elements {
    margin: 0
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--mainimage img {
    padding: 0;
    height: auto;
    border-radius: 0
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--heading,
.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription {
    padding: 0 10px
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--heading .cmp-contentfragment__element-value p {
    margin: 0 !important
}

.contentfragmentlist.content-fragment-our-experts .cmp-contentfragmentlist .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value p {
    font-family: 'Georgia' !important
}

@media only screen and (max-width:767.98px) {
    .contentfragmentlist .cmp-contentfragmentlist {
        width: 100%;
        padding: 0
    }

    .contentfragmentlist .cmp-contentfragmentlist .cmp-contentfragment__elements {
        margin: 0
    }
}

.contentfragmentlist .pagination {
    text-align: center
}

.contentfragmentlist .pagination .load-more {
    border: 1px solid #d9d9d6;
    padding: 5px 15px;
    color: #63666a;
    background-color: #fff;
    font-weight: 700
}

.contentfragmentlist .pagination .load-more:hover {
    background-color: #d9d9d6;
    color: #019cde
}

.contentfragmentlist .pagination .pagination-holder {
    color: #63666a;
    font-weight: 700;
    padding-bottom: 15px
}

.contentfragmentlist.content-fragment-recentpress-release .article-ahnchor {
    text-decoration: none;
    font-weight: normal
}

.contentfragmentlist.content-fragment-recentpress-release .cmp-contentfragment__title {
    display: none
}

.contentfragmentlist.content-fragment-recentpress-release .cmp-contentfragment__element-title {
    display: none
}

.contentfragmentlist.content-fragment-recentpress-release .cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value a {
    color: #2a2b33;
    text-decoration: none
}

.contentfragmentlist.content-fragment-recentpress-release .cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value a:hover {
    color: #019cde
}

.contentfragmentlist.content-fragment-recentpress-release .pagination {
    display: none
}

.contentfragmentlist.contentfragmentlist-facts .article-ahnchor {
    text-decoration: none;
    font-weight: normal
}

.contentfragmentlist.contentfragmentlist-facts .cmp-contentfragment__title {
    display: none
}

.contentfragmentlist.contentfragmentlist-facts .cmp-contentfragment__element-title {
    display: none
}

.contentfragmentlist.contentfragmentlist-facts .cmp-contentfragment__element--heading .cmp-contentfragment__element-value {
    margin: -10px 0 0 10px
}

.contentfragmentlist.contentfragmentlist-facts .cmp-contentfragment__element--heading .cmp-contentfragment__element-value a {
    color: #019cde;
    text-decoration: none
}

.contentfragmentlist.contentfragmentlist-facts .cmp-contentfragment__element--heading .cmp-contentfragment__element-value a:hover {
    color: #019cde
}

.contentfragmentlist.contentfragmentlist-facts .cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value {
    color: #000;
    margin: -10px 0 0 10px
}

.contentfragmentlist.contentfragmentlist-facts .pagination {
    display: none
}

.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__elements {
    margin: 0
}

.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value {
    margin-bottom: 15px
}

.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value * {
    color: #333;
    font-size: 2.8rem
}

.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value {
    font-size: 2rem;
    font-style: italic;
    line-height: 1.313em
}

@media only screen and (max-width:767.98px) {
    .contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value {
        font-size: 1.25rem
    }
}

.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value p:empty,
.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value h1:empty,
.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value h2:empty,
.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value h3:empty {
    display: none
}

.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value {
    margin-top: 3px
}

.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value a {
    padding-right: 15px;
    text-decoration: none;
    text-transform: uppercase
}

.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    color: #939799;
    font-size: 1.125rem;
    border-left: 2px solid #939799;
    margin-bottom: 15px;
    margin-top: 2px;
    padding-left: 15px
}

.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment-wrapper {
    margin-top: 30px;
    display: flex
}

.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__element-title,
.contentfragment.cmp-contentfragment-corpnewsroom .cmp-contentfragment__title {
    display: none
}

.contentfragment.cmp-contentfragment-corpnewsroom.cmp-contentfragment-color-gray .cmp-contentfragment__element.cmp-contentfragment__element--subheading a {
    color: #63666a
}

.contentfragment.cmp-contentfragment-corpnewsroom.cmp-contentfragment-color-light-blue .cmp-contentfragment__element.cmp-contentfragment__element--subheading a {
    color: #5bc2e7
}

.contentfragment.cmp-contentfragment-corpnewsroom.cmp-contentfragment-color-medium-blue .cmp-contentfragment__element.cmp-contentfragment__element--subheading a {
    color: #004f71
}

.contentfragment.cmp-contentfragment-corpnewsroom.cmp-contentfragment-color-red .cmp-contentfragment__element.cmp-contentfragment__element--subheading a {
    color: #e4002b
}

.contentfragment.cmp-contentfragment-corpnewsroom.cmp-contentfragment-color-gold .cmp-contentfragment__element.cmp-contentfragment__element--subheading a {
    color: #eeb33b
}

.contentfragment.cmp-contentfragment-corpnewsroom.cmp-contentfragment-color-mint .cmp-contentfragment__element.cmp-contentfragment__element--subheading a {
    color: #64ccc9
}

.contentfragment.cmp-contentfragment-corpnewsroom.cmp-contentfragment-color-purple .cmp-contentfragment__element.cmp-contentfragment__element--subheading a {
    color: #470a68
}

.contentfragment.cmp-contentfragment-corpnewsroom.cmp-contentfragment-color-magenta .cmp-contentfragment__element.cmp-contentfragment__element--subheading a {
    color: #aa0061
}

.contentfragment.cmp-contentfragment-corpnewsroom.cmp-contentfragment-color-medium-green .cmp-contentfragment__element.cmp-contentfragment__element--subheading a {
    color: #00b140
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='en'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements * {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='ja'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements * {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='kr'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='th'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='th'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='tw'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='tw'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements * {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .contentfragmentlist.cmp-contentfragment-font--bold .cmp-contentfragment__elements *,
html[lang*='vi'] .contentfragment.cmp-contentfragment-font--bold .cmp-contentfragment__elements * {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='en'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements * {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='kr'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='th'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='th'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='tw'] .contentfragmentlist.cmp-contentfragment-font--medium .cmp-contentfragment__elements *,
html[lang*='tw'] .contentfragment.cmp-contentfragment-font--medium .cmp-contentfragment__elements * {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='en'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements * {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='kr'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='th'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='th'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='tw'] .contentfragmentlist.cmp-contentfragment-font--black .cmp-contentfragment__elements *,
html[lang*='tw'] .contentfragment.cmp-contentfragment-font--black .cmp-contentfragment__elements * {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='en'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements * {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='kr'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='th'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='th'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='tw'] .contentfragmentlist.cmp-contentfragment-font--regular .cmp-contentfragment__elements *,
html[lang*='tw'] .contentfragment.cmp-contentfragment-font--regular .cmp-contentfragment__elements * {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='en'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements * {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='kr'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='th'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='th'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='tw'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='tw'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements * {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .contentfragmentlist.cmp-contentfragment-font--thin .cmp-contentfragment__elements *,
html[lang*='vi'] .contentfragment.cmp-contentfragment-font--thin .cmp-contentfragment__elements * {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='en'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='id'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='es'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='it'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='de'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements * {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .contentfragmentlist.cmp-contentfragment-font--italic .cmp-contentfragment__elements *,
html[lang*='vi'] .contentfragment.cmp-contentfragment-font--italic .cmp-contentfragment__elements * {
    --font-family: 'Segoe UI Italic'
}

.contentfragmentlist.cmp-contentfragment-arial .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-arial .cmp-contentfragment__elements * {
    font-family: 'Arial'
}

.contentfragmentlist.cmp-contentfragment-brandon-grotesque-black .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-brandon-grotesque-black .cmp-contentfragment__elements * {
    font-family: 'BrandonGrotesqueBlack'
}

.contentfragmentlist.cmp-contentfragment-brandon-grotesque-regular .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-brandon-grotesque-regular .cmp-contentfragment__elements * {
    font-family: 'BrandonGrotesqueRegular'
}

.contentfragmentlist.cmp-contentfragment-brandon-grotesque-bold .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-brandon-grotesque-bold .cmp-contentfragment__elements * {
    font-family: 'BrandonGrotesqueBold'
}

.contentfragmentlist.cmp-contentfragment-georgia .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-georgia .cmp-contentfragment__elements * {
    font-family: 'Georgia'
}

.contentfragmentlist.cmp-contentfragment-meiryo .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-meiryo .cmp-contentfragment__elements * {
    font-family: 'Meiryo'
}

.contentfragmentlist.cmp-contentfragment-segoe-ui .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-segoe-ui .cmp-contentfragment__elements * {
    font-family: 'Segoe UI'
}

.contentfragmentlist.cmp-contentfragment-times-new-roman .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-times-new-roman .cmp-contentfragment__elements * {
    font-family: 'Times New Roman'
}

.contentfragmentlist.cmp-contentfragment-extazy-black .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-extazy-black .cmp-contentfragment__elements * {
    font-family: 'Extazy Black'
}

.contentfragmentlist.cmp-contentfragment-extazy-bold .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-extazy-bold .cmp-contentfragment__elements * {
    font-family: 'Extazy Bold'
}

.contentfragmentlist.cmp-contentfragment-extazy-light .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-extazy-light .cmp-contentfragment__elements * {
    font-family: 'Extazy Light'
}

.contentfragmentlist.cmp-contentfragment-noto-sans-regular .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-noto-sans-regular .cmp-contentfragment__elements * {
    font-family: 'Noto Sans TC Regular'
}

.contentfragmentlist.cmp-contentfragment-noto-sans-bold .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-noto-sans-bold .cmp-contentfragment__elements * {
    font-family: 'Noto Sans TC Bold'
}

.contentfragmentlist.cmp-contentfragment-noto-sans-thin .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-noto-sans-thin .cmp-contentfragment__elements * {
    font-family: 'Noto Sans TC Thin'
}

.contentfragmentlist.cmp-contentfragment-microsoft-ya-hei .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-microsoft-ya-hei .cmp-contentfragment__elements * {
    font-family: 'Microsoft YaHei'
}

.contentfragmentlist.cmp-contentfragment-calibri .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-calibri .cmp-contentfragment__elements * {
    font-family: 'Calibri'
}

.contentfragmentlist.cmp-contentfragment-helvetica-neue .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-helvetica-neue .cmp-contentfragment__elements * {
    font-family: 'Helvetica Neue'
}

.contentfragmentlist.cmp-contentfragment-noto-sans-kr .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-noto-sans-kr .cmp-contentfragment__elements * {
    font-family: '"Noto Sans KR", sans-serif'
}

.contentfragmentlist.cmp-contentfragment-font-sans-serif .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-font-sans-serif .cmp-contentfragment__elements * {
    font-family: 'sans-serif'
}

.contentfragmentlist.cmp-contentfragment-font-noto-sans-sc-regular .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-font-noto-sans-sc-regular .cmp-contentfragment__elements * {
    font-family: 'Noto Sans SC Regular'
}

.contentfragmentlist.cmp-contentfragment-font-brandon-medium .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-font-brandon-medium .cmp-contentfragment__elements * {
    font-family: 'Brandon Medium'
}

.contentfragmentlist.cmp-contentfragment-font-brandon-bold .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-font-brandon-bold .cmp-contentfragment__elements * {
    font-family: 'Brandon Bold'
}

.contentfragmentlist.cmp-contentfragment-font-brandon-regular .cmp-contentfragment__elements *,
.contentfragment.cmp-contentfragment-font-brandon-regular .cmp-contentfragment__elements * {
    font-family: 'Brandon Regular'
}

.contentfragmentlist.cmp-contentfragment-description-font-brandon-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-font-brandon-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Brandon Regular'
}

.contentfragmentlist.cmp-contentfragment-description-font-brandon-bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-font-brandon-bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Brandon Bold'
}

.contentfragmentlist.cmp-contentfragment-description-font-brandon-medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-font-brandon-medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Brandon Medium'
}

.contentfragmentlist.cmp-contentfragment-description-font-noto-sans-sc-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-font-noto-sans-sc-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Sans SC Regular'
}

.contentfragmentlist.cmp-contentfragment-description-font-noto-sans-vi-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-font-noto-sans-vi-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Sans Regular'
}

.contentfragmentlist.cmp-contentfragment-description-font-noto-serif-vi-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-font-noto-serif-vi-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Serif Regular'
}

.contentfragmentlist.cmp-contentfragment-description-font-sans-serif .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-font-sans-serif .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'sans-serif'
}

.contentfragmentlist.cmp-contentfragment-description-noto-sans-kr .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-noto-sans-kr .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: '"Noto Sans KR", sans-serif'
}

.contentfragmentlist.cmp-contentfragment-description-helvetica-neue .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-helvetica-neue .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Helvetica Neue'
}

.contentfragmentlist.cmp-contentfragment-description-calibri .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-calibri .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Calibri'
}

.contentfragmentlist.cmp-contentfragment-description-microsoft-ya-hei .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-microsoft-ya-hei .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Microsoft YaHei'
}

.contentfragmentlist.cmp-contentfragment-description-brandon-grotesque-bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-brandon-grotesque-bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'BrandonGrotesqueBold'
}

.contentfragmentlist.cmp-contentfragment-description-georgia .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-georgia .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Georgia'
}

.contentfragmentlist.cmp-contentfragment-description-meiryo .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-meiryo .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Meiryo'
}

.contentfragmentlist.cmp-contentfragment-description-segoe-ui .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-segoe-ui .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Segoe UI'
}

.contentfragmentlist.cmp-contentfragment-description-times-new-roman .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-times-new-roman .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Times New Roman'
}

.contentfragmentlist.cmp-contentfragment-description-extazy-black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-extazy-black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Extazy Black'
}

.contentfragmentlist.cmp-contentfragment-description-extazy-bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-extazy-bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Extazy Bold'
}

.contentfragmentlist.cmp-contentfragment-description-extazy-light .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-extazy-light .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Extazy Light'
}

.contentfragmentlist.cmp-contentfragment-description-noto-sans-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-noto-sans-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Sans TC Regular'
}

.contentfragmentlist.cmp-contentfragment-description-noto-sans-bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-noto-sans-bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Sans TC Bold'
}

.contentfragmentlist.cmp-contentfragment-description-noto-sans-thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-noto-sans-thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Sans TC Thin'
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='en'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ja'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='kr'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='th'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='th'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tw'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tw'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .contentfragmentlist.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='vi'] .contentfragment.cmp-contentfragment-description-font--bold .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='en'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='kr'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='th'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='th'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tw'] .contentfragmentlist.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tw'] .contentfragment.cmp-contentfragment-description-font--medium .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='en'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='kr'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='th'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='th'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tw'] .contentfragmentlist.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tw'] .contentfragment.cmp-contentfragment-description-font--black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='en'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='kr'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='th'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='th'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tw'] .contentfragmentlist.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tw'] .contentfragment.cmp-contentfragment-description-font--regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='en'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='kr'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='th'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='th'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tw'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tw'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .contentfragmentlist.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='vi'] .contentfragment.cmp-contentfragment-description-font--thin .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='en'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='zh'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='id'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='tr'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='es'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='gr'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='it'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='nl'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pl'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='pt'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='sk'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='cz'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='fr'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='de'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ch'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ar'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ua'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='ca'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .contentfragmentlist.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
html[lang*='vi'] .contentfragment.cmp-contentfragment-description-font--italic .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    --font-family: 'Segoe UI Italic'
}

.contentfragmentlist.cmp-contentfragment-description-arial .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-arial .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'Arial'
}

.contentfragmentlist.cmp-contentfragment-description-brandon-grotesque-black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-brandon-grotesque-black .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'BrandonGrotesqueBlack'
}

.contentfragmentlist.cmp-contentfragment-description-brandon-grotesque-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription *,
.contentfragment.cmp-contentfragment-description-brandon-grotesque-regular .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription * {
    font-family: 'BrandonGrotesqueRegular'
}

.contentfragmentlist.image-medialibrary .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value,
.contentfragment.image-medialibrary .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px
}

.contentfragmentlist.image-medialibrary .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value p,
.contentfragment.image-medialibrary .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value p {
    align-items: center;
    display: flex;
    align-self: center;
    vertical-align: middle;
    margin-bottom: 0
}

.contentfragmentlist.image-medialibrary .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value p a img,
.contentfragment.image-medialibrary .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value p a img {
    width: auto !important;
    margin: 0 auto;
    display: block;
    height: auto !important;
    max-height: 300px
}

.contentfragmentlist.image-medialibrary .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-title,
.contentfragment.image-medialibrary .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-title {
    font-size: .813rem;
    font-family: 'BrandonGrotesqueBlack'
}

.contentfragmentlist.image-medialibrary .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value .arTitle,
.contentfragment.image-medialibrary .cmp-contentfragment .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription .cmp-contentfragment__element-value .arTitle {
    font-size: .813rem;
    font-family: 'BrandonGrotesqueBlack'
}

.customtextlist.customtextlist-redesign-button .m-custom-list .m-custom-list__header-title p:empty,
.customtextlist.customtextlist-redesign-button .m-custom-list .m-custom-list__header-title h3:empty,
.customtextlist.customtextlist-redesign-button .m-custom-list .m-custom-list__header-title h4:empty,
.customtextlist.customtextlist-redesign-button .m-custom-list .m-custom-list__header-title h5:empty {
    display: none
}

.customtextlist.customtextlist-redesign-button .m-custom-list .m-custom-list__header-title h3,
.customtextlist.customtextlist-redesign-button .m-custom-list .m-custom-list__header-title h4,
.customtextlist.customtextlist-redesign-button .m-custom-list .m-custom-list__header-title p {
    color: #63666a;
    padding-left: 12px
}

.customtextlist.customtextlist-redesign-button .m-custom-list__content .m-custom-list__heading {
    padding-left: 15px !important
}

.customtextlist.customtextlist-redesign-button .m-custom-list__content .m-custom-list__heading a {
    color: #63666a;
    text-decoration: none;
    width: 100% !important;
    display: inline-block;
    padding: 3px;
    padding: 3px 3px 3px 8px
}

.customtextlist.customtextlist-redesign-button .m-custom-list__content .m-custom-list__heading a:hover {
    color: #019cde
}

.customtextlist.customtextlist-redesign-button .m-custom-list__content .m-custom-list__para {
    margin: 0
}

.customtextlist.customtextlist-redesign-button .m-custom-list__content p.customtextlist-redesign-button--active-link {
    background-color: #009cde;
    color: #fff
}

.customtextlist.customtextlist-redesign-button .m-custom-list__content p.customtextlist-redesign-button--active-link a {
    color: #fff !important
}

.customtextlist.customtextlist-redesign-button .m-custom-list__content p.customtextlist-redesign-button--active-link a:hover {
    color: #fff !important
}

.customtextlist.categoryfilterlist .m-custom-list h3 {
    color: #63666a;
    border-bottom: 1px solid #63666a;
    font-size: 1em;
    line-height: 1.5rem;
    letter-spacing: .094em
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper {
    margin-top: -8px
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__para {
    margin: 0
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading {
    --custom-list-padding-x: 0;
    --custom-list-padding-y: 0
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4 {
    padding-left: 10px;
    padding-top: 3px;
    margin-bottom: 6px
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4 a {
    color: #63666a;
    font-size: .875rem;
    text-decoration: none
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4 a:hover {
    color: #019cde
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4.color-gray {
    --text-color: #63666a
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4.color-light-blue {
    --text-color: #5bc2e7
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4.color-medium-blue {
    --text-color: #004f71
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4.color-red {
    --text-color: #e4002b
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4.color-gold {
    --text-color: #eeb33b
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4.color-mint {
    --text-color: #64ccc9
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4.color-purple {
    --text-color: #470a68
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4.color-magenta {
    --text-color: #aa0061
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4.color-medium-green {
    --text-color: #00b140
}

.customtextlist.categoryfilterlist .m-custom-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading .h4.color-default-blue {
    --text-color: #428bca
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey {
    background-color: #63666a
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey a {
    color: #fff !important
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey a:hover {
    color: #fff !important
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey.color-gray {
    background-color: #63666a
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey.color-light-blue {
    background-color: #5bc2e7
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey.color-medium-blue {
    background-color: #004f71
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey.color-red {
    background-color: #e4002b
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey.color-gold {
    background-color: #eeb33b
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey.color-mint {
    background-color: #64ccc9
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey.color-purple {
    background-color: #470a68
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey.color-magenta {
    background-color: #aa0061
}

.customtextlist .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link-grey.color-medium-green {
    background-color: #00b140
}

@media only screen and (min-width:768px) {
    .customtextlist.medialibrary-custom-text-list {
        padding-left: 2rem
    }
}

@media only screen and (min-width:992px) {
    .customtextlist.medialibrary-custom-text-list {
        padding-left: 6rem
    }
}

.customtextlist.medialibrary-custom-text-list[class*="font-brandon-grotesque-"] .m-custom-list__title {
    display: flex;
    padding-top: 5px
}

.customtextlist.medialibrary-custom-text-list[class*="font-brandon-grotesque-"] .m-custom-list__title .media-library--article-length {
    padding: 5px 15px 0 5px
}

.customtextlist.medialibrary-custom-text-list .m-custom-list__para {
    margin-bottom: 8px
}

.customtextlist.medialibrary-custom-text-list .m-custom-list__para p {
    display: none
}

.customtextlist.medialibrary-custom-text-list .m-custom-list>p {
    margin-bottom: 0 !important
}

.customtextlist.medialibrary-custom-text-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading {
    padding-top: 0
}

.customtextlist.medialibrary-custom-text-list .m-custom-list__wrapper .m-custom-list__content p {
    background: #63666a;
    margin-bottom: -15px;
    text-transform: uppercase
}

.customtextlist.medialibrary-custom-text-list .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link {
    background-color: #009cde
}

.customtextlist.medialibrary-custom-text-list .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link:hover {
    background-color: #009cde
}

.customtextlist.medialibrary-custom-text-list .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link:hover * {
    color: #fff
}

.customtextlist.medialibrary-custom-text-list .m-custom-list__wrapper .m-custom-list__content p a {
    text-decoration: none;
    width: 100% !important;
    display: inline-block;
    padding: 5px 0 5px 10px;
    font-size: .875rem
}

.customtextlist.medialibrary-custom-text-list .m-custom-list__wrapper .m-custom-list__content p * {
    color: #fff
}

.customtextlist.medialibrary-custom-text-list .m-custom-list__wrapper .m-custom-list__content p:hover {
    background-color: #f4f4f4;
    cursor: pointer
}

.customtextlist.medialibrary-custom-text-list .m-custom-list__wrapper .m-custom-list__content p:hover * {
    color: #3d566e
}

@media only screen and (min-width:992px) {
    .customtextlist.medialibrary-custom-text-list.medialibrary-us-variation .m-custom-list__wrapper {
        width: 125%
    }
}

.customtextlist.medialibrary-custom-text-list.medialibrary-us-variation .m-custom-list__wrapper .m-custom-list__content p {
    margin-bottom: -5px
}

@media only screen and (min-width:768px) {
    .customtextlist.expert-custom-text-list {
        padding-left: 2rem
    }
}

@media only screen and (min-width:992px) {
    .customtextlist.expert-custom-text-list {
        padding-left: 6rem
    }
}

.customtextlist.expert-custom-text-list[class*="font-brandon-grotesque-"] .m-custom-list__title {
    display: flex;
    padding-top: 5px
}

.customtextlist.expert-custom-text-list[class*="font-brandon-grotesque-"] .m-custom-list__title .media-library--article-length {
    padding: 5px 15px 0 5px
}

.customtextlist.expert-custom-text-list .m-custom-list__para {
    margin-bottom: 8px
}

.customtextlist.expert-custom-text-list .m-custom-list__para p {
    display: none
}

.customtextlist.expert-custom-text-list .m-custom-list>p {
    margin-bottom: 0 !important
}

.customtextlist.expert-custom-text-list .m-custom-list__wrapper .m-custom-list__content .m-custom-list__heading {
    padding-top: 0
}

.customtextlist.expert-custom-text-list .m-custom-list__wrapper .m-custom-list__content p {
    background: #63666a;
    margin-bottom: -15px;
    text-transform: uppercase
}

.customtextlist.expert-custom-text-list .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link {
    background-color: #009cde
}

.customtextlist.expert-custom-text-list .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link:hover {
    background-color: #009cde
}

.customtextlist.expert-custom-text-list .m-custom-list__wrapper .m-custom-list__content p.customtextlist-category--active-link:hover * {
    color: #fff
}

.customtextlist.expert-custom-text-list .m-custom-list__wrapper .m-custom-list__content p a {
    text-decoration: none;
    width: 100% !important;
    display: inline-block;
    padding: 5px 0 5px 10px;
    font-size: .875rem
}

.customtextlist.expert-custom-text-list .m-custom-list__wrapper .m-custom-list__content p * {
    color: #fff
}

.customtextlist.expert-custom-text-list .m-custom-list__wrapper .m-custom-list__content p:hover {
    background-color: #f4f4f4;
    cursor: pointer
}

.customtextlist.expert-custom-text-list .m-custom-list__wrapper .m-custom-list__content p:hover * {
    color: #3d566e
}

@media only screen and (min-width:992px) {
    .customtextlist.expert-custom-text-list.medialibrary-us-variation .m-custom-list__wrapper {
        width: 125%
    }
}

.customtextlist.expert-custom-text-list.medialibrary-us-variation .m-custom-list__wrapper .m-custom-list__content p {
    margin-bottom: -5px
}

.customtextlist.expert-custom-text-list .media-library--article-length {
    display: none
}

.customtextlist.our-experts-us .m-custom-list__wrapper .m-custom-list__content .m-custom-list__title {
    background: #63666a;
    padding: 7px 0 1px 13px !important;
    margin-bottom: 9px !important;
    cursor: pointer
}

.customtextlist.our-experts-us .m-custom-list__wrapper .m-custom-list__content .m-custom-list__title a {
    color: #fff !important
}

.customtextlist.our-experts-us .m-custom-list__wrapper .m-custom-list__content .m-custom-list__title:hover {
    background: #f4f4f4
}

.customtextlist.our-experts-us .m-custom-list__wrapper .m-custom-list__content .m-custom-list__title:hover a {
    color: #3d566e !important
}

.customtextlist.our-experts-us .m-custom-list__wrapper .m-custom-list__content .m-custom-list__title.active a {
    color: #fff !important
}

.cnt-trending-list {
    margin-top: 30px !important
}

.o-cards-carousel.image-cards-carousel .abt-icon-right-arrow {
    height: 60px;
    width: 60px;
    right: -60px
}

.o-cards-carousel.image-cards-carousel .abt-icon-right-arrow:before {
    font-size: 2.5rem;
    color: #d9d9d6
}

.o-cards-carousel.image-cards-carousel .abt-icon-left-arrow {
    height: 60px;
    width: 60px;
    left: -60px
}

.o-cards-carousel.image-cards-carousel .abt-icon-left-arrow:before {
    font-size: 2.5rem;
    color: #d9d9d6
}

.o-cards-carousel.image-cards-carousel .slick-dots .slick-active button {
    background-color: #009cde !important;
    border: 0
}

.o-cards-carousel.image-cards-carousel .slick-dots button {
    border: 0;
    background-color: #ccc
}

.o-cards-carousel.image-cards-carousel .cmp-image .cmp-image__image {
    height: 100%
}

.o-cards-carousel.image-cards-carousel .cmp-image .cmp-image__image:hover {
    filter: brightness(50%)
}

@media only screen and (min-width:768px) and (max-width:991.98px) {

    .o-cards-carousel.o-cards-carousel--display-icons--tablet-view .abt-icon-left-arrow,
    .o-cards-carousel.o-cards-carousel--display-icons--tablet-view .abt-icon-right-arrow {
        display: block !important
    }
}

.o-cards-carousel.products-image-panel.o-cards-carousel .slick-slide>div,
.o-cards-carousel.products-image-panel .o-cards-carousel .slick-slide>div>* {
    height: unset
}

.o-cards-carousel.products-image-panel .abt-icon.slick-arrow {
    height: 64px !important;
    width: 64px !important
}

.o-cards-carousel.products-image-panel .abt-icon:before {
    color: #d9d9d6;
    font-size: 4rem
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-cards-carousel.products-image-panel .abt-icon:before {
        font-size: 3.435rem
    }
}

.o-cards-carousel.products-image-panel .abt-icon.slick-prev {
    left: -9%;
    top: 43%
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-cards-carousel.products-image-panel .abt-icon.slick-prev {
        display: block !important;
        left: -9%
    }
}

.o-cards-carousel.products-image-panel .abt-icon.slick-next {
    right: -9%;
    top: 41%
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-cards-carousel.products-image-panel .abt-icon.slick-next {
        display: block !important;
        right: -9%
    }
}

.o-cards-carousel.products-image-panel .slick-list .slick-slide {
    height: 320px
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-cards-carousel.products-image-panel .slick-list .slick-slide {
        height: 320px
    }
}

@media only screen and (max-width:767.98px) {
    .o-cards-carousel.products-image-panel .slick-list .slick-slide {
        border: 1px solid #d9d9d6;
        height: 385px
    }
}

.o-cards-carousel.products-image-panel .slick-list .m-card {
    background: #fff;
    margin-right: 3px
}

.o-cards-carousel.products-image-panel .slick-list .m-card .m-card__media {
    height: 160px !important
}

@media only screen and (max-width:767.98px) {
    .o-cards-carousel.products-image-panel .slick-list .m-card {
        margin-right: 0
    }
}

.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:hover .m-card__body .m-card__title,
.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:active .m-card__body .m-card__title,
.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:focus .m-card__body .m-card__title,
.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:hover .m-card__body .m-card__title *,
.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:active .m-card__body .m-card__title *,
.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:focus .m-card__body .m-card__title *,
.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:hover .m-card__body .m-card__description,
.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:active .m-card__body .m-card__description,
.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:focus .m-card__body .m-card__description,
.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:hover .m-card__body .m-card__description *,
.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:active .m-card__body .m-card__description *,
.o-cards-carousel.products-image-panel .slick-list .m-card .m-card-link:focus .m-card__body .m-card__description * {
    color: #00747e
}

.o-cards-carousel.products-image-panel .slick-list .m-card .m-card__body {
    --card-body-padding: 1rem .2rem
}

.o-cards-carousel.products-image-panel .slick-list .m-card .m-card__body .m-card__description {
    padding: .7rem 0
}

.o-cards-carousel.products-image-panel .slick-list .m-card .m-card__body * {
    line-height: 1.3em;
    margin: 0
}

.o-cards-carousel.products-image-panel .slick-list .m-card .nonClickableLink {
    background: #2a2b33;
    color: #02fdfe;
    display: none;
    margin: auto;
    padding: 5px;
    text-align: center;
    width: 100%
}

.o-cards-carousel.products-image-panel .slick-list .m-card .nonClickableLink p:after {
    content: "^";
    font-size: 1.3rem;
    left: 100%;
    position: absolute;
    top: 0;
    transform: rotate(90deg)
}

.o-cards-carousel.products-image-panel .slick-list .m-card .nonClickableLink p:empty:after {
    left: 50% !important;
    right: 50%;
    transform: translateY(-100%) rotate(90deg)
}

.o-cards-carousel.products-image-panel .slick-list .m-card .nonClickableLink * {
    display: inline-block;
    font-family: 'Helvetica Neue' !important;
    margin: 0 5px 0 0;
    position: relative;
    text-transform: uppercase
}

@media only screen and (max-width:767.98px) {
    .o-cards-carousel.products-image-panel .slick-list .m-card .nonClickableLink {
        display: block
    }
}

.o-cards-carousel.arrow-indicators--white .abt-icon-left-arrow:before,
.o-cards-carousel.arrow-indicators--white .abt-icon-right-arrow:before {
    color: #fff !important
}

.searchresults .o-search-res .pb-5 {
    padding-bottom: 0 !important
}

.searchresults .o-search-res .m-search-bar {
    margin: 0
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .searchresults .o-search-res .m-search-bar .m-search-bar__container .m-search-bar__input {
        margin-right: 0;
        --searchbar-md-input-width: 400px
    }

    .searchresults .o-search-res .m-search-bar .m-search-bar__container .m-search-bar__input .m-search-bar__input-field {
        width: 85%
    }

    .searchresults .o-search-res .m-search-bar .m-search-bar__container .m-search-bar__input .m-search-bar__close {
        right: 20%
    }

    .searchresults .o-search-res .m-search-bar .m-search-bar__container .m-search-bar__input .m-search-bar__autocomplete {
        width: 85%
    }
}

@media only screen and (max-width:767.98px) {
    .searchresults .o-search-res .m-search-bar .m-search-bar__container .m-search-bar__button .search-button .btn {
        height: 3rem;
        width: 3.25rem
    }
}

.searchresults .o-search-res .o-search-res__container .o-search-res__header {
    padding-bottom: 0;
    border-bottom: 1px solid #d9dadb
}

.searchresults .o-search-res .o-search-res__container .o-search-res__header .o-search-res__header-title {
    margin-bottom: 0
}

.searchresults .o-search-res .o-search-res__container .o-search-res__results .a-result {
    border-bottom: 1px solid #d9dadb;
    padding: 1rem 0 2rem 0
}

.searchresults .o-search-res .o-search-res__container .o-search-res__results .a-result .a-result__title {
    margin: 0
}

.searchresults .o-search-res .o-search-res__container .o-search-res__results .a-result .a-result__title * {
    color: #004f71;
    text-transform: uppercase
}

.searchresults .o-search-res .o-search-res__container .o-search-res__results .a-result .a-result__description {
    color: #2a2b33;
    margin-bottom: 0
}

.searchresults .o-search-res .o-search-res__container .o-search-res__results .a-result:hover {
    background: #eee
}

.searchresults .o-search-res .a-pagination {
    text-align: center
}

@media only screen and (max-width:767.98px) {
    .searchresults .o-search-res .a-pagination {
        display: flex;
        justify-content: space-evenly;
        text-align: center
    }

    .searchresults .o-search-res .a-pagination .a-pagination__pages {
        justify-content: space-evenly
    }

    .searchresults .o-search-res .a-pagination .a-pagination__pages .a-pagination__page .a-pagination__link {
        padding: 7px 10px;
        border-left: 0;
        border-right: 0
    }

    .searchresults .o-search-res .a-pagination .a-pagination__pages .a-pagination__page .a-pagination__link .abt-icon {
        font-size: .875rem
    }
}

.searchresults .o-search-res .a-pagination .a-pagination__pages {
    border: 1px solid #ddd
}

.searchresults .o-search-res .a-pagination .a-pagination__pages .a-pagination__page {
    border: 1px solid #ddd
}

.searchresults .o-search-res .a-pagination .a-pagination__pages .a-pagination__page .a-pagination__link {
    color: #3d566e;
    padding: 7px 10px;
    border-left: 0;
    border-right: 0
}

.searchresults .o-search-res .a-pagination .a-pagination__pages .a-pagination__page .a-pagination__link:hover {
    background-color: #ededed;
    border: 0;
    font-weight: normal
}

.searchresults .o-search-res .a-pagination .a-pagination__pages .a-pagination__page.a-pagination--active {
    background-color: #232832
}

.searchresults .o-search-res .a-pagination .a-pagination__pages .a-pagination__page.a-pagination--active .a-pagination__link {
    color: #fff
}

.searchresults .o-search-res .a-pagination .a-pagination__pages .a-pagination__page.a-pagination--active .a-pagination__link:hover {
    background-color: #232832
}

.searchresults .o-search-res .a-pagination .a-pagination__pages .a-pagination__page.a-pagination--active::after {
    display: none
}

.searchresults .o-search-res[data-results="-1"] .o-search-res__header,
.searchresults .o-search-res[data-results="-1"] .o-search-res__results,
.searchresults .o-search-res[data-results="-1"] .a-pagination {
    display: none
}

@media only screen and (min-width:768px) {
    .searchresults.remove-margin--left .o-search-res__container .offset-md-2 {
        margin-left: 0
    }
}

html[lang*='en'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='en'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='zh'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='zh'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='id'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='id'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='tr'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='tr'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='es'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='es'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='gr'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='gr'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='it'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='it'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='nl'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='nl'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='pl'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='pl'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='pt'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='pt'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='sk'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='sk'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='cz'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='cz'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='fr'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='fr'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='de'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='de'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='ch'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='ch'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='ar'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='ar'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='ua'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='ua'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='ca'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='ca'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title * {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='ja'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title * {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='kr'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='th'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='th'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title *,
html[lang*='tw'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='tw'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title * {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title,
html[lang*='vi'] .searchresults.search-results-title--font-bold .o-search-res__results .a-result .a-result__title * {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='en'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='zh'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='zh'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='id'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='id'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='tr'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='tr'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='es'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='es'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='gr'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='gr'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='it'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='it'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='nl'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='nl'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='pl'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='pl'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='pt'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='pt'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='sk'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='sk'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='cz'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='cz'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='fr'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='fr'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='de'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='de'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='ch'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='ch'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='ar'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='ar'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='ua'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='ua'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='ca'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='ca'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title * {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='kr'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='th'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='th'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title *,
html[lang*='tw'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title,
html[lang*='tw'] .searchresults.search-results-title--font-medium .o-search-res__results .a-result .a-result__title * {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='en'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='zh'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='zh'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='id'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='id'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='tr'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='tr'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='es'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='es'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='gr'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='gr'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='it'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='it'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='nl'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='nl'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='pl'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='pl'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='pt'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='pt'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='sk'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='sk'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='cz'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='cz'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='fr'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='fr'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='de'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='de'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='ch'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='ch'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='ar'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='ar'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='ua'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='ua'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='ca'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='ca'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title * {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='kr'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='th'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='th'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title *,
html[lang*='tw'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title,
html[lang*='tw'] .searchresults.search-results-title--font-black .o-search-res__results .a-result .a-result__title * {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='en'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='zh'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='zh'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='id'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='id'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='tr'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='tr'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='es'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='es'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='gr'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='gr'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='it'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='it'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='nl'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='nl'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='pl'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='pl'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='pt'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='pt'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='sk'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='sk'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='cz'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='cz'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='fr'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='fr'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='de'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='de'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='ch'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='ch'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='ar'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='ar'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='ua'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='ua'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='ca'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='ca'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title * {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='kr'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='th'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='th'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title *,
html[lang*='tw'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title,
html[lang*='tw'] .searchresults.search-results-title--font-regular .o-search-res__results .a-result .a-result__title * {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='en'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='zh'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='zh'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='id'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='id'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='tr'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='tr'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='es'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='es'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='gr'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='gr'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='it'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='it'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='nl'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='nl'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='pl'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='pl'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='pt'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='pt'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='sk'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='sk'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='cz'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='cz'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='fr'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='fr'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='de'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='de'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='ch'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='ch'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='ar'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='ar'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='ua'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='ua'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='ca'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='ca'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title * {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='kr'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='th'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='th'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title *,
html[lang*='tw'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='tw'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title * {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title,
html[lang*='vi'] .searchresults.search-results-title--font-thin .o-search-res__results .a-result .a-result__title * {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='en'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='zh'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='zh'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='id'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='id'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='tr'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='tr'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='es'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='es'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='gr'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='gr'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='it'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='it'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='nl'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='nl'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='pl'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='pl'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='pt'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='pt'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='sk'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='sk'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='cz'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='cz'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='fr'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='fr'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='de'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='de'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='ch'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='ch'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='ar'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='ar'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='ua'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='ua'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title *,
html[lang*='ca'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='ca'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title * {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title,
html[lang*='vi'] .searchresults.search-results-title--font-italic .o-search-res__results .a-result .a-result__title * {
    --font-family: 'Segoe UI Italic'
}

.searchresults.search-results-title--font-arial {
    --search-results-font-family-title: 'Arial'
}

.searchresults.search-results-title--font-brandon-grotesque-medium {
    --search-results-font-family-title: 'BrandonGrotesqueMedium'
}

.searchresults.search-results-title--font-brandon-grotesque-black {
    --search-results-font-family-title: 'BrandonGrotesqueBlack'
}

.searchresults.search-results-title--font-brandon-grotesque-regular {
    --search-results-font-family-title: 'BrandonGrotesqueRegular'
}

.searchresults.search-results-title--font-brandon-grotesque-bold {
    --search-results-font-family-title: 'BrandonGrotesqueBold'
}

.searchresults.search-results-title--font-georgia {
    --search-results-font-family-title: 'Georgia'
}

.searchresults.search-results-title--font-meiryo {
    --search-results-font-family-title: 'Meiryo'
}

.searchresults.search-results-title--font-segoe-ui {
    --search-results-font-family-title: 'Segoe UI'
}

.searchresults.search-results-title--font-times-new-roman {
    --search-results-font-family-title: 'Times New Roman'
}

.searchresults.search-results-title--font-extazy-black {
    --search-results-font-family-title: 'Extazy Black'
}

.searchresults.search-results-title--font-extazy-bold {
    --search-results-font-family-title: 'Extazy Bold'
}

.searchresults.search-results-title--font-extazy-light {
    --search-results-font-family-title: 'Extazy Light'
}

.searchresults.search-results-title--font-extazy-regular {
    --search-results-font-family-title: 'Extazy Regular'
}

.searchresults.search-results-title--font-noto-sans-thin {
    --search-results-font-family-title: 'Noto Sans TC Thin'
}

.searchresults.search-results-title--font-noto-sans-light {
    --search-results-font-family-title: 'Noto Sans TC Light'
}

.searchresults.search-results-title--font-noto-sans-regular {
    --search-results-font-family-title: 'Noto Sans TC Regular'
}

.searchresults.search-results-title--font-noto-sans-medium {
    --search-results-font-family-title: 'Noto Sans TC Medium'
}

.searchresults.search-results-title--font-noto-sans-bold {
    --search-results-font-family-title: 'Noto Sans TC Bold'
}

.searchresults.search-results-title--font-noto-sans-black {
    --search-results-font-family-title: 'Noto Sans TC Black'
}

.searchresults.search-results-title--font-microsoft-ya-hei {
    --search-results-font-family-title: 'Microsoft YaHei'
}

.searchresults.search-results-title--font-calibri {
    --search-results-font-family-title: 'Calibri'
}

.searchresults.search-results-title--font-noto-sans-sc-regular {
    --search-results-font-family-title: 'Noto Sans SC Regular'
}

.searchresults.search-results-title--font-brandon-medium {
    --search-results-font-family-title: 'Brandon Medium'
}

.searchresults.search-results-title--font-brandon-bold {
    --search-results-font-family-title: 'Brandon Bold'
}

.searchresults.search-results-title--font-brandon-regular {
    --search-results-font-family-title: 'Brandon Regular'
}

.searchresults.search-results-title--font-noto-sans-vi-regular {
    --search-results-font-family-title: 'Noto Sans Regular'
}

html[lang*='en'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='zh'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='id'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='tr'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='es'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='gr'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='it'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='nl'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='pl'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='pt'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='sk'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='cz'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='fr'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='de'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='ch'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='ar'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='ua'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='ca'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='th'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description,
html[lang*='tw'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .searchresults.search-results-description--font-bold .o-search-res__results .a-result .a-result__description {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='zh'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='id'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='tr'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='es'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='gr'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='it'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='nl'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='pl'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='pt'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='sk'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='cz'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='fr'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='de'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='ch'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='ar'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='ua'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='ca'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='th'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description,
html[lang*='tw'] .searchresults.search-results-description--font-medium .o-search-res__results .a-result .a-result__description {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='zh'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='id'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='tr'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='es'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='gr'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='it'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='nl'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='pl'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='pt'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='sk'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='cz'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='fr'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='de'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='ch'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='ar'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='ua'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='ca'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='th'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description,
html[lang*='tw'] .searchresults.search-results-description--font-black .o-search-res__results .a-result .a-result__description {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='zh'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='id'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='tr'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='es'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='gr'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='it'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='nl'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='pl'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='pt'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='sk'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='cz'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='fr'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='de'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='ch'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='ar'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='ua'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='ca'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='th'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description,
html[lang*='tw'] .searchresults.search-results-description--font-regular .o-search-res__results .a-result .a-result__description {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='zh'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='id'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='tr'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='es'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='gr'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='it'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='nl'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='pl'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='pt'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='sk'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='cz'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='fr'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='de'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='ch'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='ar'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='ua'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='ca'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='th'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description,
html[lang*='tw'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .searchresults.search-results-description--font-thin .o-search-res__results .a-result .a-result__description {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='zh'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='id'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='tr'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='es'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='gr'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='it'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='nl'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='pl'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='pt'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='sk'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='cz'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='fr'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='de'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='ch'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='ar'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='ua'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description,
html[lang*='ca'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .searchresults.search-results-description--font-italic .o-search-res__results .a-result .a-result__description {
    --font-family: 'Segoe UI Italic'
}

.searchresults.search-results-description--font-arial {
    --search-results-font-family-description: 'Arial'
}

.searchresults.search-results-description--font-brandon-grotesque-medium {
    --search-results-font-family-description: 'BrandonGrotesqueMedium'
}

.searchresults.search-results-description--font-brandon-grotesque-black {
    --search-results-font-family-description: 'BrandonGrotesqueBlack'
}

.searchresults.search-results-description--font-brandon-grotesque-regular {
    --search-results-font-family-description: 'BrandonGrotesqueRegular'
}

.searchresults.search-results-description--font-brandon-grotesque-bold {
    --search-results-font-family-description: 'BrandonGrotesqueBold'
}

.searchresults.search-results-description--font-georgia {
    --search-results-font-family-description: 'Georgia'
}

.searchresults.search-results-description--font-meiryo {
    --search-results-font-family-description: 'Meiryo'
}

.searchresults.search-results-description--font-segoe-ui {
    --search-results-font-family-description: 'Segoe UI'
}

.searchresults.search-results-description--font-times-new-roman {
    --search-results-font-family-description: 'Times New Roman'
}

.searchresults.search-results-description--font-extazy-black {
    --search-results-font-family-description: 'Extazy Black'
}

.searchresults.search-results-description--font-extazy-bold {
    --search-results-font-family-description: 'Extazy Bold'
}

.searchresults.search-results-description--font-extazy-light {
    --search-results-font-family-description: 'Extazy Light'
}

.searchresults.search-results-description--font-extazy-regular {
    --search-results-font-family-description: 'Extazy Regular'
}

.searchresults.search-results-description--font-noto-sans-thin {
    --search-results-font-family-description: 'Noto Sans TC Thin'
}

.searchresults.search-results-description--font-noto-sans-light {
    --search-results-font-family-description: 'Noto Sans TC Light'
}

.searchresults.search-results-description--font-noto-sans-regular {
    --search-results-font-family-description: 'Noto Sans TC Regular'
}

.searchresults.search-results-description--font-noto-sans-medium {
    --search-results-font-family-description: 'Noto Sans TC Medium'
}

.searchresults.search-results-description--font-noto-sans-bold {
    --search-results-font-family-description: 'Noto Sans TC Bold'
}

.searchresults.search-results-description--font-noto-sans-black {
    --search-results-font-family-description: 'Noto Sans TC Black'
}

.searchresults.search-results-description--font-microsoft-ya-hei {
    --search-results-font-family-description: 'Microsoft YaHei'
}

.searchresults.search-results-description--font-calibri {
    --search-results-font-family-description: 'Calibri'
}

.searchresults.search-results-description--font-noto-sans-sc-regular {
    --search-results-font-family-description: 'Noto Sans SC Regular'
}

.searchresults.search-results-description--font-brandon-medium {
    --search-results-font-family-description: 'Brandon Medium'
}

.searchresults.search-results-description--font-brandon-bold {
    --search-results-font-family-description: 'Brandon Bold'
}

.searchresults.search-results-description--font-brandon-regular {
    --search-results-font-family-description: 'Brandon Regular'
}

.searchresults.search-results-description--font-noto-serif-vi-regular {
    --search-results-font-family-description: 'Noto Serif Regular'
}

html[lang*='en'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='en'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='zh'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='zh'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='id'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='id'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='tr'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='tr'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='es'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='es'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='gr'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='gr'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='it'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='it'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='nl'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='nl'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='pl'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='pl'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='pt'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='pt'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='sk'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='sk'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='cz'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='cz'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='fr'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='fr'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='de'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='de'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='ch'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='ch'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='ar'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='ar'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='ua'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='ua'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='ca'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='ca'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title * {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='ja'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title * {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='kr'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='th'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='th'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title *,
html[lang*='tw'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='tw'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title * {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title,
html[lang*='vi'] .searchresults.search-results-header--font-bold .o-search-res__header .o-search-res__header-title * {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='en'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='zh'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='zh'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='id'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='id'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='tr'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='tr'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='es'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='es'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='gr'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='gr'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='it'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='it'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='nl'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='nl'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='pl'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='pl'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='pt'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='pt'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='sk'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='sk'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='cz'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='cz'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='fr'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='fr'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='de'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='de'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='ch'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='ch'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='ar'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='ar'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='ua'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='ua'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='ca'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='ca'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title * {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='kr'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='th'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='th'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title *,
html[lang*='tw'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title,
html[lang*='tw'] .searchresults.search-results-header--font-medium .o-search-res__header .o-search-res__header-title * {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='en'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='zh'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='zh'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='id'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='id'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='tr'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='tr'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='es'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='es'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='gr'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='gr'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='it'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='it'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='nl'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='nl'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='pl'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='pl'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='pt'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='pt'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='sk'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='sk'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='cz'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='cz'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='fr'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='fr'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='de'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='de'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='ch'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='ch'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='ar'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='ar'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='ua'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='ua'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='ca'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='ca'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title * {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='kr'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='th'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='th'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title *,
html[lang*='tw'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title,
html[lang*='tw'] .searchresults.search-results-header--font-black .o-search-res__header .o-search-res__header-title * {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='en'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='zh'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='zh'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='id'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='id'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='tr'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='tr'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='es'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='es'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='gr'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='gr'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='it'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='it'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='nl'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='nl'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='pl'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='pl'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='pt'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='pt'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='sk'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='sk'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='cz'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='cz'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='fr'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='fr'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='de'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='de'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='ch'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='ch'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='ar'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='ar'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='ua'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='ua'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='ca'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='ca'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title * {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='kr'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='th'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='th'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title *,
html[lang*='tw'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title,
html[lang*='tw'] .searchresults.search-results-header--font-regular .o-search-res__header .o-search-res__header-title * {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='en'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='zh'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='zh'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='id'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='id'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='tr'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='tr'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='es'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='es'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='gr'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='gr'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='it'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='it'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='nl'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='nl'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='pl'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='pl'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='pt'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='pt'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='sk'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='sk'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='cz'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='cz'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='fr'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='fr'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='de'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='de'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='ch'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='ch'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='ar'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='ar'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='ua'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='ua'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='ca'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='ca'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title * {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='kr'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='th'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='th'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title *,
html[lang*='tw'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='tw'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title * {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title,
html[lang*='vi'] .searchresults.search-results-header--font-thin .o-search-res__header .o-search-res__header-title * {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='en'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='zh'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='zh'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='id'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='id'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='tr'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='tr'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='es'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='es'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='gr'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='gr'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='it'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='it'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='nl'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='nl'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='pl'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='pl'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='pt'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='pt'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='sk'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='sk'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='cz'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='cz'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='fr'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='fr'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='de'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='de'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='ch'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='ch'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='ar'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='ar'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='ua'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='ua'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title *,
html[lang*='ca'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='ca'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title * {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title,
html[lang*='vi'] .searchresults.search-results-header--font-italic .o-search-res__header .o-search-res__header-title * {
    --font-family: 'Segoe UI Italic'
}

.searchresults.search-results-header--font-arial {
    --search-results-font-family-header: 'Arial'
}

.searchresults.search-results-header--font-brandon-grotesque-medium {
    --search-results-font-family-header: 'BrandonGrotesqueMedium'
}

.searchresults.search-results-header--font-brandon-grotesque-black {
    --search-results-font-family-header: 'BrandonGrotesqueBlack'
}

.searchresults.search-results-header--font-brandon-grotesque-regular {
    --search-results-font-family-header: 'BrandonGrotesqueRegular'
}

.searchresults.search-results-header--font-brandon-grotesque-bold {
    --search-results-font-family-header: 'BrandonGrotesqueBold'
}

.searchresults.search-results-header--font-georgia {
    --search-results-font-family-header: 'Georgia'
}

.searchresults.search-results-header--font-meiryo {
    --search-results-font-family-header: 'Meiryo'
}

.searchresults.search-results-header--font-segoe-ui {
    --search-results-font-family-header: 'Segoe UI'
}

.searchresults.search-results-header--font-times-new-roman {
    --search-results-font-family-header: 'Times New Roman'
}

.searchresults.search-results-header--font-extazy-black {
    --search-results-font-family-header: 'Extazy Black'
}

.searchresults.search-results-header--font-extazy-bold {
    --search-results-font-family-header: 'Extazy Bold'
}

.searchresults.search-results-header--font-extazy-light {
    --search-results-font-family-header: 'Extazy Light'
}

.searchresults.search-results-header--font-extazy-regular {
    --search-results-font-family-header: 'Extazy Regular'
}

.searchresults.search-results-header--font-noto-sans-thin {
    --search-results-font-family-header: 'Noto Sans TC Thin'
}

.searchresults.search-results-header--font-noto-sans-light {
    --search-results-font-family-header: 'Noto Sans TC Light'
}

.searchresults.search-results-header--font-noto-sans-regular {
    --search-results-font-family-header: 'Noto Sans TC Regular'
}

.searchresults.search-results-header--font-noto-sans-medium {
    --search-results-font-family-header: 'Noto Sans TC Medium'
}

.searchresults.search-results-header--font-noto-sans-bold {
    --search-results-font-family-header: 'Noto Sans TC Bold'
}

.searchresults.search-results-header--font-noto-sans-black {
    --search-results-font-family-header: 'Noto Sans TC Black'
}

.searchresults.search-results-header--font-microsoft-ya-hei {
    --search-results-font-family-header: 'Microsoft YaHei'
}

.searchresults.search-results-header--font-calibri {
    --search-results-font-family-header: 'Calibri'
}

.searchresults.search-results-header--font-noto-sans-sc-regular {
    --search-results-font-family-header: 'Noto Sans SC Regular'
}

.searchresults.search-results-header--font-brandon-medium {
    --search-results-font-family-header: 'Brandon Medium'
}

.searchresults.search-results-header--font-brandon-bold {
    --search-results-font-family-header: 'Brandon Bold'
}

.searchresults.search-results-header--font-brandon-regular {
    --search-results-font-family-header: 'Brandon Regular'
}

.searchresults.search-results-header--font-noto-sans-vi-regular {
    --search-results-font-family-header: 'Noto Sans Regular'
}

.megamenu.megamenu-sitemap--links .navbar-collapse .navbar-nav {
    display: block
}

@media only screen and (min-width:992px) {
    .megamenu.megamenu-sitemap--links .navbar-collapse .navbar-nav .m-mega-menu__mobile-item-wrapper {
        padding-top: 0;
        border-right: 0;
        cursor: default
    }

    .megamenu.megamenu-sitemap--links .navbar-collapse .navbar-nav .m-mega-menu__mobile-item-wrapper:hover+.m-mega-menu__mobile-item-wrapper {
        border-top: 5px solid transparent
    }

    .megamenu.megamenu-sitemap--links .navbar-collapse .navbar-nav .m-mega-menu__mobile-item-wrapper:last-child {
        border-bottom: none !important
    }
}

@media only screen and (max-width:991.98px) {
    .megamenu.megamenu-sitemap--links [class^="abt-icon-"] {
        display: none
    }
}

.formcontainer.sign-up-form-style {
    background: #fff;
    padding: 30px 30px 40px !important
}

.formcontainer.sign-up-form-style .o-form-container__error-msg {
    font-family: 'Arial';
    --form-container-error-color: #333;
    padding-top: 8px
}

.formcontainer.sign-up-form-style .form-group .a-input-field--required {
    display: none
}

.formcontainer.sign-up-form-style .form-group .input-group {
    width: 40%
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .formcontainer.sign-up-form-style .form-group .input-group {
        width: 60%
    }
}

@media only screen and (max-width:767.98px) {
    .formcontainer.sign-up-form-style .form-group .input-group {
        width: 100%
    }
}

@media only screen and (max-width:767.98px) {
    .formcontainer.sign-up-form-style {
        padding: 20px 0 30px !important
    }
}

.formcontainer.sign-up-form-style .a-input-field {
    --input-border-color: unset
}

.formcontainer.sign-up-form-style .o-form-container .fields .a-input-field .form-group .input-group input {
    border-radius: unset !important;
    color: #888b8d;
    --input-bg: #f4f4f4;
    padding: 27px 12px !important;
    --input-field-border: 1px solid #f4f4f4;
    --input-field-focus-color: #f4f4f4
}

.formcontainer.sign-up-form-style .o-form-container .form-group .input-group .a-input-control.a-input-control--non-empty {
    border: 1px solid #00b140
}

.formcontainer.sign-up-form-style .form-group.validation-error .input-group .a-input-control,
.formcontainer.sign-up-form-style .form-group.validation-regex .input-group .a-input-control,
.formcontainer.sign-up-form-style .form-group.validation-require .input-group .a-input-control {
    border: 1px solid #e4002b !important
}

.formcontainer.sign-up-form-style .o-form-container__buttons {
    justify-content: flex-start !important
}

.formcontainer.sign-up-form-style .o-form-container__buttons .button {
    margin: 0 !important
}

.formcontainer.sign-up-form-style .o-form-container__buttons .button .btn {
    border: 1px solid #d9d9d6;
    border-radius: 2px;
    background-color: #019cde;
    color: #fff;
    font-weight: normal;
    padding: 12px 20px 8px 20px;
    text-transform: uppercase
}

.formcontainer.sign-up-form-style .o-form-container__buttons .button .btn .abt-icon+span {
    padding-left: 0
}

@media only screen and (max-width:767.98px) {
    .formcontainer.sign-up-form-style .o-form-container__buttons .button .btn {
        padding: 12px 12px 8px 12px;
        width: fit-content
    }
}

.formcontainer.sign-up-form-style .o-form-container__buttons .button .btn:disabled {
    background-color: #d9d9d6
}

.formcontainer.sign-up-form-style .o-form-container__buttons .button .btn:hover {
    box-shadow: none
}

.formcontainer.unsubscribe-form-style .row {
    background-color: #fff
}

.formcontainer.unsubscribe-form-style .text {
    margin-left: 1rem
}

.formcontainer.unsubscribe-form-style .text .cmp-text {
    margin-left: 1rem;
    padding-top: 30px
}

.formcontainer.unsubscribe-form-style .a-input-field {
    width: 40%;
    margin-left: 1rem
}

.formcontainer.unsubscribe-form-style .a-input-field .form-control.a-input-control {
    color: #888b8d;
    background: #f4f4f4;
    border: 0
}

.formcontainer.unsubscribe-form-style .a-input-field .form-group .input-group .a-input-control.a-input-control--non-empty {
    border: 1px solid #00b140
}

.formcontainer.unsubscribe-form-style .a-input-field .form-group.validation-error .input-group .a-input-control,
.formcontainer.unsubscribe-form-style .a-input-field .form-group.validation-regex .input-group .a-input-control,
.formcontainer.unsubscribe-form-style .a-input-field .form-group.validation-require .input-group .a-input-control {
    border: 1px solid #e4002b !important
}

.formcontainer.unsubscribe-form-style .a-input-field .a-input-field--required {
    display: none
}

.formcontainer.unsubscribe-form-style .o-form-container__buttons {
    justify-content: flex-start !important;
    margin-left: 1.5rem;
    padding-bottom: 30px
}

.formcontainer.unsubscribe-form-style .o-form-container__buttons .button .btn {
    border: 1px solid #d9d9d6;
    border-radius: 2px;
    background-color: #019cde;
    color: #fff;
    font-weight: normal;
    padding: 10px 20px 10px 20px;
    text-transform: uppercase
}

.formcontainer.unsubscribe-form-style .o-form-container__buttons .button .btn:disabled {
    background-color: #d9d9d6
}

.formcontainer.unsubscribe-form-style .o-form-container__buttons .button .btn:hover {
    box-shadow: none
}

@media only screen and (max-width:767.98px) {
    .formcontainer.unsubscribe-form-style .row {
        margin-left: 1rem;
        margin-right: 1rem
    }

    .formcontainer.unsubscribe-form-style .row .text {
        margin-right: 2.3rem
    }

    .formcontainer.unsubscribe-form-style .row .text .cmp-text {
        margin-right: 1rem
    }

    .formcontainer.unsubscribe-form-style .row .a-input-field {
        width: 100%
    }

    .formcontainer.unsubscribe-form-style .row .a-input-field .form-control.a-input-control {
        margin-right: 1rem
    }

    .formcontainer.unsubscribe-form-style .row .o-form-container__buttons {
        width: fit-content
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .formcontainer.unsubscribe-form-style .row {
        margin-left: 2rem;
        margin-right: 2rem
    }

    .formcontainer.unsubscribe-form-style .row .a-input-field {
        width: 60%
    }
}

.formcontainer.form-newsletter-thankyou-page .form-container .options {
    background-color: #b5b6bf
}

.formcontainer.form-newsletter-thankyou-page .form-container .checkbox {
    padding-left: 30px;
    padding-top: 10px;
    padding-bottom: 10px
}

.formcontainer.form-newsletter-thankyou-page .form-container .checkbox .a-checkbox-label {
    color: #333;
    font-size: 1.25rem
}

.formcontainer.form-newsletter-thankyou-page .form-container .checkbox .a-checkbox {
    padding-left: 40px
}

@media only screen and (min-width:992px) {
    .formcontainer.form-newsletter-thankyou-page .form-container .checkbox .a-checkbox {
        float: left;
        width: 33.33%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .formcontainer.form-newsletter-thankyou-page .form-container .checkbox .a-checkbox {
        float: left;
        width: 50%
    }
}

.formcontainer.form-newsletter-thankyou-page .form-container .checkbox .a-checkbox .a-checkbox__custom {
    height: 32px;
    width: 32px;
    border-color: #63666a
}

.formcontainer.form-newsletter-thankyou-page .form-container .checkbox .a-checkbox .a-checkbox__custom:hover {
    border-color: #2a2b33
}

.formcontainer.form-newsletter-thankyou-page .form-container .checkbox .a-checkbox .a-checkbox__custom:after {
    top: 4px;
    left: 10px;
    border-width: 0 4px 4px 0;
    height: 17px !important;
    width: 11px !important
}

.formcontainer.form-newsletter-thankyou-page .form-container .checkbox .a-checkbox input:checked~.a-checkbox__custom {
    background-color: #266bff;
    border: 0
}

.formcontainer.form-newsletter-thankyou-page .form-container .checkbox .a-checkbox input:checked~.a-checkbox__custom:hover {
    background-color: #1a4dba
}

.formcontainer.form-newsletter-thankyou-page .form-container .checkbox .a-checkbox .a-checkbox__text * {
    color: #333
}

.formcontainer.form-newsletter-thankyou-page .form-container .checkbox .abt-icon {
    display: none
}

@media only screen and (max-width:767.98px) {
    .formcontainer.form-newsletter-thankyou-page .o-form-container__buttons .button {
        width: 40%
    }
}

.formcontainer.form-newsletter-thankyou-page .o-form-container__buttons .button .btn {
    background-color: #ccc;
    padding-top: 5px;
    padding-bottom: 5px
}

.formcontainer.form-newsletter-thankyou-page .o-form-container__buttons .button .btn:hover {
    background-color: #939799
}

@media only screen and (min-width:768px) {
    .formcontainer.form-newsletter-thankyou-page .o-form-container__error-msg {
        padding-left: 100px;
        margin-top: -30px
    }
}

.formcontainer.form-global--optout {
    margin-bottom: 1rem !important
}

.formcontainer.form-global--optout .container {
    padding-left: 0;
    padding-right: 0
}

.formcontainer.form-global--optout .form-container .fields,
.formcontainer.form-global--optout .form-container .options {
    margin: 0 0 1rem 0 !important
}

.formcontainer.form-global--optout .form-container .a-input-field {
    margin: 0
}

.formcontainer.form-global--optout .form-container .a-input-field .form-group {
    margin: 0
}

.formcontainer.form-global--optout .form-container .a-input-control,
.formcontainer.form-global--optout .form-container .a-dropdown__container .a-dropdown__field .a-dropdown__placeholder,
.formcontainer.form-global--optout .form-container .a-dropdown__container .a-dropdown__field .a-dropdown__menu li span {
    text-transform: uppercase
}

.formcontainer.form-global--optout .form-container .a-input-control::placeholder {
    text-transform: uppercase !important
}

.formcontainer.form-global--optout .form-container .input-group input::-webkit-outer-spin-button,
.formcontainer.form-global--optout .form-container .input-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.formcontainer.form-global--optout .form-container .input-group input[type=number] {
    -moz-appearance: textfield
}

.formcontainer.form-global--optout .form-container .a-input-field[data-required="true"] .form-group:not(.validation-error) .input-group .a-input-control.a-input-control--non-empty,
.formcontainer.form-global--optout .form-container .a-input-field[data-required="true"] .form-group:not(.validation-require) .input-group .a-input-control.a-input-control--non-empty,
.formcontainer.form-global--optout .form-container .a-input-field[data-required="true"] .form-group:not(.validation-regex) .input-group .a-input-control.a-input-control--non-empty {
    background-color: #b8f5b1
}

.formcontainer.form-global--optout .form-container .a-input-field[data-required="true"] .validation-error .input-group .a-input-control,
.formcontainer.form-global--optout .form-container .a-input-field[data-required="true"] .validation-require .input-group .a-input-control,
.formcontainer.form-global--optout .form-container .a-input-field[data-required="true"] .validation-regex .input-group .a-input-control {
    background: url(../../../content/dam/corp/abbott/global/icons/error_red2.png) right 6px center no-repeat #fefd55;
    background-color: #fefd55 !important;
    border-color: #333;
    color: #333
}

.formcontainer.form-global--optout .form-container .fields.text .a-input-field .form-group .input-group {
    --input-field-height: 40px;
    --input-field-border: 1px solid #333;
    --input-field-focus-color: 1px solid #333
}

.formcontainer.form-global--optout .form-container .options .drop-down .a-dropdown__container .a-dropdown__field {
    --dropdown-field-height: 40px;
    --dropdown-active-border-color: 1px solid #333;
    --dropdown-selected-color: #333;
    padding: 10px
}

.formcontainer.form-global--optout .form-container .options .drop-down .a-dropdown__container .a-dropdown__field::after {
    color: #333
}

.formcontainer.form-global--optout .o-form-container__buttons {
    justify-content: flex-start !important;
    flex-direction: row
}

.formcontainer.form-global--optout .o-form-container__buttons .button {
    margin-right: 1.5rem
}

.formcontainer.form-global--optout .o-form-container__buttons .button .btn {
    border: 0;
    border-radius: 0;
    box-shadow: none
}

.formcontainer.form-global--optout .o-form-container__buttons .button .btn:hover {
    background: #fffc57;
    color: #000
}

.formcontainer.form-variation--eudpo .o-form-container__element .form-container>.container {
    padding: 0
}

.formcontainer.form-variation--eudpo .o-form-container__element .form-container .text,
.formcontainer.form-variation--eudpo .o-form-container__element .form-container .fields,
.formcontainer.form-variation--eudpo .o-form-container__element .form-container .options,
.formcontainer.form-variation--eudpo .o-form-container__element .form-container .m-file-uploader {
    margin-bottom: 1rem !important;
    margin-top: 0 !important
}

.formcontainer.form-variation--eudpo .o-form-container__element .form-container .columncontrol {
    margin-bottom: 0 !important;
    margin-top: 0 !important
}

.formcontainer.form-variation--eudpo .o-form-container__element .form-container .a-input-field {
    margin-bottom: 0;
    --input-field-focus-color: unset;
    --input-field-border: 1px solid #333;
    --input-field-placeholder-color: #333
}

.formcontainer.form-variation--eudpo .o-form-container__element .form-container .a-input-control,
.formcontainer.form-variation--eudpo .o-form-container__element .form-container .a-dropdown__container .a-dropdown__field .a-dropdown__placeholder,
.formcontainer.form-variation--eudpo .o-form-container__element .form-container .a-dropdown__container .a-dropdown__field .a-dropdown__menu li span {
    text-transform: uppercase
}

@media only screen and (min-width:768px) {
    .formcontainer.form-variation--eudpo .o-form-container__element .form-container .columncontrol>.container>.row>.columncontrol__column:first-child {
        padding-left: 0
    }

    .formcontainer.form-variation--eudpo .o-form-container__element .form-container .columncontrol>.container>.row>.columncontrol__column:last-child {
        padding-right: 0
    }
}

@media only screen and (max-width:767.98px) {
    .formcontainer.form-variation--eudpo .o-form-container__element .form-container .columncontrol>.container>.row>.columncontrol__column {
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0
    }
}

.formcontainer.form-variation--eudpo .o-form-container__element .form-container .a-input-field .form-group.validation-error .input-group .a-input-control,
.formcontainer.form-variation--eudpo .o-form-container__element .form-container .a-input-field .form-group.validation-regex .input-group .a-input-control,
.formcontainer.form-variation--eudpo .o-form-container__element .form-container .a-input-field .form-group.validation-require .input-group .a-input-control {
    background: url(../../../content/dam/corp/abbott/global/icons/error_red2.png) right 6px center no-repeat #fefd55;
    background-color: #fefd55;
    border-color: #333;
    color: #e91e63
}

@media only screen and (min-width:768px) {
    .formcontainer.form-variation--eudpo .o-form-container__buttons {
        -webkit-box-pack: start !important;
        justify-content: flex-start !important
    }
}

@media only screen and (min-width:768px) {
    .formcontainer.form-variation--eudpo .o-form-container__buttons .button:not(:first-child) {
        margin-left: 1rem
    }
}

@media only screen and (max-width:767.98px) {
    .formcontainer.form-variation--eudpo .o-form-container__buttons .button {
        margin-left: 0;
        margin-right: 0
    }

    .formcontainer.form-variation--eudpo .o-form-container__buttons .button:first-child {
        margin-bottom: 1rem
    }
}

.formcontainer.form-variation--eudpo .o-form-container__buttons .button .btn span {
    font-weight: bold
}

.formcontainer.contact-us-form .o-form-container .container {
    padding: 0
}

.formcontainer.contact-us-form .columncontrol .columncontrol__column .fields,
.formcontainer.contact-us-form .columncontrol .columncontrol__column .options {
    margin: 0 !important
}

.formcontainer.contact-us-form .o-form-container .form-container .fields .a-input-field .form-group .input-group input {
    border: 1px solid #9e9e9e;
    padding: .375rem;
    height: 2.375rem
}

.formcontainer.contact-us-form .o-form-container .fields .a-input-field .form-group .a-input-grp .a-input-control {
    border: 1px solid #9e9e9e
}

.formcontainer.contact-us-form .o-form-container .form-container .fields .a-input-field .form-group .form-label .a-input-field--required {
    display: none
}

.formcontainer.contact-us-form .o-form-container .options .a-dropdown label {
    display: none
}

.formcontainer.contact-us-form .o-form-container .o-form-container__buttons .button .btn {
    margin-right: 1rem;
    background: #2a2b33;
    color: #fff
}

@media only screen and (max-width:767.98px) {
    .formcontainer.contact-us-form .o-form-container .o-form-container__buttons .button {
        margin-right: 1rem !important
    }
}

.formcontainer.contact-us-form .o-form-container .form-container .form-label {
    display: none
}

.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group:not(.validation-require) .a-input-control.input-control--focus,
.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group:not(.validation-error) .a-input-control.input-control--focus,
.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group:not(.validation-regex) .a-input-control.input-control--focus {
    background: 0
}

.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group:not(.validation-require) .a-input-control:not(.input-control--focus).input-control--non-empty,
.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group:not(.validation-error) .a-input-control:not(.input-control--focus).input-control--non-empty,
.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group:not(.validation-regex) .a-input-control:not(.input-control--focus).input-control--non-empty {
    background: #b8f5b1
}

.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group .a-input-field--text-error,
.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group .a-input-field--text-regex {
    color: #e91e63;
    font-family: 'Helvetica Neue'
}

.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group .a-input-field--text-error .abt-icon,
.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group .a-input-field--text-regex .abt-icon {
    display: none
}

.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group.validation-require .a-input-field--text-error {
    display: block
}

.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group.validation-regex .a-input-field--text-regex {
    display: block
}

.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group .input-group .a-input-control.form-input--num-exceed {
    background: #fefd55 !important;
    opacity: .9
}

.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group.validation-regex .input-group .a-input-control.form-input--num-exceed {
    background: #fefd55 !important;
    opacity: .9
}

.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group:not(.validation-error) .input-group .a-input-control.form-input--num-exceed,
.formcontainer.contact-us-form .o-form-container .form-container .a-input-field .form-group:not(.validation-regex) .input-group .a-input-control.form-input--num-exceed {
    background: 0
}

.formcontainer.contact-us-form .o-form-container .form-container .a-input-field[data-required="true"] .form-group.validation-require .a-input-control,
.formcontainer.contact-us-form .o-form-container .form-container .a-input-field[data-required="true"] .form-group.validation-error .a-input-control,
.formcontainer.contact-us-form .o-form-container .form-container .a-input-field[data-required="true"] .form-group.validation-regex .a-input-control {
    background: #ffc7c7 !important
}

.formcontainer.contact-us-form .o-form-container .form-container .a-input-field[data-required="false"] .form-group.validation-require .a-input-control,
.formcontainer.contact-us-form .o-form-container .form-container .a-input-field[data-required="false"] .form-group.validation-error .a-input-control,
.formcontainer.contact-us-form .o-form-container .form-container .a-input-field[data-required="false"] .form-group.validation-regex .a-input-control {
    background: none !important;
    opacity: unset
}

.formcontainer.contact-us-form .o-form-container .form-container .options .drop-down .a-dropdown[data-required="true"].a-dropdown--focus .a-dropdown__field {
    background: #ffc
}

.formcontainer.contact-us-form .o-form-container .form-container .options .drop-down .a-dropdown[data-required="true"].a-dropdown--focus .a-dropdown__field .a-dropdown__menu {
    background: #ffc
}

.formcontainer.contact-us-form .o-form-container .form-container .options .drop-down .a-dropdown[data-required="true"].a-dropdown--valid .a-dropdown__field {
    background: #b8f5b1
}

.formcontainer.contact-us-form .o-form-container .form-container .options .drop-down .a-dropdown[data-required="true"].a-dropdown--valid .a-dropdown__field .a-dropdown__menu {
    background: #b8f5b1
}

.formcontainer.contact-us-form .o-form-container .form-container .options .drop-down .a-dropdown[data-required="true"].a-dropdown--error .a-dropdown__field {
    margin-bottom: 0;
    background: #ffc7c7 !important
}

.formcontainer.contact-us-form .o-form-container .form-container .options .drop-down .a-dropdown[data-required="true"].a-dropdown--error .a-dropdown__field .a-dropdown__menu {
    background: #ffc7c7 !important
}

.formcontainer.contact-us-form .o-form-container .form-container .options .drop-down .a-dropdown[data-required="true"].a-dropdown--error .a-input-field--text-require {
    display: block;
    color: #e91e63;
    font-family: 'Helvetica Neue';
    font-size: .75rem
}

.formcontainer.contact-us-form .o-form-container .form-container .options .drop-down .a-dropdown .a-dropdown__field {
    --dropdown-field-height: 40px;
    padding: 10px;
    border: 1px solid #9e9e9e;
    margin-bottom: 1rem
}

.formcontainer.contact-us-form .o-form-container .form-container .options .drop-down .a-dropdown .a-dropdown__field::after {
    color: #333
}

.formcontainer.contact-us-form .o-form-container .form-container .options .drop-down .a-dropdown .a-dropdown__field .a-dropdown-selected {
    color: #333
}

.formcontainer.contact-us-form .o-form-container .o-form-container__buttons {
    float: left;
    flex-direction: row-reverse
}

.formcontainer.contact-us--var-2 .o-form-container__element .form-container>.container {
    padding: 0
}

.formcontainer.contact-us--var-2 .o-form-container__element .form-container .text,
.formcontainer.contact-us--var-2 .o-form-container__element .form-container .fields,
.formcontainer.contact-us--var-2 .o-form-container__element .form-container .options,
.formcontainer.contact-us--var-2 .o-form-container__element .form-container .m-file-uploader {
    margin-bottom: 1rem !important;
    margin-top: 0 !important
}

.formcontainer.contact-us--var-2 .o-form-container__element .form-container .columncontrol {
    margin-bottom: 0 !important;
    margin-top: 0 !important
}

.formcontainer.contact-us--var-2 .o-form-container__element .form-container .a-input-field {
    margin-bottom: 0;
    --input-field-focus-color: unset;
    --input-field-border: 1px solid #333;
    --input-field-placeholder-color: #333
}

.formcontainer.contact-us--var-2 .o-form-container__element .form-container .a-input-control,
.formcontainer.contact-us--var-2 .o-form-container__element .form-container .a-dropdown__container .a-dropdown__field .a-dropdown__placeholder,
.formcontainer.contact-us--var-2 .o-form-container__element .form-container .a-dropdown__container .a-dropdown__field .a-dropdown__menu li span {
    text-transform: uppercase
}

@media only screen and (min-width:768px) {
    .formcontainer.contact-us--var-2 .o-form-container__element .form-container .columncontrol>.container>.row>.columncontrol__column:first-child {
        padding-left: 0
    }

    .formcontainer.contact-us--var-2 .o-form-container__element .form-container .columncontrol>.container>.row>.columncontrol__column:last-child {
        padding-right: 0
    }
}

@media only screen and (max-width:767.98px) {
    .formcontainer.contact-us--var-2 .o-form-container__element .form-container .columncontrol>.container>.row>.columncontrol__column {
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0
    }
}

.formcontainer.contact-us--var-2 .o-form-container__element .form-container .a-input-field .form-group.validation-error .input-group .a-input-control,
.formcontainer.contact-us--var-2 .o-form-container__element .form-container .a-input-field .form-group.validation-regex .input-group .a-input-control,
.formcontainer.contact-us--var-2 .o-form-container__element .form-container .a-input-field .form-group.validation-require .input-group .a-input-control {
    background: url(../../../content/dam/corp/abbott/global/icons/error_red2.png) right 6px center no-repeat #fefd55;
    background-color: #fefd55;
    border-color: #333;
    color: #e91e63
}

@media only screen and (min-width:768px) {
    .formcontainer.contact-us--var-2 .o-form-container__buttons {
        -webkit-box-pack: start !important;
        justify-content: flex-start !important
    }
}

@media only screen and (min-width:768px) {
    .formcontainer.contact-us--var-2 .o-form-container__buttons .button:not(:first-child) {
        margin-left: 1rem
    }
}

@media only screen and (max-width:767.98px) {
    .formcontainer.contact-us--var-2 .o-form-container__buttons .button {
        margin-left: 0;
        margin-right: 0
    }

    .formcontainer.contact-us--var-2 .o-form-container__buttons .button:first-child {
        margin-bottom: 1rem
    }
}

.formcontainer.contact-us--var-2 .o-form-container__buttons .button .btn span {
    font-weight: bold
}

.formcontainer.contact-us--var-2 .form-container .a-input-field[data-required="true"] .form-group:not(.validation-error, .validation-require, .validation-regex) .input-group .a-input-control.a-input-control--non-empty {
    background-color: #b8f5b1
}

.formcontainer.newslettersignup-form .row {
    background: #fff
}

.formcontainer.newslettersignup-form .o-form-container__outer {
    padding-bottom: 1rem
}

.formcontainer.newslettersignup-form .o-form-container__outer>.container {
    padding-left: 0;
    padding-right: 0
}

.formcontainer.newslettersignup-form .o-form-container__element .cmp-container {
    padding-left: 0;
    padding-right: 0
}

@media only screen and (max-width:767.98px) {
    .formcontainer.newslettersignup-form .o-form-container__element .form-container>.container {
        padding-bottom: 1rem
    }
}

.formcontainer.newslettersignup-form .o-form-container__element .o-form-container__buttons .button {
    margin-left: 0;
    margin-right: .9375rem
}

.formcontainer.newslettersignup-form .text,
.formcontainer.newslettersignup-form .options,
.formcontainer.newslettersignup-form fieldset {
    margin-bottom: .5rem !important;
    margin-top: .5rem !important
}

.formcontainer.newslettersignup-form .hidden,
.formcontainer.newslettersignup-form .columncontrol,
.formcontainer.newslettersignup-form .columncontrol .columncontrol__column {
    margin-bottom: 0 !important;
    margin-top: 0 !important
}

.formcontainer.newslettersignup-form .form-group .input-group .a-input-control {
    background: #f4f4f4;
    border: 1px solid #f4f4f4;
    color: #888b8d
}

.formcontainer.newslettersignup-form .form-group .input-group .a-input-control.a-input-control--non-empty {
    border: 1px solid #00b140
}

.formcontainer.newslettersignup-form .form-group.validation-error .input-group .a-input-control,
.formcontainer.newslettersignup-form .form-group.validation-regex .input-group .a-input-control,
.formcontainer.newslettersignup-form .form-group.validation-require .input-group .a-input-control {
    border: 1px solid #e4002b !important
}

.formcontainer.newslettersignup-form .checkbox {
    margin-top: 2.5rem
}

.formcontainer.newslettersignup-form .checkbox .a-checkbox {
    padding-left: 0;
    padding-right: 8px;
    margin-bottom: 4px
}

@media only screen and (max-width:767.98px) {
    .formcontainer.newslettersignup-form .checkbox .a-checkbox {
        margin-bottom: 0
    }
}

.formcontainer.newslettersignup-form .checkbox .a-checkbox .a-checkbox__label {
    border: 1px solid #019cde;
    padding: 6px 10px 6px 10px
}

.formcontainer.newslettersignup-form .checkbox .a-checkbox .a-checkbox__label .a-checkbox__text {
    color: #63666a
}

.formcontainer.newslettersignup-form .checkbox .a-checkbox .a-checkbox__label.a-checkbox--active {
    background: #019cde
}

.formcontainer.newslettersignup-form .checkbox .a-checkbox .a-checkbox__label.a-checkbox--active .a-checkbox__text {
    color: #fff
}

.formcontainer.newslettersignup-form .checkbox .a-checkbox .a-checkbox__label .a-checkbox__custom {
    display: none
}

.formcontainer.newslettersignup-form .o-form-container__buttons {
    justify-content: flex-start !important
}

.formcontainer.newslettersignup-form .button .btn {
    border: 1px solid #d9d9d6;
    border-radius: 2px;
    background-color: #019cde;
    color: #fff;
    font-weight: normal;
    padding: 10px 20px 10px 20px;
    text-transform: uppercase
}

@media only screen and (max-width:767.98px) {
    .formcontainer.newslettersignup-form .button .btn {
        width: fit-content
    }
}

.formcontainer.newslettersignup-form .button .btn:disabled {
    background-color: #d9d9d6
}

.formcontainer.newslettersignup-form .button .btn:hover {
    box-shadow: none
}

.formcontainer.newslettersignup-form .o-form-container__success-msg {
    display: none
}

.formcontainer.form-container-remove--left-spacing .o-form-container__wrapper>.o-form-container__outer>.container {
    padding-left: 0
}

.formcontainer.form-container-remove--right-spacing .o-form-container__wrapper>.o-form-container__outer>.container {
    padding-right: 0
}

@media only screen and (max-width:767.98px) {
    .formcontainer.form-container-mob-remove--left-spacing .o-form-container__wrapper>.o-form-container__outer>.container {
        padding-left: 0
    }
}

@media only screen and (max-width:767.98px) {
    .formcontainer.form-container--mob-remove--right-spacing .o-form-container__wrapper>.o-form-container__outer>.container {
        padding-left: 0
    }
}

.formcontainer .case,
.formcontainer .case * {
    text-transform: none !important
}

.formcontainer #like-this-form {
    display: none
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content {
    width: 100%
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor {
    text-decoration: none;
    color: #000
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment {
    border-bottom: 1px solid #d9d9d6
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment:hover {
    background-color: #e1e1e1
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__title {
    display: none
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__elements {
    margin-left: 10px;
    padding-top: 15px;
    margin-right: 10px
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'BrandonGrotesqueBold';
    color: #009cde;
    margin-bottom: 15px
}

html[lang*='cn'] .pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*='cn'] .pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading *,
html[lang*='vi'] .pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*='vi'] .pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading *,
html[lang*='ja'] .pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*='ja'] .pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Brandon Bold'
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value,
.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value {
    margin: 0
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value p,
.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value p {
    margin-bottom: 0
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Georgia';
    color: #2a2b33
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'BrandonGrotesqueBold';
    color: #939799;
    margin-bottom: 15px
}

html[lang*='cn'] .pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*='vi'] .pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*='ja'] .pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Brandon Bold'
}

.pagination.contentfragmentlist-press-release .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element-title {
    display: none
}

@media only screen and (max-width:767.98px) {
    .pagination.contentfragmentlist-press-release .m-pagination-static__content {
        width: 100%
    }

    .pagination.contentfragmentlist-press-release .m-pagination-static__content .cmp-contentfragment__elements {
        margin: 0
    }
}

.pagination.contentfragmentlist-press-release .pagination {
    display: none
}

.pagination.contentfragmentlist-press-release .m-pagination-static__links {
    margin-top: 2rem
}

@media only screen and (min-width:768px) {
    .pagination.categoryfilter .m-pagination-static__content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.875em 15px;
        margin-bottom: 3.125em;
        padding-left: 10px;
        padding-right: 10px
    }
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor {
    text-decoration: none;
    color: #000
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    position: absolute;
    top: 8%;
    left: 5%;
    color: #019cde;
    font-family: 'BrandonGrotesqueBold';
    opacity: 0;
    text-transform: uppercase
}

html[lang*='cn'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value,
html[lang*='vi'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value,
html[lang*='ja'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    font-family: 'Brandon Bold'
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    filter: brightness(50%)
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    opacity: 1;
    z-index: 100
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__title {
    display: none
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__elements {
    margin-left: 10px;
    margin-top: 15px;
    margin-right: 10px;
    position: relative
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage {
    margin: -10px !important
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value {
    margin-bottom: 25px
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    width: 100%;
    height: 145px
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    text-transform: uppercase;
    letter-spacing: 1.504px;
    font-weight: 700;
    font-family: 'BrandonGrotesqueBold'
}

html[lang*='cn'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*='cn'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading *,
html[lang*='vi'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*='vi'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading *,
html[lang*='ja'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*='ja'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Brandon Bold'
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value {
    margin: 0
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value p,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value p {
    margin-bottom: 0
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-gray,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-gray {
    color: #63666a
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-light-blue,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-light-blue {
    color: #5bc2e7
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-blue,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-blue {
    color: #004f71
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-red,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-red {
    color: #e4002b
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-gold,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-gold {
    color: #eeb33b
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-mint,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-mint {
    color: #64ccc9
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-purple,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-purple {
    color: #470a68
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-magenta,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-magenta {
    color: #aa0061
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-green,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-green {
    color: #00b140
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'BrandonGrotesqueBold'
}

html[lang*='cn'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*='cn'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading *,
html[lang*='vi'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*='vi'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading *,
html[lang*='ja'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*='ja'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    font-family: 'Brandon Bold'
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * .cmp-contentfragment__element-value {
    margin: 0
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value p,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * .cmp-contentfragment__element-value p {
    margin: 0
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Georgia'
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'BrandonGrotesqueBold';
    color: #939799
}

html[lang*='cn'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*='vi'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*='ja'] .pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Brandon Bold'
}

.pagination.categoryfilter .m-pagination-static__content .article-ahnchor .cmp-contentfragment__element-title {
    display: none
}

@media only screen and (max-width:767.98px) {
    .pagination.categoryfilter .m-pagination-static__content {
        width: 100%;
        padding: 0
    }

    .pagination.categoryfilter .m-pagination-static__content .cmp-contentfragment__elements {
        margin: 0
    }
}

@media only screen and (max-width:767.98px) {
    .pagination.pagination--gray-links .m-pagination-static .m-pagination-static__links {
        display: flex;
        justify-content: center;
        margin-top: 3rem
    }
}

.pagination.pagination--gray-links .m-pagination-static .m-pagination-static__links ul {
    border: 0
}

.pagination.pagination--gray-links .m-pagination-static .m-pagination-static__links ul li {
    border: 1px solid #ddd
}

.pagination.pagination--gray-links .m-pagination-static .m-pagination-static__links ul li a {
    background: 0;
    border: 0;
    color: #3d566e;
    font-weight: normal
}

@media only screen and (max-width:767.98px) {
    .pagination.pagination--gray-links .m-pagination-static .m-pagination-static__links ul li a {
        padding: 8px
    }
}

.pagination.pagination--gray-links .m-pagination-static .m-pagination-static__links ul li:hover {
    background: #ededed
}

.pagination.pagination--gray-links .m-pagination-static .m-pagination-static__links ul li.active {
    background: #232832
}

.pagination.pagination--gray-links .m-pagination-static .m-pagination-static__links ul li.active a {
    color: #fff
}

.investor-calendar-container {
    position: relative
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content {
    padding: 3rem 0
}

@media only screen and (min-width:1441px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content {
        position: relative;
        z-index: 1
    }
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper {
    background: #fff;
    margin: auto;
    padding: 0;
    width: 75%
}

@media only screen and (max-width:991.98px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper {
        width: 100%
    }
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #ccc
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__date {
    text-align: center;
    text-transform: uppercase;
    width: 15%
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__date {
        width: 30%
    }
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__date .investor-release--content-item__month {
    border-bottom: 4px solid #333;
    margin: 0 1.5rem
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__date .investor-release--content-item__month {
        border-bottom: 2px solid #333;
        margin: 0 1rem
    }
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__date .investor-release--content-item__month p,
.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__date .investor-release--content-item__year p {
    padding: .5rem 0;
    margin-bottom: 0
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__info {
        width: 70%
    }
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__description p {
    font-weight: bold;
    text-transform: uppercase
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__description p {
        margin-bottom: 0
    }
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__btn-wrapper {
    display: flex
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__btn-wrapper {
        display: block
    }
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__btn-wrapper .investor-release--content-item__btn {
    margin-right: 1rem
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__btn-wrapper .investor-release--content-item__btn {
        margin-top: 1rem;
        display: inline-block
    }
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__btn-wrapper .investor-release--content-item__btn a {
    background: #019cde;
    color: #fff;
    display: inline-block;
    padding: .3rem .65rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase
}

@media only screen and (min-width:992px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__btn-wrapper .investor-release--content-item__btn a {
        width: 160px
    }
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__btn-wrapper .investor-release--content-item__btn a {
        padding: .2rem .4rem
    }
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__btn-wrapper .investor-release--content-item__btn a:hover {
    background: #002a3a
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item:last-child {
    border-bottom: 0;
    display: flex
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item:last-child .investor-release--content-item__date--empty .investor-release--content-item__month {
    border-bottom: 0
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item:last-child .investor-release--content-item__info {
    display: flex;
    justify-content: space-between;
    width: 100%
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item:last-child .investor-release--content-item__info {
        width: 70%
    }
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item:last-child .investor-release--content-item__info .investor-release--content-item__btn-wrapper {
    margin-right: 1.5rem
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item:last-child .investor-release--content-item__info .investor-release--content-item__description {
    margin-left: 1rem
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item:last-child .investor-release--content-item__info .investor-release--content-item__description {
        margin-left: 0;
        margin-right: 1rem
    }
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item.investor-release--content-item--bg-gray {
    background: #ccc
}

.investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__media .investor-calendar-container__image .cmp-image {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1
}

@media only screen and (min-width:1441px) {
    .investor-calendar-container .investor-calendar-variation--1 .investor-calendar-container__media .investor-calendar-container__image .cmp-image {
        z-index: 0
    }
}

.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-calendar--header {
    text-transform: uppercase
}

.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link {
    display: flex;
    color: #2a2b33;
    text-decoration: none;
    padding: .25rem 0;
    border-bottom: 1px solid #ccc
}

.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link .investor-release--content-item__date {
    text-align: center;
    text-transform: uppercase;
    width: 15%
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link .investor-release--content-item__date {
        width: 26%
    }
}

.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link .investor-release--content-item__date .investor-release--content-item__month {
    border-bottom: 2px solid #000;
    margin: 0 1.5rem
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link .investor-release--content-item__date .investor-release--content-item__month {
        margin: 0 1rem
    }
}

.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link .investor-release--content-item__date .investor-release--content-item__month p,
.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link .investor-release--content-item__date .investor-release--content-item__year p {
    padding: .5rem 0;
    margin-bottom: 0
}

.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link .investor-release--content-item__description {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    width: 85%
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link .investor-release--content-item__description {
        padding-top: 0;
        width: 74%;
        align-items: center
    }
}

.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link .investor-release--content-item__description .investor-release--content-item__icon .abt-icon {
    font-weight: bold
}

.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link:hover {
    background: #f4f4f4
}

.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper .investor-release--content-item .investor-release--content-item__link:hover .investor-release--content-item__icon .abt-icon {
    color: #002a3a
}

.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .investor-release--content-wrapper:nth-last-of-type(2) .investor-release--content-item__link {
    border-bottom: 0
}

.investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .button {
    margin-top: 1rem
}

@media only screen and (min-width:768px) {
    .investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .button {
        justify-content: flex-end
    }
}

@media only screen and (max-width:767.98px) {
    .investor-calendar-container .investor-calendar-variation--2 .investor-calendar-container__content .button {
        width: fit-content
    }
}

.featuredmediacontainer.investor-calender-variation .investor-calendar-container__content .investor-release--content-item .investor-release--content-item__date p {
    font-family: 'BrandonGrotesqueBlack'
}

@media only screen and (min-width:992px) {
    .featuredmediacontainer.investor-calender-variation .investor-calendar-container__content .investor-release--content-item .investor-release--content-item__date p {
        font-size: 1.25rem;
        padding: .3rem 0 0 !important
    }
}

.featuredmediacontainer.investor-calender-variation .investor-calendar-container__content .investor-release--content-item .investor-release--content-item__date .investor-release--content-item__month {
    border-bottom: 2px solid #333
}

@media only screen and (min-width:992px) {
    .featuredmediacontainer.investor-calender-variation .investor-calendar-container__content .investor-release--content-item .investor-release--content-item__info .investor-release--content-item__description p {
        font-size: .813rem
    }
}

@media only screen and (min-width:992px) {
    .featuredmediacontainer.investor-calender-variation .investor-calendar-container__content .investor-release--content-item .investor-release--content-item__info .investor-release--content-item__btn-wrapper .investor-release--content-item__btn a {
        font-size: .875rem;
        padding-top: 8px
    }
}

@media only screen and (max-width:767.98px) {
    .featuredmediacontainer.investor-calender-variation .investor-calendar-container__content .investor-release--content-item.investor-release--content-item--bg-gray .investor-release--content-item__date--empty {
        width: 5%
    }
}

@media only screen and (max-width:767.98px) {
    .featuredmediacontainer.investor-calender-variation .investor-calendar-container__content .investor-release--content-item.investor-release--content-item--bg-gray .investor-release--content-item__info {
        width: 95% !important
    }
}

@media only screen and (min-width:992px) {
    .featuredmediacontainer.investor-calender-variation .investor-calendar-container__content .investor-release--content-item.investor-release--content-item--bg-gray .investor-release--content-item__info .investor-release--content-item__description p {
        font-size: 1.25rem;
        margin-bottom: 0;
        margin-top: 8px;
        color: #000;
        margin-left: 10px
    }
}

@media only screen and (max-width:767.98px) {
    .featuredmediacontainer.investor-calender-variation .investor-calendar-container__content .investor-release--content-item.investor-release--content-item--bg-gray .investor-release--content-item__info .investor-release--content-item__btn-wrapper {
        width: 35%
    }
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor {
    text-decoration: none;
    color: #000;
    font-weight: normal
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    position: absolute;
    top: 8%;
    left: 5%;
    color: #019cde;
    opacity: 0;
    text-transform: uppercase
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value *,
html[lang*="ja"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    filter: brightness(50%)
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor:hover .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
    opacity: 1;
    z-index: 98
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__title {
    display: none
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__elements {
    margin-left: 10px;
    margin-top: 15px;
    margin-right: 10px;
    position: relative
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage {
    margin: -10px !important
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value {
    margin-bottom: 25px
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
    width: 100%;
    height: 145px
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    text-transform: uppercase;
    letter-spacing: 1.504px;
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="cn"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading *,
html[lang*="ja"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="ja"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading,
html[lang*="vi"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value {
    margin: 0
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value p,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value p {
    margin-bottom: 0
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-gray,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-gray {
    color: #63666a
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-light-blue,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-light-blue {
    color: #5bc2e7
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-blue,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-blue {
    color: #004f71
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-red,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-red {
    color: #e4002b
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-red,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-red {
    color: #f5889d
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-gold,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-gold {
    color: #eeb33b
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-mint,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-mint {
    color: #64ccc9
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-purple,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-purple {
    color: #470a68
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-magenta,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-magenta {
    color: #aa0061
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading .cmp-contentfragment__element-value.color-medium-green,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--heading * .cmp-contentfragment__element-value.color-medium-green {
    color: #00b140
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    text-transform: uppercase;
    font-family: 'BrandonGrotesqueBold'
}

html[lang*="cn"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="cn"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading *,
html[lang*="ja"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="ja"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading,
html[lang*="vi"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * .cmp-contentfragment__element-value {
    margin: 0
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading .cmp-contentfragment__element-value p,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--subheading * .cmp-contentfragment__element-value p {
    margin: 0
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Georgia'
}

html[lang*="vi"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription,
html[lang*="vi"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--detaildescription * {
    font-family: 'Noto Serif Regular'
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--contentdetailsreference {
    display: none
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'BrandonGrotesqueBold';
    color: #939799
}

html[lang*="cn"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate,
html[lang*="ja"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Brandon Bold'
}

html[lang*="vi"] .contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
    font-family: 'Noto Sans Regular';
    font-weight: bold
}

.contentfragment.cf-variation--categoryfilter .article-ahnchor .cmp-contentfragment__element-title {
    display: none
}

@media only screen and (max-width:767.98px) {
    .contentfragment.cf-variation--categoryfilter .cmp-contentfragment__elements {
        margin: 0
    }
}

@media only screen and (max-width:767.98px) {
    .contentfragment.cf-variation--categoryfilter.cf-stories-mob--variation {
        border-bottom: 1px solid #888b8d;
        margin-top: 6px !important;
        padding: 0 5px 0 5px
    }

    .contentfragment.cf-variation--categoryfilter.cf-stories-mob--variation .article-ahnchor {
        display: inline-block;
        width: 100%
    }

    .contentfragment.cf-variation--categoryfilter.cf-stories-mob--variation .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage {
        margin: 0 !important
    }

    .contentfragment.cf-variation--categoryfilter.cf-stories-mob--variation .article-ahnchor .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value {
        margin: 0 !important
    }

    .contentfragment.cf-variation--categoryfilter.cf-stories-mob--variation .cmp-contentfragment__element.cmp-contentfragment__element--subheading {
        padding-right: 8px;
        width: 70%
    }

    .contentfragment.cf-variation--categoryfilter.cf-stories-mob--variation .cmp-contentfragment__elements {
        display: flex;
        flex-direction: row-reverse;
        margin: 0 !important
    }

    .contentfragment.cf-variation--categoryfilter.cf-stories-mob--variation .cmp-contentfragment__elements .cmp-contentfragment__element--heading {
        display: none
    }

    .contentfragment.cf-variation--categoryfilter.cf-stories-mob--variation .cmp-contentfragment__elements .cmp-contentfragment__element--detaildescription {
        display: none
    }

    .contentfragment.cf-variation--categoryfilter.cf-stories-mob--variation .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--publishdate {
        display: none
    }

    .contentfragment.cf-variation--categoryfilter.cf-stories-mob--variation .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--mainimage .cmp-contentfragment__element-value img {
        width: 180px !important;
        height: auto !important
    }

    .contentfragment.cf-variation--categoryfilter.cf-stories-mob--variation .cmp-contentfragment__elements .cmp-contentfragment__element.cmp-contentfragment__element--duration .cmp-contentfragment__element-value {
        position: absolute;
        background-color: rgba(0, 0, 0, 0.6);
        height: 100%;
        left: 0;
        padding: 10px 10px 0 10px;
        top: -2px;
        width: 100%
    }
}

.languagenavigation.abt-flag--globe .flag-icon {
    background: url(../../../content/dam/corp/abbott/ar-arabia/redesign/globe.png) no-repeat center center !important
}

.languagenavigation.flag-bg--white .flag-icon {
    background-color: #fff;
    width: 28px
}

.video.video-align--left .m-video {
    margin-left: 0
}

.video.video-align--right .m-video {
    margin-right: 0
}

.video.video-variation--audio {
    padding-bottom: 5.5rem !important;
    padding-top: 0
}

.video.video-variation--audio .m-video {
    height: 45px;
    width: 290px
}

.video.video-variation--audio .m-video .a-video .a-video__player {
    padding-bottom: 45px
}

.video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video {
    padding-bottom: 12%;
    max-width: 290px
}

@media only screen and (max-width:991.98px) {
    .video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video {
        padding-bottom: 30%;
        max-width: 90%
    }
}

.video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video .vjs-poster {
    display: inline-block;
    background-image: url("../../../content/dam/corp/abbott/en-us/corpnewsroom/play-button-icon/audio-thumbnail.png");
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain
}

.video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video .vjs-poster img {
    display: none
}

.video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video .vjs-big-play-button {
    display: none
}

.video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video .vjs-control-bar {
    z-index: 1
}

.video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video .vjs-control-bar .vjs-progress-control,
.video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video .vjs-control-bar .vjs-current-time,
.video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video .vjs-control-bar .vjs-time-divider,
.video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video .vjs-control-bar .vjs-duration,
.video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video .vjs-control-bar .vjs-fullscreen-control {
    display: block
}

.video.video-variation--audio .m-video .a-video .a-video__player .brightCove-video-wrapper .brightCove-video .vjs-control-bar .vjs-volume-panel .vjs-volume-control {
    display: block
}

.video.video-variation--audio .m-video .a-video .a-video__player .limeLight-video-wrapper {
    padding-bottom: 0
}

.video.video-variation--audio .m-video .a-video .a-video__player .limeLight-video-wrapper .limelight-player {
    padding-bottom: 100px
}

.video.video-variation--audio .m-video .a-video .a-video__player .limeLight-video .limelight-player {
    height: 45px !important;
    width: 290px !important;
    float: left
}

.video.video-variation--audio .m-video .a-video .a-video__player .limeLight-video .limelight-player .video-js.vjs-limelight {
    padding-bottom: 30%
}

.video.video-variation--audio .m-video .a-video .a-video__player .limeLight-video .limelight-player .vjs-limelight-big-play {
    font-size: 20em !important;
    display: none !important;
    color: transparent !important;
    text-shadow: none
}

.video.video-popup__no-border {
    padding-top: 0 !important
}

.video.video-popup__no-border .m-video .a-video__player .play-icon .btn {
    color: transparent;
    background: url("../../../content/dam/corp/abbott/en-us/corpnewsroom/play-button-icon/play-btn.png");
    background-size: contain
}

.video .m-video .global-video-embedDam .play-icon {
    position: absolute;
    z-index: 1;
    width: 100%
}

.video .m-video .global-video-embedDam .play-icon .btn {
    color: transparent;
    background: url("../../../content/dam/corp/abbott/en-us/corpnewsroom/play-button-icon/play-btn.png");
    background-size: contain
}

.video .m-video .global-video .play-icon {
    position: absolute;
    z-index: 100
}

.video .m-video .global-video .limeLight-video .vjs-limelight-viewport .vjs-limelight-big-play {
    color: transparent;
    background: url("../../../content/dam/corp/abbott/en-us/corpnewsroom/play-button-icon/play-btn.png");
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0 20px;
    cursor: pointer;
    text-align: center;
    width: 64px;
    height: 64px;
    border-radius: 30px
}

.video .m-video .global-video .limeLight-video .vjs-limelight-viewport .vjs-limelight-big-play::before {
    display: none;
    z-index: 0
}

.video.article-page-banner-variation .a-video .a-video__player {
    padding-bottom: 45%
}

.video .vjs-poster {
    z-index: 1
}

.video .vjs-big-play-button {
    color: transparent;
    background: url("../../../content/dam/corp/abbott/en-us/corpnewsroom/play-button-icon/play-btn.png");
    background-size: contain;
    z-index: 1
}

.columncontrol .video.container {
    padding-left: 0
}

.link.link-variation--edge-design {
    display: block;
    margin-bottom: 0;
    margin-top: 0
}

.link.link-variation--edge-design:hover .a-link__text,
.link.link-variation--edge-design.focus .a-link__text,
.link.link-variation--edge-design:hover .a-link__text .a-link__inner-text,
.link.link-variation--edge-design.focus .a-link__text .a-link__inner-text {
    color: #009cde
}

.link.link-variation--edge-design.active {
    background-color: #009cde
}

.link.link-variation--edge-design.active,
.link.link-variation--edge-design.active .a-link__inner-text {
    color: #fff !important
}

.link.link-variation--edge-design .a-link,
.link.link-variation--edge-design .a-link__text {
    display: block
}

.link.link-variation--edge-design .a-link__text,
.link.link-variation--edge-design .a-link__text .a-link__inner-text {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 400;
    color: #63666a;
    line-height: 1.325;
    padding: 5px .625em 0
}

.link.link-variation--edge-design .a-link__text .a-link__inner-text {
    padding: 0
}

@media only screen and (max-width:767.98px) {
    .o-hero-carousel.hero-carousel_variation--mini-hero-carousel .cmp-carousel .slick-arrow {
        top: 30%
    }
}

.o-hero-carousel.hero-carousel_variation--mini-hero-carousel .o-info-section {
    padding: 0;
    --info-section-btn-padding-bottom: 0;
    --info-section-height: auto
}

.o-hero-carousel.hero-carousel_variation--mini-hero-carousel .o-info-section .o-info-section__container {
    padding: 0;
    margin: 0;
    max-width: 100%;
    --info-section-container-height: auto
}

@media only screen and (min-width:768px) {
    .o-hero-carousel.hero-carousel_variation--mini-hero-carousel .o-info-section .o-info-section__container .row {
        flex-direction: row-reverse
    }
}

@media only screen and (max-width:767.98px) {
    .o-hero-carousel.hero-carousel_variation--mini-hero-carousel .o-info-section .o-info-section__container .row {
        flex-direction: column-reverse
    }
}

.o-hero-carousel.hero-carousel_variation--mini-hero-carousel .o-info-section .o-info-section__container .row .o-info-section__heading {
    display: none
}

@media only screen and (min-width:768px) {
    .o-hero-carousel.hero-carousel_variation--mini-hero-carousel .o-info-section .o-info-section__container .row .o-info-section__column:nth-of-type(2) {
        padding-top: 5.14%;
        padding-right: 50px;
        padding-left: 40px
    }
}

@media only screen and (max-width:767.98px) {
    .o-hero-carousel.hero-carousel_variation--mini-hero-carousel .o-info-section .o-info-section__container .row .o-info-section__column:nth-of-type(2) {
        padding-top: 20px;
        padding-bottom: 30px
    }
}

.o-hero-carousel.hero-carousel_variation--mini-hero-carousel .o-info-section .o-info-section__container .row .o-info-section__column:nth-of-type(2) .o-info-section__title {
    --info-section-title-margin-bottom: 0
}

@media only screen and (max-width:767.98px) {
    .o-hero-carousel.hero-carousel_variation--mini-hero-carousel .o-info-section .o-info-section__container .row .o-info-section__column:nth-of-type(3) {
        padding: 0
    }
}

.o-hero-carousel.hero-carousel_variation--mini-hero-carousel .o-info-section .o-info-section__container .row .o-info-section__column:nth-of-type(3) .o-info-section__sub-title {
    --info-section-sub-title-padding: 0
}

.o-hero-carousel.hero-carousel_variation--mini-hero-carousel .o-info-section .o-info-section__container .row .o-info-section__column:nth-of-type(3) .o-info-section__sub-title p {
    margin-bottom: 0
}

.o-hero-carousel .slick-slide {
    max-height: 536px
}

@media only screen and (min-width:768px) {
    .o-hero-carousel #responsibility-carousel .slick-slider .slick-dots {
        bottom: 120px
    }
}

.o-hero-carousel .cmp-carousel__item.cmp-carousel__item--active {
    display: block
}

.o-hero-carousel .cmp-carousel__item {
    display: none
}

.o-search-results-filter .search-filter-static-article .article-heading {
    display: none;
    text-align: center;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 1.375em;
    padding: 6px 0 2px;
    color: #fff
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-search-results-filter .search-filter-static-article .article-heading {
        font-size: .75rem
    }
}

.o-search-results-filter .search-filter-static-article .article-heading * {
    font-family: 'BrandonGrotesqueBold'
}

.o-search-results-filter .search-filter-static-article .article-heading.article-heading-bg-color-red {
    background-color: #e4002b
}

.o-search-results-filter .search-filter-static-article .article-heading.article-heading-bg-color-light-blue {
    background-color: #5bc2e7
}

.o-search-results-filter .search-filter-static-article .article-heading.article-heading-bg-color-medium-green {
    background-color: #00b140
}

.o-search-results-filter .search-filter-static-article .article-heading.article-heading-bg-color-gold {
    background-color: #eeb33b
}

.o-search-results-filter .search-filter-static-article .article-heading.article-heading-bg-color-medium-blue {
    background-color: #004f71
}

.o-search-results-filter .search-filter-static-article .article-heading.article-heading-bg-color-magenta {
    background-color: #aa0061
}

.o-search-results-filter .search-filter-static-article .article-heading.article-heading-bg-color-mint {
    background-color: #64ccc9
}

.o-search-results-filter .search-filter-static-article .article-heading.article-heading-bg-color-purple {
    background-color: #470a68
}

.o-search-results-filter .search-filter-static-article .article-link:first-of-type {
    display: block;
    margin-left: 0
}

.o-search-results-filter .search-filter-static-article .article-link:first-of-type .article-image {
    max-width: 100%;
    margin-bottom: .938em;
    position: relative
}

.o-search-results-filter .search-filter-static-article .article-link:first-of-type .article-image img {
    height: auto
}

.o-search-results-filter .search-filter-static-article .article-link:first-of-type .article-image .read-more {
    position: absolute;
    top: 12%;
    left: 8%;
    font-size: 1.25em;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    z-index: 10;
    color: #0688c8;
    display: none
}

.o-search-results-filter .search-filter-static-article .article-link:first-of-type .article-image .story-overlay {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.o-search-results-filter .search-filter-static-article .article-link:first-of-type:hover .article-image .read-more,
.o-search-results-filter .search-filter-static-article .article-link:first-of-type:hover .article-image .story-overlay {
    display: block
}

.o-search-results-filter .search-filter-static-article .article-link:first-of-type .article-details .article-desc {
    display: block
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-search-results-filter .search-filter-static-article .article-link:first-of-type .article-details {
        padding: 0
    }
}

.o-search-results-filter .search-filter-static-article .article-link {
    display: grid;
    grid-template-columns: 112px auto;
    margin-bottom: .9375em;
    margin-left: 10px;
    text-decoration: none;
    position: relative
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-search-results-filter .search-filter-static-article .article-link {
        font-size: .813rem;
        margin-left: 0
    }
}

.o-search-results-filter .search-filter-static-article .article-link .article-image {
    max-width: 112px
}

.o-search-results-filter .search-filter-static-article .article-link .article-image img {
    width: 100%;
    height: 50px;
    display: block
}

.o-search-results-filter .search-filter-static-article .article-link .article-details {
    padding: 0 10px;
    font-size: 1em;
    line-height: 1.375
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-search-results-filter .search-filter-static-article .article-link .article-details {
        padding: 0 0 0 10px
    }
}

.o-search-results-filter .search-filter-static-article .article-link .article-details .article-date {
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d
}

.o-search-results-filter .search-filter-static-article .article-link .article-details .article-title {
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    color: #000
}

.o-search-results-filter .search-filter-static-article .article-link .article-details .article-desc {
    display: none;
    font-family: 'Georgia';
    color: #000
}

.o-search-results-filter .search-filter-static-article .button.link {
    display: none
}

.o-search-results-filter .search-filter-static-article .button .btn {
    background: 0;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'BrandonGrotesqueBold';
    display: flex;
    align-items: center;
    padding: 10px 8px
}

.o-search-results-filter .search-filter-static-article .button .btn span {
    padding-left: 13px;
    padding-top: 3px
}

.o-search-results-filter .search-filter-static-article .button .btn .abt-icon {
    display: block;
    font-size: .625rem;
    color: #888b8d;
    font-weight: bold
}

.o-search-results-filter .search-filter-static-article .button .btn:hover {
    box-shadow: none;
    background: 0
}

.o-search-results-filter .search-filter-static-article .button .btn:hover .abt-icon::before {
    color: #888b8d !important
}

.o-search-results-filter .search-filter-static-article .button.article-btn-color-red .btn span {
    color: #e4002b
}

.o-search-results-filter .search-filter-static-article .button.article-btn-color-mint .btn span {
    color: #64ccc9
}

.o-search-results-filter .search-filter-static-article .button.article-btn-color-purple .btn span {
    color: #470a68
}

.o-search-results-filter .search-filter-static-article .button.article-btn-color-magenta .btn span {
    color: #aa0061
}

.o-search-results-filter .search-filter-static-article .button.article-btn-color-medium-blue .btn span {
    color: #004f71
}

.o-search-results-filter .search-filter-static-article .button.article-btn-color-gold .btn span {
    color: #eeb33b
}

.o-search-results-filter .search-filter-static-article .button.article-btn-color-medium-green .btn span {
    color: #00b140
}

.o-search-results-filter .search-filter-static-article .button.article-btn-color-light-blue .btn span {
    color: #5bc2e7
}

.o-search-results-filter.search-result-filter-row-reverse .o-search-res__container {
    flex-direction: row-reverse
}

.tagbutton-corp-tag .getMore {
    font-size: 1rem;
    font-family: 'BrandonGrotesqueBold';
    color: #63666a;
    text-transform: uppercase;
    letter-spacing: .094em
}

.tagbutton-corp-tag .buttonContainer {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #888b8d;
    padding-top: 10px;
    font-size: .875rem;
    font-family: 'BrandonGrotesqueMedium';
    color: #63666a
}

.tagbutton-corp-tag .buttonContainer a.btn:hover {
    background-color: #009cde;
    box-shadow: none;
    color: #fff
}

.tagbutton-corp-tag .buttonContainer a.btn {
    color: #63666a;
    padding: 5px 10px;
    max-height: 32px;
    border: 1px solid #009cde;
    border-radius: 2px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all .2s ease
}

.tagbutton-corp-tag .buttonContainer a.btn span {
    font-size: .875rem;
    font-family: 'BrandonGrotesqueMedium'
}

.tagbutton.tagbutton-corp-tag {
    margin-bottom: 3.5rem !important
}

.search-filter-tag-article .article-link {
    text-decoration: none
}

.search-filter-tag-article .article-link .article-image {
    margin: 0;
    position: relative
}

.search-filter-tag-article .article-link .article-image img {
    width: 100%;
    max-width: 100%;
    display: block;
    height: auto
}

.search-filter-tag-article .article-link:hover .read-more,
.search-filter-tag-article .article-link:hover .story-overlay {
    display: block
}

.search-filter-tag-article .article-link .read-more {
    position: absolute;
    top: 12%;
    left: 8%;
    font-size: 1.25em;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    z-index: 10;
    color: #0688c8;
    display: none
}

.search-filter-tag-article .article-link .story-overlay {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.search-filter-tag-article .article-link .article-details {
    margin: 15px 10px 0;
    text-decoration: none
}

.search-filter-tag-article .article-link .article-details .article-category {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1rem;
    line-height: 1.375em;
    text-transform: uppercase;
    letter-spacing: .094em
}

.search-filter-tag-article .article-link .article-details .article-category.article-category-color-red {
    color: #e4002b
}

.search-filter-tag-article .article-link .article-details .article-category.article-category-color-blue {
    color: #5bc2e7
}

.search-filter-tag-article .article-link .article-details .article-category.article-category-color-green {
    color: #00b140
}

.search-filter-tag-article .article-link .article-details .article-category.article-category-color-gold {
    color: #eeb33b
}

.search-filter-tag-article .article-link .article-details .article-category.article-category-color-medium-blue {
    color: #004f71
}

.search-filter-tag-article .article-link .article-details .article-category.article-category-color-magenta {
    color: #aa0061
}

.search-filter-tag-article .article-link .article-details .article-category.article-category-color-mint {
    color: #64ccc9
}

.search-filter-tag-article .article-link .article-details .article-category.article-category-color-purple {
    color: #470a68
}

.search-filter-tag-article .article-link .article-details .article-date {
    font-size: 1rem;
    line-height: 1.375em;
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d
}

.search-filter-tag-article .article-link .article-details .article-title {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1rem;
    line-height: 1.375em;
    text-transform: uppercase;
    color: #000;
    margin-top: 6px
}

.search-filter-tag-article .article-link .article-details .article-desc {
    font-size: 1rem;
    line-height: 1.375em;
    font-family: 'Georgia';
    color: #000
}

.search-filter-dynamic-article .article-heading {
    text-align: center;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 1.375em;
    font-family: 'BrandonGrotesqueBold';
    padding: 6px 0 2px;
    color: #fff
}

.search-filter-dynamic-article .article-heading.article-heading-bg-color-red {
    background-color: #e4002b
}

.search-filter-dynamic-article .article-heading.article-heading-bg-color-light-blue {
    background-color: #5bc2e7
}

.search-filter-dynamic-article .article-heading.article-heading-bg-color-medium-green {
    background-color: #00b140
}

.search-filter-dynamic-article .article-heading.article-heading-bg-color-gold {
    background-color: #eeb33b
}

.search-filter-dynamic-article .article-heading.article-heading-bg-color-medium-blue {
    background-color: #004f71
}

.search-filter-dynamic-article .article-heading.article-heading-bg-color-magenta {
    background-color: #aa0061
}

.search-filter-dynamic-article .article-heading.article-heading-bg-color-mint {
    background-color: #64ccc9
}

.search-filter-dynamic-article .article-heading.article-heading-bg-color-purple {
    background-color: #470a68
}

.search-filter-dynamic-article .article-link:first-of-type {
    display: block;
    margin-left: 0
}

.search-filter-dynamic-article .article-link:first-of-type .article-image {
    max-width: 100%;
    margin-bottom: .938em;
    position: relative
}

.search-filter-dynamic-article .article-link:first-of-type .article-image img {
    height: auto
}

.search-filter-dynamic-article .article-link:first-of-type .article-image .read-more {
    position: absolute;
    top: 12%;
    left: 8%;
    font-size: 1.25em;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    z-index: 10;
    color: #0688c8;
    display: none
}

.search-filter-dynamic-article .article-link:first-of-type .article-image .story-overlay {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.search-filter-dynamic-article .article-link:first-of-type:hover .article-image .read-more,
.search-filter-dynamic-article .article-link:first-of-type:hover .article-image .story-overlay {
    display: block
}

.search-filter-dynamic-article .article-link:first-of-type .article-details .article-desc {
    display: block
}

.search-filter-dynamic-article .article-link {
    display: grid;
    grid-template-columns: 112px auto;
    margin-bottom: .9375em;
    margin-left: 10px;
    text-decoration: none;
    position: relative
}

.search-filter-dynamic-article .article-link .article-image {
    max-width: 112px
}

.search-filter-dynamic-article .article-link .article-image img {
    width: 100%;
    height: 50px;
    display: block
}

.search-filter-dynamic-article .article-link .article-details {
    padding: 0 10px;
    font-size: 1em;
    line-height: 1.375
}

.search-filter-dynamic-article .article-link .article-details .article-date {
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d
}

.search-filter-dynamic-article .article-link .article-details .article-title {
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    color: #000
}

.search-filter-dynamic-article .article-link .article-details .article-desc {
    display: none;
    font-family: 'Georgia';
    color: #000
}

.search-filter-dynamic-article .button .btn {
    background: 0;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'BrandonGrotesqueBold'
}

.search-filter-dynamic-article .button .btn span {
    padding-left: 20px
}

.search-filter-dynamic-article .button .btn .abt-icon {
    display: block
}

.search-filter-dynamic-article .button .btn:hover {
    background: 0
}

.search-filter-dynamic-article .button.article-btn-color-red .btn span {
    color: #e4002b
}

.search-filter-dynamic-article .button.article-btn-color-mint .btn span {
    color: #64ccc9
}

.search-filter-dynamic-article .button.article-btn-color-purple .btn span {
    color: #470a68
}

.search-filter-dynamic-article .button.article-btn-color-magenta .btn span {
    color: #aa0061
}

.search-filter-dynamic-article .button.article-btn-color-medium-blue .btn span {
    color: #004f71
}

.search-filter-dynamic-article .button.article-btn-color-gold .btn span {
    color: #eeb33b
}

.search-filter-dynamic-article .button.article-btn-color-medium-green .btn span {
    color: #00b140
}

.search-filter-dynamic-article .button.article-btn-color-light-blue .btn span {
    color: #5bc2e7
}

.related-article--wrapper .related-article--heading {
    font-family: 'BrandonGrotesqueRegular';
    color: #88838d;
    line-height: 1.222em;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase
}

.related-article--wrapper .related-article--link {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid #88838d;
    border-bottom: 1px solid #88838d;
    display: block;
    text-decoration: none
}

.related-article--wrapper .related-article--link .related-article--link-content {
    margin: 0 auto;
    max-width: 450px;
    padding: 0 1.875rem;
    display: flex;
    align-items: center
}

.related-article--wrapper .related-article--link .related-article--link-content .related-article--img-wrapper {
    max-width: 112px;
    margin-right: 1rem
}

.related-article--wrapper .related-article--link .related-article--link-content .related-article--img-wrapper .related-article--img {
    width: 100%;
    min-width: 112px;
    max-width: 112px;
    height: 54px
}

.related-article--wrapper .related-article--link .related-article--link-content .related-article--link-heading {
    color: #009cde;
    font-size: 1.25rem;
    font-family: 'BrandonGrotesqueMedium';
    line-height: 1.3rem
}

.related-article--wrapper-video .related-article--heading {
    font-family: 'BrandonGrotesqueRegular';
    color: #88838d;
    line-height: 1.222em;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase
}

.related-article--wrapper-video .related-article--content-wrapper {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-top: 1px solid #88838d;
    border-bottom: 1px solid #88838d;
    margin-top: 1rem;
    margin-bottom: 2.5rem
}

.related-article--wrapper-video .related-article--content-wrapper .related-article--content {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    align-items: center
}

.related-article--wrapper-video .related-article--content-wrapper .related-article--content .related-video {
    margin-right: 1rem;
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.related-article--wrapper-video .related-article--content-wrapper .related-article--content .related-video .m-video {
    width: 200px;
    height: 100px
}

.related-article--wrapper-video .related-article--content-wrapper .related-article--content .related-article--link {
    color: #009cde;
    font-size: 1.25rem;
    font-family: 'BrandonGrotesqueMedium';
    line-height: 1.3rem;
    text-decoration: none
}

@media(min-width:768px) {
    .o-search-results-filter .container {
        max-width: 750px;
        padding-right: 15px;
        padding-left: 15px
    }
}

@media(min-width:992px) {
    .o-search-results-filter .container {
        width: 75%;
        padding: 0;
        max-width: 970px
    }
}

@media(max-width:767px) {
    .o-search-results-filter .container {
        max-width: 100% !important
    }
}

.o-search-results-filter .container .row.o-search-res__container {
    margin-left: 0;
    margin-right: 0;
    justify-content: space-between
}

.o-search-results-filter .container .row.o-search-res__container .col-md-3 {
    flex: 0 0 32%;
    max-width: 32%;
    order: 2
}

.o-search-results-filter .container .row.o-search-res__container .col-md-3 .searchfacet {
    margin-top: 0
}

.o-search-results-filter .container .row.o-search-res__container .col-md-3 .m-search-result-item {
    display: none
}

.o-search-results-filter .container .row.o-search-res__container .col-md-3 .m-search-result-item,
.o-search-results-filter .container .row.o-search-res__container .col-md-3 .customtextlist {
    margin-top: 0
}

.o-search-results-filter .container .row.o-search-res__container .col-md-9 {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    flex: 0 0 66%;
    max-width: 66%;
    justify-content: space-between
}

.o-search-results-filter .container .row.o-search-res__container .col-md-9 .filter {
    display: none
}

.o-search-results-filter .container .row.o-search-res__container .col-md-9 .o-search-res__results--view {
    padding: 0 !important;
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: space-between
}

@media(max-width:767px) {
    .o-search-results-filter .container .row.o-search-res__container .col-md-9 .o-search-res__results--view {
        flex: 0 0 100%;
        max-width: 100%
    }
}

.o-search-results-filter .container .row.o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
    flex: 0 0 48.8%;
    max-width: 48.8%;
    padding: 0;
    padding-bottom: 30px
}

@media(max-width:767px) {
    .o-search-results-filter .container .row.o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
        max-width: 100%;
        flex: auto
    }
}

.o-search-results-filter .container .row.o-search-res__container .col-md-9 .responsivegrid {
    flex: 0 0 32.5%;
    max-width: 32.5%
}

.o-search-results-filter .container .row.o-search-res__container .col-md-9 .responsivegrid .customtextlist {
    margin-top: 0
}

.o-search-results-filter .search-filter-tag-article .article-link {
    text-decoration: none
}

.o-search-results-filter .search-filter-tag-article .article-link .article-image {
    margin: 0;
    position: relative
}

.o-search-results-filter .search-filter-tag-article .article-link .article-image img {
    width: 100%;
    max-width: 100%;
    display: block;
    height: auto
}

.o-search-results-filter .search-filter-tag-article .article-link:hover .read-more,
.o-search-results-filter .search-filter-tag-article .article-link:hover .story-overlay {
    display: block
}

.o-search-results-filter .search-filter-tag-article .article-link .read-more {
    position: absolute;
    top: 12%;
    left: 8%;
    font-size: 1.25em;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    z-index: 10;
    color: #0688c8;
    display: none
}

.o-search-results-filter .search-filter-tag-article .article-link .story-overlay {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.o-search-results-filter .search-filter-tag-article .article-details {
    margin: 15px 10px 0;
    text-decoration: none
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-search-results-filter .search-filter-tag-article .article-details {
        margin: 15px 0 0
    }
}

.o-search-results-filter .search-filter-tag-article .article-details .article-category {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1rem;
    line-height: 1.375em;
    text-transform: uppercase;
    letter-spacing: .094em
}

.o-search-results-filter .search-filter-tag-article .article-details .article-category.article-category-color-red {
    color: #e4002b
}

.o-search-results-filter .search-filter-tag-article .article-details .article-category.article-category-color-blue {
    color: #5bc2e7
}

.o-search-results-filter .search-filter-tag-article .article-details .article-category.article-category-color-green {
    color: #00b140
}

.o-search-results-filter .search-filter-tag-article .article-details .article-category.article-category-color-gold {
    color: #eeb33b
}

.o-search-results-filter .search-filter-tag-article .article-details .article-category.article-category-color-medium-blue {
    color: #004f71
}

.o-search-results-filter .search-filter-tag-article .article-details .article-category.article-category-color-magenta {
    color: #aa0061
}

.o-search-results-filter .search-filter-tag-article .article-details .article-category.article-category-color-mint {
    color: #64ccc9
}

.o-search-results-filter .search-filter-tag-article .article-details .article-category.article-category-color-purple {
    color: #470a68
}

.o-search-results-filter .search-filter-tag-article .article-details .article-date {
    font-size: 1rem;
    line-height: 1.375em;
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-search-results-filter .search-filter-tag-article .article-details .article-date {
        font-size: .8125em;
        line-height: 1.375em
    }
}

.o-search-results-filter .search-filter-tag-article .article-details .article-title {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1rem;
    line-height: 1.375em;
    text-transform: uppercase;
    color: #000
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-search-results-filter .search-filter-tag-article .article-details .article-title {
        font-size: .8125em;
        line-height: 1.375em
    }
}

.o-search-results-filter .search-filter-tag-article .article-details .article-title h2 {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1rem;
    line-height: 1.375em;
    text-transform: uppercase;
    color: #000;
    margin: 0
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .o-search-results-filter .search-filter-tag-article .article-details .article-title h2 {
        font-size: .813rem;
        line-height: 1.063rem
    }
}

.o-search-results-filter .search-filter-tag-article .article-details .article-desc {
    font-size: 1rem;
    line-height: 1.375em;
    font-family: 'Georgia';
    color: #000
}

@media only screen and (max-width:991.98px) {
    .o-search-results-filter .search-filter-tag-article .article-details .article-desc {
        display: none
    }
}

.newsroom-search {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 40px
}

.newsroom-search #newsroom-toplevel {
    max-width: none
}

@media only screen and (max-width:767.98px) {
    .newsroom-search #newsroom-toplevel .row {
        flex-direction: column-reverse
    }
}

.newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child {
    padding: 30px 10px 50px
}

@media only screen and (min-width:992px) {
    .newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child {
        padding: 30px 8.57% 50px
    }
}

.newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .a-container__row .a-container__content .text {
    margin: 0 !important
}

.newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .a-container__row .a-container__content .text .cmp-text {
    padding: 6px 0 2px
}

.newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .a-container__row .a-container__content .text .cmp-text p {
    margin: 0;
    text-transform: uppercase;
    color: #fff
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .a-container__row .a-container__content .text .cmp-text p {
        font-size: .8125em
    }
}

.newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .container {
    padding: 0
}

.newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .container .columncontrol__column {
    background: #fff
}

.newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .container .columncontrol__column:first-child {
    padding: 0 15px;
    margin: 0
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .container .columncontrol__column:first-child {
        padding: 0 5px 0 15px
    }
}

@media only screen and (min-width:992px) {
    .newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .container .columncontrol__column:first-child {
        padding: 0 8px 0 15px
    }
}

.newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .container .columncontrol__column:last-child {
    padding: 0 15px;
    margin: 0
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .container .columncontrol__column:last-child {
        padding: 0 15px 0 5px
    }
}

@media only screen and (min-width:992px) {
    .newsroom-search #newsroom-toplevel .row .columncontrol__column:first-child .container .columncontrol__column:last-child {
        padding: 0 15px 0 7px
    }
}

.newsroom-search #newsroom-toplevel .row .columncontrol__column:last-child {
    background-color: #d9d9d7;
    padding: 0
}

@media only screen and (max-width:767.98px) {
    .newsroom-search #newsroom-toplevel .row .columncontrol__column:last-child {
        background-color: #fff
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .newsroom-search #newsroom-toplevel .row .columncontrol__column:last-child {
        padding: 0 5px
    }
}

@media only screen and (min-width:992px) {
    .newsroom-search #newsroom-toplevel .row .columncontrol__column:last-child {
        padding: 0 4.5% 0 2.57%
    }
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter {
    margin: 0 !important
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container {
    width: 100%
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .search-results-container {
    display: none !important
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container {
    word-break: break-word
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-3 {
    display: none
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 {
    flex: 0 0 100%;
    max-width: 100%
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .responsivegrid {
    display: none
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view {
    margin: 0
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
    word-break: break-word
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 15px
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view .first-view {
    display: none
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view .first-view a .article-details .article-title {
    margin: 0
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view .general-view {
    padding: 0 0 0 10px
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view .general-view {
        padding: 0
    }
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view .general-view .article-image {
    float: left;
    width: 38%
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view .general-view .article-image {
        width: 43%
    }
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view .general-view .article-image img {
    max-width: 112px
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view .general-view .article-details {
    margin: 0;
    float: right;
    width: 62%;
    padding: 0 0 0 10px
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view .general-view .article-details {
        width: 57%
    }
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view .general-view .article-details .article-title {
    margin: 0
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view:first-child .first-view {
    display: block
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result.newsroom-view:first-child .general-view {
    display: none
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .button.link a em {
    font-size: .625rem !important
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .o-search-results-filter .button.link a span {
    padding-left: 1px
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .button.link {
    margin-top: 15px
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .button.link a em {
    font-size: .625rem !important
}

.newsroom-search #newsroom-toplevel .a-container__row .a-container__content .button.link a span {
    padding-left: 1px
}

.newsroom-piller-page .a-container__row .a-container__content .text {
    margin: 0 !important
}

.newsroom-piller-page .a-container__row .a-container__content .text .cmp-text {
    padding: 6px 0 2px
}

.newsroom-piller-page .a-container__row .a-container__content .text .cmp-text p {
    margin: 0;
    text-transform: uppercase;
    color: #fff
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter {
    margin: 0 !important
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container {
    width: 100%
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .search-results-container {
    display: none !important
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container {
    word-break: break-word
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-3 {
    display: none
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 {
    flex: 0 0 100%;
    max-width: 100%
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view {
    margin: 0
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
    word-break: break-word
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.375rem
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-red {
    color: #e4002b
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-light-blue {
    color: #5bc2e7
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-medium-green {
    color: #00b140
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-gold {
    color: #eeb33b
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-medium-blue {
    color: #004f71
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-magenta {
    color: #aa0061
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-mint {
    color: #64ccc9
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-purple {
    color: #470a68
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-date {
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d;
    font-size: 1rem;
    line-height: 1.375rem
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-title {
    text-transform: uppercase;
    font-family: 'BrandonGrotesqueBold';
    color: #000;
    font-size: 1rem;
    line-height: 1.375rem
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-desc {
    display: block;
    font-size: 1rem;
    line-height: 1.375rem
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .a-pagination {
    display: flex !important;
    width: 100%;
    align-items: center;
    justify-content: center
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages {
    border: 0
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages .a-pagination__page {
    border: 1px solid #ddd
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages .a-pagination__page.a-pagination--active {
    background-color: #000;
    color: #fff
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages .a-pagination__page .a-pagination__link:hover {
    background: #ededed
}

.newsroom-piller-page .a-container__row .a-container__content .o-search-results-filter .container .o-search-res__container .a-pagination.a-pagination--hide {
    display: none !important
}

.newsroom-piller-page.products-and-innovation .search-filter-tag-article .article-details .article-category {
    color: #5bc2e7
}

.newsroom-piller-page.strategy-and-strength .search-filter-tag-article .article-details .article-category {
    color: #00b140
}

.newsroom-piller-page.healthy-heart .search-filter-tag-article .article-details .article-category {
    color: #e4002b
}

.newsroom-piller-page.diabetes-care .search-filter-tag-article .article-details .article-category {
    color: #eeb33b
}

.newsroom-piller-page.pain-and-movement .search-filter-tag-article .article-details .article-category {
    color: #004f71
}

.newsroom-piller-page.diagnostics-testing .search-filter-tag-article .article-details .article-category {
    color: #aa0061
}

.newsroom-piller-page.nutrition-health-and-wellness .search-filter-tag-article .article-details .article-category {
    color: #64ccc9
}

.newsroom-piller-page.sustainability .search-filter-tag-article .article-details .article-category {
    color: #470a68
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    #newsroom-piller-page {
        max-width: none;
        padding: 0
    }
}

@media only screen and (min-width:992px) {
    #newsroom-piller-page {
        max-width: 75%;
        padding: 0
    }
}

@media only screen and (max-width:991.98px) {
    #newsroom-piller-page .newsroom-piller-page .container {
        padding-left: 0;
        padding-right: 0;
        margin: 0
    }
}

@media only screen and (min-width:992px) {
    #newsroom-piller-page .newsroom-piller-page .container {
        padding-left: 8px;
        padding-right: 0
    }
}

@media only screen and (min-width:992px) {
    #newsroom-piller-page .newsroom-piller-page .container .columncontrol__column:first-child {
        padding-right: 0;
        padding-left: 0
    }
}

@media only screen and (min-width:1200px) {
    #newsroom-piller-page .newsroom-piller-page .container .columncontrol__column:first-child .a-container {
        padding-right: 0;
        padding-left: 0
    }
}

@media only screen and (min-width:992px) {
    #newsroom-piller-page .newsroom-piller-page .container .columncontrol__column .cmp-container {
        padding-right: 0;
        padding-left: 0
    }
}

@media(min-width:768px) {
    .o-search-results-filter.o-search-results--category-view .container {
        max-width: 750px;
        padding-right: 15px;
        padding-left: 15px
    }
}

@media(min-width:992px) {
    .o-search-results-filter.o-search-results--category-view .container {
        width: 75%;
        padding: 0;
        max-width: 970px
    }
}

@media(max-width:767px) {
    .o-search-results-filter.o-search-results--category-view .container {
        max-width: 100% !important
    }
}

.o-search-results-filter.o-search-results--category-view .container .search-results-container {
    display: none !important
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container {
    margin-left: 0;
    margin-right: 0;
    justify-content: space-between
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-3 {
    flex: 0 0 32%;
    max-width: 32%;
    order: 2
}

@media(max-width:767.99px) {
    .o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important
    }
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-3 .searchfacet {
    margin-top: 0
}

@media(max-width:767.99px) {
    .o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-3 .searchfacet {
        padding: 0;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        display: block;
        position: relative
    }
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-3 .m-search-result-item {
    display: none
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-3 .m-search-result-item,
.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-3 .customtextlist {
    margin-top: 0
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    flex: 0 0 66%;
    max-width: 66%;
    justify-content: space-between
}

@media(max-width:767px) {
    .o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 {
        flex: 0 0 100% !important;
        max-width: 100% !important
    }
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-link {
    text-decoration: none
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-link .article-image {
    margin: 0;
    position: relative
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-link .article-image img {
    width: 100%;
    max-width: 100%;
    display: block;
    height: auto
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-link:hover .read-more,
.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-link:hover .story-overlay {
    display: block
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-link .read-more {
    position: absolute;
    top: 12%;
    left: 8%;
    font-size: 1.25em;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    z-index: 10;
    color: #0688c8;
    display: none
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-link .story-overlay {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-details {
    margin: 15px 10px 0;
    text-decoration: none;
    overflow-wrap: break-word
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-details .article-category {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1rem;
    line-height: 1.375em;
    text-transform: uppercase;
    letter-spacing: .094em
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-details .article-date {
    font-size: 1rem;
    line-height: 1.375em;
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-details .article-title {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1rem;
    line-height: 1.375em;
    text-transform: uppercase;
    color: #000;
    margin-top: 6px
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .search-filter-tag-article .article-details .article-desc {
    font-size: 1rem;
    line-height: 1.375em;
    font-family: 'Georgia';
    color: #000
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination {
    display: block !important;
    margin-top: 50px;
    margin-bottom: 50px;
    width: 100%;
    text-align: center
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages {
    border: unset;
    border-radius: unset
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page.a-pagination--active a.a-pagination__link {
    color: #fff;
    background-color: #232832
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page.a-pagination--active a.a-pagination__link:after {
    display: none;
    position: relative;
    content: ""
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page.a-pagination--active a.a-pagination__link:hover,
.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page.a-pagination--active a.a-pagination__link:active,
.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page.a-pagination--active a.a-pagination__link:focus {
    color: #fff;
    background-color: #232832
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page.a-pagination--previous em.abt-icon.abt-icon-left-arrow::before {
    font-size: .875rem;
    content: "\00ab";
    color: #3d566e;
    font-family: 'BrandonGrotesqueRegular';
    width: auto !important
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page.a-pagination--previous em.abt-icon.abt-icon-right-arrow.u-rtl {
    display: none
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page.a-pagination--next em.abt-icon.abt-icon-right-arrow::before {
    font-size: .875rem;
    content: "\00bb";
    color: #3d566e;
    font-family: 'BrandonGrotesqueRegular';
    width: auto !important
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page.a-pagination--next em.abt-icon.abt-icon-left-arrow.u-rtl {
    display: none
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page {
    border: 1px solid #ededed !important
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page a.a-pagination__link:hover,
.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page a.a-pagination__link:active,
.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page a.a-pagination__link:focus {
    background-color: unset;
    color: #3d566e;
    font-weight: normal
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page a.a-pagination__link {
    padding: 7px 13px 2px 13px;
    color: #3d566e
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination ul.a-pagination__pages li.a-pagination__page a.a-pagination__link em.abt-icon {
    font-size: .875rem;
    display: flex
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .a-pagination.a-pagination--hide {
    display: none !important
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .filter {
    display: none
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .o-search-res__results--view {
    padding: 0 !important;
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: space-between
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
    flex: 0 0 48.8%;
    max-width: 48.8%;
    padding: 0;
    padding-bottom: 30px
}

@media(max-width:767px) {
    .o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
        max-width: 100%;
        flex: auto
    }
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .responsivegrid {
    flex: 0 0 32.5%;
    max-width: 32.5%;
    display: none
}

.o-search-results-filter.o-search-results--category-view .container .row.o-search-res__container .col-md-9 .responsivegrid .customtextlist {
    margin-top: 0
}

.o-search-results-filter.article-category-color-red .search-filter-tag-article .article-details .article-category {
    color: #e4002b
}

.o-search-results-filter.article-category-color-blue .search-filter-tag-article .article-details .article-category {
    color: #5bc2e7
}

.o-search-results-filter.article-category-color-green .search-filter-tag-article .article-details .article-category {
    color: #00b140
}

.o-search-results-filter.article-category-color-gold .search-filter-tag-article .article-details .article-category {
    color: #eeb33b
}

.o-search-results-filter.article-category-color-medium-blue .search-filter-tag-article .article-details .article-category {
    color: #004f71
}

.o-search-results-filter.article-category-color-magenta .search-filter-tag-article .article-details .article-category {
    color: #aa0061
}

.o-search-results-filter.article-category-color-mint .search-filter-tag-article .article-details .article-category {
    color: #64ccc9
}

.o-search-results-filter.article-category-color-purple .search-filter-tag-article .article-details .article-category {
    color: #470a68
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .container-variation--3-column {
        max-width: 100%
    }
}

@media only screen and (min-width:992px) {
    .container-variation--3-column {
        max-width: 75%;
        padding: 40px 0;
        margin-bottom: 0 !important
    }
}

.container-variation--3-column .o-search-results-filter {
    margin: 0 !important
}

.container-variation--3-column .o-search-results-filter .container {
    width: 100%;
    max-width: 100%
}

.container-variation--3-column .o-search-results-filter .container .search-results-container {
    display: none !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container {
    word-break: break-word
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-3 {
    display: none
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 {
    flex: 0 0 100%;
    max-width: 100%
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view {
    margin: 0;
    justify-content: start
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
    word-break: break-word;
    flex: 0 0 32.33%;
    max-width: 32.33%;
    margin-right: 1.5%
}

@media only screen and (max-width:767.98px) {
    .container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result {
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0
    }
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result:nth-child(3n) {
    margin-right: 0
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.375rem
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-gray {
    color: #63666a !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-light-blue {
    color: #5bc2e7 !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-red {
    color: #e4002b !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-medium-blue {
    color: #004f71 !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-mint {
    color: #64ccc9 !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-medium-green {
    color: #00b140 !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-gold {
    color: #eeb33b !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-magenta {
    color: #aa0061 !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-purple {
    color: #470a68 !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.abbott-purple {
    color: #470a68 !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-category.color-medium-red {
    color: #f5889d !important
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-date {
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d;
    font-size: 1rem;
    line-height: 1.375rem
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-title {
    text-transform: uppercase;
    font-family: 'BrandonGrotesqueBold';
    color: #000;
    font-size: 1rem;
    line-height: 1.375rem
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .col-md-9 .o-search-res__results--view .a-card-result .search-filter-tag-article .article-details .article-desc {
    display: block;
    font-size: 1rem;
    line-height: 1.375rem
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .a-pagination {
    display: flex !important;
    width: 100%;
    align-items: center;
    justify-content: center
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages {
    border: 0
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages .a-pagination__page {
    border: 1px solid #ddd
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages .a-pagination__page.a-pagination--active {
    background-color: #000;
    color: #fff
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages .a-pagination__page .a-pagination__link {
    font-family: 'BrandonGrotesqueRegular';
    font-size: .875rem;
    padding: 7px 13px 5px
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .a-pagination .a-pagination__pages .a-pagination__page .a-pagination__link:hover {
    background: #ededed
}

.container-variation--3-column .o-search-results-filter .container .o-search-res__container .a-pagination.a-pagination--hide {
    display: none !important
}

.stories {
    margin: 3.125em auto 5.3125em auto;
    width: 75%
}

@media only screen and (max-width:767.98px) {
    .stories {
        margin: 2.5em auto 3.75em auto;
        padding: 0 15px;
        width: 100%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .stories {
        margin: 2.5em 2.5em 3.75em 2.5em;
        width: auto
    }
}

.stories .story-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    margin-bottom: 1.25em
}

@media only screen and (max-width:767.98px) {
    .stories .story-card-container {
        grid-template-columns: auto
    }
}

.stories .story-card-container .story-card {
    margin-bottom: 1.875em
}

@media only screen and (max-width:767.98px) {
    .stories .story-card-container .story-card {
        position: relative;
        border-bottom: 1px solid #888b8d;
        margin: 0;
        padding: 10px 0
    }
}

.stories .story-card-container .story-card .story-link {
    display: flow-root;
    text-decoration: none
}

.stories .story-card-container .story-card .story-link .story-image {
    position: relative
}

@media only screen and (max-width:767.98px) {
    .stories .story-card-container .story-card .story-link .story-image {
        width: 50%;
        float: right;
        max-width: 180px
    }
}

.stories .story-card-container .story-card .story-link .story-image img {
    width: 100%;
    max-width: 100%;
    display: block;
    height: auto
}

@media only screen and (max-width:767.98px) {
    .stories .story-card-container .story-card .story-link .story-image img {
        width: 75%;
        float: right
    }
}

.stories .story-card-container .story-card .story-link .story-image .read-more {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.25em;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    z-index: 10;
    color: #0688c8;
    display: none
}

.stories .story-card-container .story-card .story-link .story-image .story-overlay {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.stories .story-card-container .story-card .story-link .story-details {
    margin: 15px 10px 0
}

@media only screen and (max-width:767.98px) {
    .stories .story-card-container .story-card .story-link .story-details {
        float: left;
        width: 50%;
        margin: 0
    }
}

.stories .story-card-container .story-card .story-link .story-details .story-category {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1em;
    line-height: 1.375em;
    text-transform: uppercase;
    letter-spacing: .094em
}

@media only screen and (max-width:767.98px) {
    .stories .story-card-container .story-card .story-link .story-details .story-category {
        display: none
    }
}

.stories .story-card-container .story-card .story-link .story-details .story-category.color-color-gray {
    color: #63666a !important
}

.stories .story-card-container .story-card .story-link .story-details .story-category.color-color-light-blue {
    color: #5bc2e7 !important
}

.stories .story-card-container .story-card .story-link .story-details .story-category.color-color-red {
    color: #e4002b !important
}

.stories .story-card-container .story-card .story-link .story-details .story-category.color-color-medium-blue {
    color: #004f71 !important
}

.stories .story-card-container .story-card .story-link .story-details .story-category.color-color-mint {
    color: #64ccc9 !important
}

.stories .story-card-container .story-card .story-link .story-details .story-category.color-color-medium-green {
    color: #00b140 !important
}

.stories .story-card-container .story-card .story-link .story-details .story-category.color-color-gold {
    color: #eeb33b !important
}

.stories .story-card-container .story-card .story-link .story-details .story-category.color-color-magenta {
    color: #aa0061 !important
}

.stories .story-card-container .story-card .story-link .story-details .story-category.color-color-purple {
    color: #470a68 !important
}

.stories .story-card-container .story-card .story-link .story-details .story-category.color-abbott-medium-red {
    color: #f5889d !important
}

.stories .story-card-container .story-card .story-link .story-details .story-category.color-color-medium-red {
    color: #f5889d !important
}

.stories .story-card-container .story-card .story-link .story-details .story-date {
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d
}

.stories .story-card-container .story-card .story-link .story-details .story-title {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1em;
    line-height: 1.375em;
    text-transform: uppercase;
    color: #000;
    margin-top: 6px
}

.stories .story-card-container .story-card .story-link .story-details .story-desc {
    font-size: 1em;
    line-height: 1.375em;
    font-family: 'Georgia';
    color: #000
}

@media only screen and (max-width:767.98px) {
    .stories .story-card-container .story-card .story-link .story-details .story-desc {
        display: none
    }
}

.stories .story-card-container .story-card .story-link.video-story .play-icon {
    cursor: pointer;
    background: url("../../../content/dam/corp/abbott/en-us/corpnewsroom/play-button-icon/play-btn.png") no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    z-index: 1
}

.stories .story-card-container .story-card:hover .story-link .story-image .read-more {
    display: block
}

.stories .story-card-container .story-card:hover .story-link .story-image .story-overlay {
    display: block
}

.stories .story-card-container .story-card.hidden {
    display: none
}

.stories .pagination-container {
    width: 100%;
    display: flex;
    align-items: center;
    bottom: 0;
    padding: 1rem 0;
    justify-content: center
}

.stories .pagination-number,
.stories .pagination-button {
    font-size: .875rem;
    background-color: transparent;
    border: 1px solid #ddd !important;
    cursor: pointer;
    height: 2.3rem;
    width: 2.3rem
}

.stories .pagination-number:hover,
.stories .pagination-button:not(.disabled):hover {
    background: #fff
}

.stories .pagination-number.active {
    color: #fff;
    background: #000
}

.stories .show-more-container {
    text-align: center;
    line-height: 1;
    margin-bottom: 30px
}

.stories .show-more-container .show-more-text {
    display: inline-block;
    font-size: 1.25rem;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    color: #63666a;
    cursor: pointer
}

.stories .show-more-container .show-more-text span {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1.25rem
}

.stories .show-more-container .show-more-text:hover {
    color: #009cde
}

.stories .popupOverlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: .8;
    z-index: 99
}

.stories .story-container .videoOverlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    background: transparent;
    width: 70%;
    max-width: 1008px;
    transform: translate(-50%, -50%);
    border-radius: 4px;
    z-index: 9999
}

.stories .story-container .videoOverlay.youtubeOverlay {
    height: 80vh;
    max-height: 550px
}

.stories .story-container .videoOverlay.youtubeOverlay .youtubeVideoFrame {
    border: 0
}

.stories .story-container .videoOverlay .popupClose {
    position: absolute;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 100%;
    top: 0;
    right: 0;
    transform: translate(-80%, -120%);
    font-size: 1.5rem;
    font-weight: 700;
    opacity: .7;
    cursor: pointer;
    color: #fff;
    z-index: 100;
    transition: all .2s ease
}

.articleisi .isi-container {
    margin: 40px 0
}

.articleisi .isi-container .isi-heading {
    background: #d9d9d6;
    font-size: 1rem;
    font-family: 'BrandonGrotesqueBold';
    color: #000;
    text-transform: uppercase;
    line-height: 1.876;
    padding: 20px 0 2px 20px
}

.articleisi .isi-container .isi-heading p {
    font-size: 1rem;
    font-family: 'BrandonGrotesqueBold';
    color: #000;
    font-weight: bold
}

.articleisi .isi-container .isi-card {
    border: 8px solid #d9d9d6;
    max-height: 368px;
    position: relative
}

.articleisi .isi-container .isi-card .isi-border {
    padding: 10px;
    border-top: 1px solid #63666a;
    border-bottom: 1px solid #63666a
}

.articleisi .isi-container .isi-card .isi-border .isi-padding {
    overflow-y: auto;
    max-height: 328px;
    padding-right: 10px
}

.articleisi .isi-container .isi-card .isi-border .isi-padding::-webkit-scrollbar {
    width: 9px
}

.articleisi .isi-container .isi-card .isi-border .isi-padding::-webkit-scrollbar-track {
    background: #63666a;
    border-left: 4px solid #fff;
    border-right: 4px solid #fff
}

.articleisi .isi-container .isi-card .isi-border .isi-padding::-webkit-scrollbar-thumb {
    background-color: #63666a;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff
}

.articleisi .isi-container .isi-card .isi-border .isi-padding .isi-pointer .pointer {
    color: #009cde;
    font-family: 'BrandonGrotesqueBold';
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.5;
    width: max-content;
    cursor: pointer
}

.articleisi .isi-container .isi-card .isi-border .isi-padding .isi-pointer .pointer p {
    color: #009cde;
    font-family: 'BrandonGrotesqueBold';
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.5;
    width: max-content;
    cursor: pointer
}

.articleisi .isi-container .isi-card .isi-border .isi-padding .isi-body .isi-point {
    margin-bottom: 10px
}

.articleisi .isi-container .isi-card .isi-border .isi-padding .isi-body .isi-point .isi-title {
    font-family: 'BrandonGrotesqueBold';
    color: #000;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 10px
}

.articleisi .isi-container .isi-card .isi-border .isi-padding .isi-body .isi-point .isi-title p {
    font-family: 'BrandonGrotesqueBold';
    color: #000;
    font-size: 1rem;
    line-height: 1.5
}

.articleisi .isi-container .isi-card .isi-border .isi-padding .isi-body .isi-point .isi-content {
    margin-bottom: 10px;
    font-family: 'Georgia';
    font-size: 1rem;
    line-height: 1.5;
    color: #000
}

.articleisi .isi-container .isi-card .isi-border .isi-padding .isi-body .isi-point .isi-content p {
    font-family: 'Georgia';
    font-size: 1rem;
    line-height: 1.5;
    color: #000
}

.articleisi .isi-container .isi-card .isi-border .isi-padding .isi-body .isi-point .isi-content a {
    font-family: 'Georgia';
    font-size: 1rem;
    line-height: 1.5;
    color: #428bca
}

@media only screen and (min-width:768px) {
    .pressreleases {
        margin: 55px 0 0 !important
    }
}

.pressreleases .press-release-container .press-release-heading {
    text-align: center;
    text-transform: uppercase;
    padding: 10px 0 4px;
    color: #fff;
    background-color: #009cde
}

.pressreleases .press-release-container .press-release-heading span {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1em;
    line-height: 1.275em
}

.pressreleases .press-release-container .press-release-body {
    padding: 20px 20px 30px;
    background-color: #fff
}

.pressreleases .press-release-container .press-release-body .press-release-content {
    margin-bottom: 30px;
    font-size: 1em;
    line-height: 1.375em
}

.pressreleases .press-release-container .press-release-body .press-release-content .press-release-date {
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d
}

.pressreleases .press-release-container .press-release-body .press-release-content .press-release-desc {
    display: inline-block;
    text-decoration: none;
    font-family: 'Georgia';
    color: #000
}

.pressreleases .press-release-container .press-release-body .press-release-content .press-release-desc span {
    font-family: 'Georgia';
    color: #000
}

.pressreleases .press-release-container .press-release-body .cta-button {
    font-size: 1em;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    line-height: 1.375
}

.pressreleases .press-release-container .press-release-body .cta-button a {
    color: #009cde;
    font-size: 1em;
    font-family: 'BrandonGrotesqueBold';
    line-height: 1.375
}

.pressreleases .press-release-container .press-release-body .cta-button::before {
    content: ">";
    color: #888b8d
}

.pressreleasesdynamicpull {
    margin-top: 0 !important
}

.pressreleasesdynamicpull .item {
    display: none;
    border-bottom: 1px solid #d9d9d6;
    padding: 15px 10px 16px
}

.pressreleasesdynamicpull .item .date {
    font-family: 'BrandonGrotesqueBold';
    color: #63666a;
    margin-bottom: 15px
}

.pressreleasesdynamicpull .item .title {
    font-family: 'BrandonGrotesqueBold';
    color: #009cde;
    margin-bottom: 15px;
    text-transform: uppercase
}

.pressreleasesdynamicpull .item .desc {
    font-family: 'Georgia';
    color: #2a2b33
}

.pressreleasesdynamicpull .item:hover {
    background-color: #e1e1e1
}

.pressreleasesdynamicpull .pagination-box {
    text-align: center;
    padding: 15px 0
}

.pressreleasesdynamicpull .pagination-box .pagination-text {
    color: #63666a;
    font-weight: 700
}

.pressreleasesdynamicpull .pagination-box #loadMore {
    margin-top: 15px;
    display: block
}

.pressreleasesdynamicpull .pagination-box #loadMore button {
    border: 0;
    padding: 5px;
    color: #009cde;
    background-color: #2a2b33;
    width: 100%;
    font-weight: 700
}

.pressreleasesdynamicpull .pagination-box #loadMore:hover button {
    color: #2a2b33;
    background-color: #009cde
}

.pressreleasesdynamicpull .hidden-feilds {
    display: none
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link:first-of-type {
    display: block;
    margin-left: 0
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link:first-of-type .article-image {
    max-width: 100%;
    margin-bottom: .938em;
    position: relative
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link:first-of-type .article-image img {
    height: auto
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link:first-of-type .article-image .read-more {
    position: absolute;
    top: 12%;
    left: 8%;
    font-size: 1.25em;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    z-index: 10;
    color: #0688c8;
    display: none
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link:first-of-type .article-image .story-overlay {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link:first-of-type:hover .article-image .read-more,
.pressreleasesdynamicpull .corpnewsroom-pages .article-link:first-of-type:hover .article-image .story-overlay {
    display: block
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link:first-of-type .article-details .article-desc {
    display: block
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .pressreleasesdynamicpull .corpnewsroom-pages .article-link:first-of-type .article-details {
        padding: 0
    }
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link {
    display: grid;
    grid-template-columns: 112px auto;
    margin-bottom: .9375em;
    margin-left: 10px;
    text-decoration: none;
    position: relative
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .pressreleasesdynamicpull .corpnewsroom-pages .article-link {
        font-size: 13px;
        margin-left: 0
    }
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link .article-image {
    max-width: 112px
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link .article-image img {
    width: 100%;
    height: 50px;
    display: block
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link .article-details {
    padding: 0 10px;
    font-size: 1em;
    line-height: 1.375
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .pressreleasesdynamicpull .corpnewsroom-pages .article-link .article-details {
        padding: 0 0 0 10px
    }
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link .article-details .article-date {
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link .article-details .article-title {
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    color: #000
}

.pressreleasesdynamicpull .corpnewsroom-pages .article-link .article-details .article-desc {
    display: none;
    font-family: 'Georgia';
    color: #000
}

.banner {
    width: 100%;
    margin: 0 !important
}

.banner .banner-container {
    display: flex;
    width: 100%;
    flex-direction: row
}

@media only screen and (max-width:767.98px) {
    .banner .banner-container {
        flex-direction: column;
        margin-bottom: 5px
    }
}

.banner .banner-container .banner-link {
    display: block;
    text-decoration: none;
    overflow: hidden
}

.banner .banner-container .banner-link:hover .banner-details img {
    transform: scale(1.25)
}

.banner .banner-container .banner-details {
    position: relative
}

.banner .banner-container .banner-details img {
    width: 100%;
    display: block;
    transition: all .3s ease
}

.banner .banner-container .banner-details .banner-title {
    position: absolute;
    z-index: 1;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: 'BrandonGrotesqueBold';
    color: #fff
}

.banner .banner-container .banner-details .banner-title.colorPalette_Black {
    color: #000
}

.banner .banner-container .banner-details .banner-title.colorPalette_White {
    color: #fff !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Abbott-Primary-Blue {
    color: #009cde !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Abbott-red {
    color: #e4002b !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Abbott-Dark-Blue {
    color: #002a3a !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Medium-blue {
    color: #004f71 !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Abbott-light-blue {
    color: #5bc2e7 !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Abbott-Mint {
    color: #64ccc9 !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Medium-Green {
    color: #00b140 !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Light-Green {
    color: #7ccc6c !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Abbott-gold {
    color: #eeb33b !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Abbott-Magenta {
    color: #aa0061 !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Abbott-purple {
    color: #470a68 !important
}

.banner .banner-container .banner-details .banner-title.color-abbott-medium-red {
    color: #f5889d !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Abbott-Orange {
    color: #e4002b !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Yellow {
    color: #ffd100 !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Abbott-charcole {
    color: #222731 !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_DarkGray {
    color: #222731 !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_Medium-gray {
    color: #939799 !important
}

.banner .banner-container .banner-details .banner-title.colorPalette_LightGray {
    color: #d9d9d6 !important
}

.banner .banner-container .banner-details .banner-overlay {
    display: block;
    height: 33.34%;
    background-color: #000;
    opacity: .4;
    position: absolute;
    left: 0;
    width: 100%
}

.banner .banner-container .banner-details .banner-overlay.disp-top {
    top: 0
}

.banner .banner-container .banner-details .banner-overlay.disp-bottom {
    bottom: 15%;
    transform: translateY(50%)
}

.banner .banner-container .banner-details .banner-overlay.disp-middle {
    top: 50%;
    transform: translateY(-50%)
}

.banner .banner-container .left-banner {
    width: 66.806%;
    padding-right: 10px
}

@media only screen and (max-width:767.98px) {
    .banner .banner-container .left-banner {
        width: 100%;
        padding-right: 0;
        margin-bottom: 5px
    }
}

.banner .banner-container .left-banner .banner-title {
    font-size: 2.5rem;
    line-height: 1.025;
    left: 12%;
    right: 10%
}

.banner .banner-container .left-banner .banner-title.disp-top {
    top: 18%;
    transform: translateY(-50%)
}

.banner .banner-container .left-banner .banner-title.disp-bottom {
    bottom: 14%;
    transform: translateY(50%)
}

.banner .banner-container .left-banner .banner-title.disp-middle {
    top: 52%;
    transform: translateY(-50%)
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .banner .banner-container .left-banner .banner-title {
        font-size: 1.375rem;
        line-height: 1.045
    }
}

@media only screen and (max-width:767.98px) {
    .banner .banner-container .left-banner .banner-title {
        font-size: .875rem;
        line-height: 1.071;
        left: 5%
    }
}

@media only screen and (min-width:768px) {
    .banner .banner-container .left-banner a {
        height: 100%
    }
}

@media only screen and (min-width:768px) {
    .banner .banner-container .left-banner a .banner-details {
        height: 100%
    }
}

@media only screen and (min-width:768px) {
    .banner .banner-container .left-banner a .banner-details img {
        height: 100%
    }
}

@media only screen and (min-width:768px) {
    .banner .banner-container .left-banner .responsiveImageVideo {
        height: 100%
    }
}

@media only screen and (min-width:768px) {
    .banner .banner-container .left-banner .responsiveImageVideo .hub2-youtubeVideoImage {
        height: 100%
    }
}

@media only screen and (min-width:768px) {
    .banner .banner-container .left-banner .responsiveImageVideo .hub2-youtubeVideoImage .hub2-youtubeVideoImage-wrapper {
        height: 100%
    }
}

@media only screen and (min-width:768px) {
    .banner .banner-container .left-banner .responsiveImageVideo .hub2-youtubeVideoImage .hub2-youtubeVideoImage-wrapper img {
        height: 100%
    }
}

.banner .banner-container .right-banner {
    display: flex;
    flex-direction: column;
    width: 33.394%
}

@media only screen and (max-width:767.98px) {
    .banner .banner-container .right-banner {
        width: 100%;
        margin-bottom: 5px
    }
}

.banner .banner-container .right-banner .image-top {
    margin-bottom: 5px
}

.banner .banner-container .right-banner .banner-title {
    font-size: 1.375rem;
    line-height: 1.045;
    left: 6%;
    right: 6%
}

.banner .banner-container .right-banner .banner-title.disp-top {
    top: 18%;
    transform: translateY(-50%)
}

.banner .banner-container .right-banner .banner-title.disp-bottom {
    bottom: 15%;
    transform: translateY(50%)
}

.banner .banner-container .right-banner .banner-title.disp-middle {
    top: 50%;
    transform: translateY(-50%)
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .banner .banner-container .right-banner .banner-title {
        font-size: .75rem;
        line-height: 1.083
    }
}

@media only screen and (max-width:767.98px) {
    .banner .banner-container .right-banner .banner-title {
        font-size: .875rem;
        line-height: 1.071;
        left: 5%
    }
}

.banner .hub-embededVideo {
    display: none
}

.banner .responsiveImageVideo {
    position: relative
}

.banner .responsiveImageVideo .hub2PlayIcon {
    cursor: pointer;
    color: transparent;
    background: url("../../../content/dam/corp/abbott/en-us/corpnewsroom/play-button-icon/play-btn.png");
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    transition: all 150ms ease-out
}

.banner #hub2Videooverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.24)
}

.banner #hub2Videooverlay .modal-dialog {
    pointer-events: all;
    padding-bottom: 36.25% !important;
    position: relative;
    border: 0;
    height: 0;
    width: 100%;
    max-width: 80%;
    margin: 0 auto
}

.banner #hub2Videooverlay .modal-dialog .hub2-popup-close {
    position: absolute;
    right: -20px;
    background: 0;
    border: 0;
    color: #fff;
    font-size: 3.75rem;
    top: 25px;
    z-index: 9
}

.banner #hub2Videooverlay .modal-dialog iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    top: 30px;
    left: 0;
    background-size: cover;
    -o-object-fit: fill;
    object-fit: fill
}

.executiveteam {
    display: flex;
    flex-wrap: wrap;
    padding: 15px
}

.executiveteam .executive-member {
    flex: 0 0 100%;
    border: 1px solid #d9d9d6;
    margin-bottom: 30px
}

@media only screen and (min-width:768px) {
    .executiveteam .executive-member {
        flex: 0 0 49%;
        margin-right: 2%
    }

    .executiveteam .executive-member:nth-child(2n) {
        margin-right: 0
    }
}

@media only screen and (min-width:1200px) {
    .executiveteam .executive-member {
        flex: 0 0 32%;
        margin-right: 2%
    }

    .executiveteam .executive-member:nth-child(2n) {
        margin-right: 2%
    }

    .executiveteam .executive-member:nth-child(3n) {
        margin-right: 0
    }
}

.executiveteam .executive-member a .profile-image img {
    width: 100%
}

.executiveteam .executive-member a .profile-details {
    padding: 15px 20px
}

.executiveteam .executive-member a .profile-details .profile-title {
    margin-top: 8px;
    letter-spacing: 1px;
    line-height: 1.2;
    font-family: 'BrandonGrotesqueBlack';
    font-size: .813rem;
    text-transform: uppercase;
    color: #000
}

.executiveteam .executive-member a .profile-details .profile-desc {
    font-family: 'Georgia';
    font-size: .75rem;
    line-height: 1.2;
    margin: 5px 0;
    color: #333
}

.pressreleasesdynamicpull .marathon-pages {
    margin: 3.125em auto 5.3125em auto;
    width: 75%
}

@media only screen and (max-width:767.98px) {
    .pressreleasesdynamicpull .marathon-pages {
        margin: 2.5em auto 3.75em auto;
        padding: 0 15px;
        width: 100%
    }
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .pressreleasesdynamicpull .marathon-pages {
        margin: 2.5em 2.5em 3.75em 2.5em;
        width: auto
    }
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    margin-bottom: 1.25em
}

@media only screen and (max-width:767.98px) {
    .pressreleasesdynamicpull .marathon-pages .marathon-card-container {
        grid-template-columns: auto
    }
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card {
    margin-bottom: 1.875em
}

@media only screen and (max-width:767.98px) {
    .pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card {
        position: relative;
        border-bottom: 1px solid #888b8d;
        margin: 0;
        padding: 10px 0
    }
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link {
    display: flow-root;
    text-decoration: none
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-image {
    position: relative
}

@media only screen and (max-width:767.98px) {
    .pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-image {
        width: 50%;
        float: right;
        max-width: 180px
    }
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-image img {
    width: 100%;
    max-width: 100%;
    display: block;
    height: auto
}

@media only screen and (max-width:767.98px) {
    .pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-image img {
        width: 75%;
        float: right
    }
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-image .read-more {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.25em;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    z-index: 10;
    color: #0688c8;
    display: none
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-image .story-overlay {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details {
    margin: 15px 10px 0
}

@media only screen and (max-width:767.98px) {
    .pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details {
        float: left;
        width: 50%;
        margin: 0
    }
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1em;
    line-height: 1.375em;
    text-transform: uppercase;
    letter-spacing: .094em
}

@media only screen and (max-width:767.98px) {
    .pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category {
        display: none
    }
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category.color-gray {
    color: #63666a !important
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category.color-light-blue {
    color: #5bc2e7 !important
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category.color-red {
    color: #e4002b !important
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category.color-medium-blue {
    color: #004f71 !important
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category.color-mint {
    color: #64ccc9 !important
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category.color-medium-green {
    color: #00b140 !important
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category.color-gold {
    color: #eeb33b !important
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category.color-magenta {
    color: #aa0061 !important
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category.color-purple {
    color: #470a68 !important
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category.color-abbott-medium-red {
    color: #f5889d !important
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-category.color-medium-red {
    color: #f5889d !important
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-date {
    font-family: 'BrandonGrotesqueMedium';
    color: #888b8d
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-title {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1em;
    line-height: 1.375em;
    text-transform: uppercase;
    color: #000;
    margin-top: 6px
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-desc {
    font-size: 1em;
    line-height: 1.375em;
    font-family: 'Georgia';
    color: #000
}

@media only screen and (max-width:767.98px) {
    .pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link .story-details .story-desc {
        display: none
    }
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card .story-link.video-story .play-icon {
    cursor: pointer;
    background: url("../../../content/dam/corp/abbott/en-us/corpnewsroom/play-button-icon/play-btn.png") no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    z-index: 1
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card:hover .story-link .story-image .read-more {
    display: block
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card:hover .story-link .story-image .story-overlay {
    display: block
}

.pressreleasesdynamicpull .marathon-pages .marathon-card-container .marathon-card.hidden {
    display: none
}

.pressreleasesdynamicpull .show-more-container {
    text-align: center;
    line-height: 1;
    margin-bottom: 30px
}

.pressreleasesdynamicpull .show-more-container .show-more-text {
    display: inline-block;
    font-size: 1.25rem;
    font-family: 'BrandonGrotesqueBold';
    text-transform: uppercase;
    color: #63666a;
    cursor: pointer
}

.pressreleasesdynamicpull .show-more-container .show-more-text span {
    font-family: 'BrandonGrotesqueBold';
    font-size: 1.25rem
}

.pressreleasesdynamicpull .show-more-container .show-more-text:hover {
    color: #009cde
}

.mostreadarticles {
    margin: 20px 0 !important
}

.mostreadarticles .most-read-title {
    font-family: 'BrandonGrotesqueBold';
    font-weight: 500;
    line-height: 1.1;
    color: #888b8d;
    font-size: 1.125rem;
    border-bottom: 1px solid #b7b7b7;
    padding-bottom: 10px;
    margin-bottom: 20px
}

.mostreadarticles .most-read .item a .image-section {
    position: relative
}

.mostreadarticles .most-read .item a .image-section img.article-image {
    width: 100%
}

.mostreadarticles .most-read .item a .image-section .read-more {
    position: absolute;
    top: 10%;
    left: 6%;
    font-size: 1em;
    font-family: 'BrandonGrotesqueRegular';
    text-transform: uppercase;
    z-index: 10;
    color: #019cde;
    display: none
}

.mostreadarticles .most-read .item a .image-section .sotory-overlay {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.mostreadarticles .most-read .item a .content-section {
    padding: 15px 10px
}

.mostreadarticles .most-read .item a .content-section .tag {
    text-transform: uppercase;
    letter-spacing: 1.504px;
    font-family: 'BrandonGrotesqueBold'
}

.mostreadarticles .most-read .item a .content-section .tag.color-red {
    color: #e4002b
}

.mostreadarticles .most-read .item a .content-section .tag.color-light-blue {
    color: #5bc2e7
}

.mostreadarticles .most-read .item a .content-section .tag.color-medium-green {
    color: #00b140
}

.mostreadarticles .most-read .item a .content-section .tag.color-gold {
    color: #eeb33b
}

.mostreadarticles .most-read .item a .content-section .tag.color-medium-blue {
    color: #004f71
}

.mostreadarticles .most-read .item a .content-section .tag.color-magenta {
    color: #aa0061
}

.mostreadarticles .most-read .item a .content-section .tag.color-mint {
    color: #64ccc9
}

.mostreadarticles .most-read .item a .content-section .tag.color-purple {
    color: #470a68
}

.mostreadarticles .most-read .item a .content-section .date {
    font-family: 'BrandonGrotesqueMedium';
    color: #88888d
}

.mostreadarticles .most-read .item a .content-section .title p {
    text-transform: uppercase;
    font-family: 'BrandonGrotesqueBold';
    color: #000;
    font-weight: normal;
    margin: 2px 0
}

.mostreadarticles .most-read .item a .content-section .desc p {
    font-family: 'Georgia';
    color: #000;
    font-weight: normal;
    margin: 0
}

.mostreadarticles .most-read .item a:hover .image-section .read-more {
    display: block
}

.mostreadarticles .most-read .item a:hover .image-section .sotory-overlay {
    display: block
}

.expertteam {
    display: flex;
    flex-wrap: wrap;
    padding: 25px 0
}

.expertteam .expert-member {
    flex: 0 0 100%;
    border: 1px solid #d9d9d6;
    margin-bottom: 30px
}

@media only screen and (min-width:768px) {
    .expertteam .expert-member {
        flex: 0 0 49%;
        margin-right: 2%
    }

    .expertteam .expert-member:nth-child(2n) {
        margin-right: 0
    }
}

.expertteam .expert-member a .profile-image img {
    width: 100%
}

.expertteam .expert-member a .profile-details {
    padding: 15px 20px
}

.expertteam .expert-member a .profile-details .profile-title {
    margin-top: 8px;
    letter-spacing: 1px;
    line-height: 1.2;
    font-family: 'BrandonGrotesqueBlack';
    font-size: .875rem;
    text-transform: uppercase;
    color: #000
}

.expertteam .expert-member a .profile-details .profile-desc {
    font-family: 'Georgia';
    font-size: .875rem;
    line-height: 1.2;
    margin: 5px 0;
    color: #333
}

.expertteam .expert-member.hidden {
    display: none
}

.expertteam #noofpeople {
    display: none
}

.expertteam .pagination-container {
    display: flex !important;
    width: 100%;
    align-items: center;
    justify-content: center
}

.expertteam .pagination-number,
.expertteam .pagination-button {
    border: 1px solid #ddd;
    font-size: 1rem;
    background-color: transparent;
    cursor: pointer;
    padding: 7px 13px 4px
}

.expertteam .pagination-number:hover,
.expertteam .pagination-button:not(.disabled):hover {
    background: #ededed
}

.expertteam .pagination-number.active {
    color: #fff;
    background: #232832
}

.accessbility-contrast {
    position: absolute;
    top: 101px;
    right: 0;
    width: 47px;
    z-index: 5
}

@media only screen and (max-width:1440px) {
    .accessbility-contrast {
        top: 200px
    }
}

.accessbility-contrast .accessibilty-image {
    width: 100%;
    cursor: pointer;
    background: url(../../../content/dam/corp/abbott/global/contrast-accessibility-button.png) left center no-repeat #009cde;
    background-size: 40px 40px;
    height: 49px;
    display: block
}

.accessbility-contrast .menu {
    list-style: none;
    background-color: #007ac0;
    color: #fff;
    width: 120px;
    float: right;
    padding: 2px;
    text-align: center
}

.accessbility-contrast .menu li a {
    color: #fff;
    display: block
}

.accessbility-contrast .menu li a:hover,
.accessbility-contrast .menu li a:focus {
    text-decoration: none
}

html[lang*='il'] .accessbility-contrast .menu li a {
    background-color: #aa0061;
    color: #000
}

.page.contrasted .accessbility-contrast .menu li a {
    background-color: #ff0 !important;
    color: #000 !important
}

.page.contrasted a,
.page.contrasted h1,
.page.contrasted h1 *,
.page.contrasted h2,
.page.contrasted h2 *,
.page.contrasted h3,
.page.contrasted h3 *,
.page.contrasted h4,
.page.contrasted h4 *,
.page.contrasted h5,
.page.contrasted h5 *,
.page.contrasted h6,
.page.contrasted h6 *,
.page.contrasted p,
.page.contrasted li,
.page.contrasted span:not([class*="abt-icon"]),
.page.contrasted .btn,
.page.contrasted input,
.page.contrasted input::placeholder {
    color: #ff0 !important;
    --text-color: #ff0 !important;
    --info-section-text-color: #ff0 !important;
    --info-section-text-mob-color: #ff0 !important
}

.page.contrasted #pageContent,
.page.contrasted h1,
.page.contrasted h1 *,
.page.contrasted h2,
.page.contrasted h2 *,
.page.contrasted h3,
.page.contrasted h3 *,
.page.contrasted h4,
.page.contrasted h4 *,
.page.contrasted h5,
.page.contrasted h5 *,
.page.contrasted h6,
.page.contrasted h6 *,
.page.contrasted p,
.page.contrasted .btn,
.page.contrasted .bg-color--light-gray,
.page.contrasted input {
    background-color: #000 !important
}

.page.contrasted .btn,
.page.contrasted input {
    border: 1px solid #ff0 !important;
    --info-section-heading-mob-color: #000 !important
}

.page.contrasted .o-header {
    --header-top-bar-bg: #000
}

.page.contrasted .o-header.o-header--full-width .o-header__search .abt-icon {
    color: #fff
}

.page.contrasted .o-header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .navbar .m-mega-menu__mobile-item-wrapper {
    background-color: #000 !important
}

@media only screen and (max-width:991.98px) {
    .page.contrasted .o-header .o-header__sticky-section .o-header__mega-menu .m-mega-menu__mobile .navbar .navbar-collapse {
        --mega-menu-mob-bg: #000
    }
}

@media only screen and (max-width:767.98px) {
    .page.contrasted .o-header .o-header__sticky-section .o-header__mega-menu .o-header__search .a-search:not(.a-search--expand) .a-search__input {
        border: 0 !important
    }
}

.page.contrasted .o-header .m-mega-menu__nested-menu:before {
    border-bottom: 12px solid #ff0 !important
}

@media only screen and (min-width:992px) {
    .page.contrasted .o-header .m-mega-menu__nested-menu .m-mega-menu__side-nav .m-link-stack {
        background-color: #000;
        border: 1px solid #ff0
    }
}

@media only screen and (min-width:992px) {
    .page.contrasted .o-header .o-header__secondary-top-nav .m-link-stack__dropdown-wrapper {
        background-color: #000;
        border: 1px solid #ff0
    }
}

.page.contrasted .o-header .o-header__secondary-top-nav .m-link-stack__dropdown-wrapper::before {
    --link-stack-dropdown-bg-color: #ff0
}

.page.contrasted .o-header .o-header__secondary-top-nav .m-link-stack__dropdown-wrapper .m-link-stack__list-item:hover,
.page.contrasted .o-header .o-header__secondary-top-nav .m-link-stack__dropdown-wrapper .m-link-stack__list-item:focus {
    background-color: #000
}

.page.contrasted .mblcontainer .mblmenu {
    background-color: #000
}

.page.contrasted .mblcontainer .mblmenu span,
.page.contrasted .mblcontainer .mblmenu a {
    color: #ff0 !important
}

.page.contrasted .m-hero .m-hero__content .m-hero__header,
.page.contrasted .m-hero .m-hero__content .m-hero__body {
    background-color: #000 !important
}

.page.contrasted .abbott-breadcrumb {
    background-color: #000
}

.page.contrasted .abbott-breadcrumb .a-breadcrumb__item,
.page.contrasted .abbott-breadcrumb .a-breadcrumb__item .a-breadcrumb--active {
    color: #ff0 !important
}

.page.contrasted .o-info-section {
    background-color: #000 !important
}

html[lang*='en']:root,
html[lang*='zh']:root,
html[lang*='id']:root,
html[lang*='tr']:root,
html[lang*='es']:root,
html[lang*='gr']:root,
html[lang*='it']:root,
html[lang*='nl']:root,
html[lang*='pl']:root,
html[lang*='pt']:root,
html[lang*='sk']:root,
html[lang*='cz']:root,
html[lang*='fr']:root,
html[lang*='de']:root,
html[lang*='ch']:root,
html[lang*='ar']:root,
html[lang*='ua']:root,
html[lang*='ca']:root {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='ja']:root,
html[lang*='cn']:root {
    --font-family: 'Noto Sans SC Regular'
}

html[lang*='vi']:root {
    --font-family: 'Noto Sans Regular'
}

html[lang*='ja']:root {
    --font-family: 'Meiryo'
}

html[lang*='kr']:root,
html[lang*='th']:root,
html[lang*='tw']:root {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='ru']:root {
    --font-family: 'Calibri'
}

html[lang*='en'] .font--bold,
html[lang*='zh'] .font--bold,
html[lang*='id'] .font--bold,
html[lang*='tr'] .font--bold,
html[lang*='es'] .font--bold,
html[lang*='gr'] .font--bold,
html[lang*='it'] .font--bold,
html[lang*='nl'] .font--bold,
html[lang*='pl'] .font--bold,
html[lang*='pt'] .font--bold,
html[lang*='sk'] .font--bold,
html[lang*='cz'] .font--bold,
html[lang*='fr'] .font--bold,
html[lang*='de'] .font--bold,
html[lang*='ch'] .font--bold,
html[lang*='ar'] .font--bold,
html[lang*='ua'] .font--bold,
html[lang*='ca'] .font--bold {
    --font-family: 'BrandonGrotesqueBold'
}

html[lang*='ja'] .font--bold {
    --font-family: 'Meiryo Bold'
}

html[lang*='kr'] .font--bold,
html[lang*='th'] .font--bold,
html[lang*='tw'] .font--bold {
    --font-family: 'Noto Sans TC Bold'
}

html[lang*='vi'] .font--bold {
    --font-family: 'Segoe UI Bold'
}

html[lang*='en'] .font--medium,
html[lang*='zh'] .font--medium,
html[lang*='id'] .font--medium,
html[lang*='tr'] .font--medium,
html[lang*='es'] .font--medium,
html[lang*='gr'] .font--medium,
html[lang*='it'] .font--medium,
html[lang*='nl'] .font--medium,
html[lang*='pl'] .font--medium,
html[lang*='pt'] .font--medium,
html[lang*='sk'] .font--medium,
html[lang*='cz'] .font--medium,
html[lang*='fr'] .font--medium,
html[lang*='de'] .font--medium,
html[lang*='ch'] .font--medium,
html[lang*='ar'] .font--medium,
html[lang*='ua'] .font--medium,
html[lang*='ca'] .font--medium {
    --font-family: 'BrandonGrotesqueMedium'
}

html[lang*='kr'] .font--medium,
html[lang*='th'] .font--medium,
html[lang*='tw'] .font--medium {
    --font-family: 'Noto Sans TC Medium'
}

html[lang*='en'] .font--black,
html[lang*='zh'] .font--black,
html[lang*='id'] .font--black,
html[lang*='tr'] .font--black,
html[lang*='es'] .font--black,
html[lang*='gr'] .font--black,
html[lang*='it'] .font--black,
html[lang*='nl'] .font--black,
html[lang*='pl'] .font--black,
html[lang*='pt'] .font--black,
html[lang*='sk'] .font--black,
html[lang*='cz'] .font--black,
html[lang*='fr'] .font--black,
html[lang*='de'] .font--black,
html[lang*='ch'] .font--black,
html[lang*='ar'] .font--black,
html[lang*='ua'] .font--black,
html[lang*='ca'] .font--black {
    --font-family: 'BrandonGrotesqueBlack'
}

html[lang*='kr'] .font--black,
html[lang*='th'] .font--black,
html[lang*='tw'] .font--black {
    --font-family: 'Noto Sans TC Black'
}

html[lang*='en'] .font--regular,
html[lang*='zh'] .font--regular,
html[lang*='id'] .font--regular,
html[lang*='tr'] .font--regular,
html[lang*='es'] .font--regular,
html[lang*='gr'] .font--regular,
html[lang*='it'] .font--regular,
html[lang*='nl'] .font--regular,
html[lang*='pl'] .font--regular,
html[lang*='pt'] .font--regular,
html[lang*='sk'] .font--regular,
html[lang*='cz'] .font--regular,
html[lang*='fr'] .font--regular,
html[lang*='de'] .font--regular,
html[lang*='ch'] .font--regular,
html[lang*='ar'] .font--regular,
html[lang*='ua'] .font--regular,
html[lang*='ca'] .font--regular {
    --font-family: 'BrandonGrotesqueRegular'
}

html[lang*='kr'] .font--regular,
html[lang*='th'] .font--regular,
html[lang*='tw'] .font--regular {
    --font-family: 'Noto Sans TC Regular'
}

html[lang*='en'] .font--thin,
html[lang*='zh'] .font--thin,
html[lang*='id'] .font--thin,
html[lang*='tr'] .font--thin,
html[lang*='es'] .font--thin,
html[lang*='gr'] .font--thin,
html[lang*='it'] .font--thin,
html[lang*='nl'] .font--thin,
html[lang*='pl'] .font--thin,
html[lang*='pt'] .font--thin,
html[lang*='sk'] .font--thin,
html[lang*='cz'] .font--thin,
html[lang*='fr'] .font--thin,
html[lang*='de'] .font--thin,
html[lang*='ch'] .font--thin,
html[lang*='ar'] .font--thin,
html[lang*='ua'] .font--thin,
html[lang*='ca'] .font--thin {
    --font-family: 'BrandonGrotesqueThin'
}

html[lang*='kr'] .font--thin,
html[lang*='th'] .font--thin,
html[lang*='tw'] .font--thin {
    --font-family: 'Noto Sans TC Thin'
}

html[lang*='vi'] .font--thin {
    --font-family: 'Segoe UI Light'
}

html[lang*='en'] .font--italic,
html[lang*='zh'] .font--italic,
html[lang*='id'] .font--italic,
html[lang*='tr'] .font--italic,
html[lang*='es'] .font--italic,
html[lang*='gr'] .font--italic,
html[lang*='it'] .font--italic,
html[lang*='nl'] .font--italic,
html[lang*='pl'] .font--italic,
html[lang*='pt'] .font--italic,
html[lang*='sk'] .font--italic,
html[lang*='cz'] .font--italic,
html[lang*='fr'] .font--italic,
html[lang*='de'] .font--italic,
html[lang*='ch'] .font--italic,
html[lang*='ar'] .font--italic,
html[lang*='ua'] .font--italic,
html[lang*='ca'] .font--italic {
    --font-family: 'BrandonGrotesqueItalic'
}

html[lang*='vi'] .font--italic {
    --font-family: 'Segoe UI Italic'
}

.te-consent--mobile {
    padding: 7px 40px 7px 16px
}

.te-consent--mobile a {
    letter-spacing: .6px;
    font-size: .875rem;
    line-height: 1.25rem;
    text-transform: uppercase
}

.te-consent--mobile a:not([href]) {
    color: #fff
}

.te-consent--desktop a {
    color: #d9d9d6;
    font-size: 12.8px;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block
}

.te-consent--desktop a:hover {
    color: #5bc2e7 !important
}

.te-consent--desktop a:not([href]) {
    color: #d9d9d6
}

.te-consent--desktop a:focus {
    color: #5bc2e7
}

@media only screen and (min-width:768px) and (max-width:991.98px) {
    .te-consent--desktop a {
        font-size: 9.6px
    }
}

div#truste-consent-track {
    max-width: 1441px;
    left: 0;
    right: 0;
    margin: 0 auto
}

@media print {
    .accordion.accordion__expand-collapse-group .m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper .m-accordion-toggle .m-accordion-icon {
        display: none
    }

    .accordion.accordion__expand-collapse-group .m-accordion__content-items .m-accordion__header .m-accordion__icon-wrapper .m-accordion-toggle .m-accordion-icon[data-icon="collapse"] {
        display: inline-block
    }

    .accordion.accordion__expand-collapse-group .m-accordion__content-items .m-accordion__body {
        display: block
    }

    .header .o-header .o-header__wrapper {
        display: none
    }
}