html {
}

body {

}

input[type="text"], input[type="password"], input[type="date"], input[type="email"], input[type="tel"], select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

form {
    margin-top: 0;
}

/* custom disabled */
.disabled {
    opacity: .25;
    cursor: not-allowed;
    pointer-events: none;
}

/* custom hidden */
.hidden {
    display: none
}

/* custom button */
.button:hover {
    cursor: pointer;
}

/* modal */
.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color:;
    --bs-modal-bg: #fff;
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: 0.5rem;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-modal-inner-border-radius: calc(0.5rem - 1px);
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 1px;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg:;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 1px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
    max-width: 640px !important;
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none;
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2);
}

    .modal-dialog-scrollable .modal-content {
        max-height: 100%;
        overflow: hidden;
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto;
    }

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
    padding-left: 5px;
    padding-right: 5px;
}

.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}

    .modal-backdrop.fade {
        opacity: 0;
    }

    .modal-backdrop.show {
        opacity: var(--bs-backdrop-opacity);
    }

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}

    .modal-header .btn-close {
        padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
        margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
    }

.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}

    .modal-footer > * {
        margin: calc(var(--bs-modal-footer-gap) * 0.5);
    }

@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }

    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }

    .modal-sm {
        --bs-modal-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px;
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

    .modal-fullscreen .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen .modal-header,
    .modal-fullscreen .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen .modal-body {
        overflow-y: auto;
    }

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-sm-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-sm-down .modal-header,
        .modal-fullscreen-sm-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-sm-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-md-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-md-down .modal-header,
        .modal-fullscreen-md-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-md-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-lg-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-lg-down .modal-header,
        .modal-fullscreen-lg-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-lg-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-xl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-xl-down .modal-header,
        .modal-fullscreen-xl-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-xl-down .modal-body {
            overflow-y: auto;
        }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

        .modal-fullscreen-xxl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0;
        }

        .modal-fullscreen-xxl-down .modal-header,
        .modal-fullscreen-xxl-down .modal-footer {
            border-radius: 0;
        }

        .modal-fullscreen-xxl-down .modal-body {
            overflow-y: auto;
        }
}

.modal-header .btn-close {
    margin: 0;
}

.btn-close {
    background-color: transparent;
    position: relative;
    border: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

    .btn-close:before, .btn-close:after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 90%;
        height: 2px;
        background-color: #002633;
    }

    .btn-close:focus-visible {
        border-color: #fff;
        -webkit-box-shadow: 0px 0px 0px 4px rgba(0, 38, 51, 0.7);
        box-shadow: 0px 0px 0px 4px rgba(0, 38, 51, 0.7);
        outline: 0;
    }

    .btn-close:before {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .btn-close:after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

/* modal overrides */
.modal-header {
    padding-top: 15px !important;
}

.modal-content {
    padding: 0 10px 25px 25px !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

/* custom map */
.map-custom {
    height: 100%;
    min-height: 513px;
}

.map-site-info {
    line-height: 18px;
    font-weight: 400;
}

/* overrides */
body.xl .emailDropdown .emailBtn, body.lg .emailDropdown .emailBtn, body.md .emailDropdown .emailBtn, body.sm .emailDropdown .emailBtn {
    white-space: nowrap;
}

.sub_footer_content {
    grid-template-columns: unset;
}

/* modal scrollbar fix */
body.modal-open {
    overflow: hidden;
    padding-right: 0 !important;
}

/* rtl overrides */
[dir="rtl"], [dir="rtl"] * {
    text-align: right;
}

    [dir="rtl"] .menu_wrapper {
        margin-right: 25px;
    }

    [dir="rtl"] .language_dropdown {
        border-left: unset;
        border-right: 1px solid #374A9B;
        padding-right: 15px;
    }

    [dir="rtl"] .menu_btn .menu_text {
        position: relative;
        top: 3px;
        left: 5px;
    }

    [dir="rtl"] .primary_header ul.primary_nav.dropdown_menu {
        left: 0;
        right: unset;
    }

    [dir="rtl"] .styled_list > li {
        margin-right: 25px;
    }

    [dir="rtl"] ul li:before {
        left: unset;
        right: -25px;
    }

    [dir="rtl"] ul li ul li {
        right: 25px;
    }

        [dir="rtl"] ul li ul li:before {
            left: unset;
        }

    [dir="rtl"] .footnote_list > li {
        margin-right: 14px;
    }

    [dir="rtl"] .split_container .image img {
        transform: scaleX(-1);
    }

    [dir="rtl"] .decoration .decoration_about {
        left: 0;
        right: unset;
        transform: scaleX(-1);
    }

    [dir="rtl"] .box_section .box_item_wrapper .box_item .box_header .box_image {
        margin-left: 20px;
    }

    [dir="rtl"] .box_item_wrapper.full_image .box_item .box_header .box_image img {
        transform: scaleX(-1);
    }

    [dir="rtl"] .decoration .decoration_corner_sm.corner_tl {
        left: unset;
        right: 0;
        transform: scaleX(-1);
    }

    [dir="rtl"] .decoration .decoration_corner.corner_br {
        left: 0;
        right: unset;
        transform: scaleX(-1);
    }

    [dir="rtl"] body.lg section.about_medicine img, [dir="rtl"] body.xl section.about_medicine img {
        transform: scale(1.3) translateX(20px) scaleX(-1);
    }

    [dir="rtl"] body.xl section.about_medicine img {
        position: relative;
        left: 315px;
    }

    [dir="rtl"] body.lg section.about_medicine img {
        position: relative;
        left: 275px;
    }

    [dir="rtl"] .decoration .decoration_corner.corner_tl {
        left: unset;
        right: 0;
        transform: scaleY(-1);
    }

    [dir="rtl"] .split_container .odd .split_content {
        margin-right: auto;
    }

    [dir="rtl"] .zip_input_wrapper button {
        margin-right: 10px;
    }

    [dir="rtl"] .map_legend .location_icon {
        margin-right: 25px;
        padding-left: 5px;
    }

    [dir="rtl"] section.about_condition .image_content img {
        transform: scaleX(-1);
    }

    [dir="rtl"] body.lg section.about_condition .image_content img {
        position: relative;
        right: -100px
    }

    [dir="rtl"] body.xl section.about_condition .image_content img {
        position: relative;
        right: -150px
    }

    [dir="rtl"] .decoration .decoration_faq {
        left: 0;
        right: unset;
        transform: scaleX(-1);
    }

    [dir="rtl"] body.lg .primary_footer .footer_nav ul li, [dir="rtl"] body.xl .primary_footer .footer_nav ul li {
        margin: 0 30px 0 0;
    }

    [dir="rtl"] body.lg .primary_footer .footer_nav p, [dir="rtl"] body.xl .primary_footer .footer_nav p {
        float: left;
    }

    [dir="rtl"] .accordion-item .accordion-header .accordion-button .accordion-icon {
        margin-left: 15px;
        margin-right: 0;
    }

    [dir="rtl"] .accordion-item .accordion-header .accordion-button {
        text-align: right;
    }

    [dir="rtl"] .primary_footer .logo_wrapper a img {
        padding-left: 25px;
    }

    [dir="rtl"] .primary_footer .logo_wrapper > div:nth-child(2) {
        border-left: unset;
        border-right: 1px solid #fff;
        padding-right: 25px;
    }

    [dir="rtl"] .emailDropdownBtn .chevron {
        margin-right: 8px;
    }

    [dir="rtl"] .emailDropdown {
        left: unset;
        right: 0;
    }

    [dir="rtl"] .emailBtn {
        text-align: unset;
    }

    [dir="rtl"] section.for_physicians_about .image_wrapper img {
        left: 0;
        right: unset;
        transform: scaleX(-1);
    }

    [dir="rtl"] body.lg section.for_physicians_about .image_wrapper, [dir="rtl"] body.xl section.for_physicians_about .image_wrapper {
        float: left;
        left: -175px;
    }

    @media (min-width: 992px) {
        [dir="rtl"] section.eligibility_criteria .image_wrapper {
            left: 0;
            right: unset;
            transform: scaleX(-1);
        }
    }

/* south korea overrides*/
html[lang="ko"] #CybotCookiebotDialog * {
    font-family: "Gothic A1", sans-serif !important;
}

html[lang="ko"] #CybotCookiebotDialog h2 {
    font-weight: 800;
}

body.region-ko-kr *:not(.fa):not(.fas):not(.far):not(.fab) {
    font-family: "Gothic A1", sans-serif;
}

body.region-ko-kr h1, body.region-ko-kr h2, body.region-ko-kr h3, body.region-ko-kr h4, body.region-ko-kr h5, body.region-ko-kr h6, body.region-ko-kr .h1, body.region-ko-kr .h2, body.region-ko-kr .h3, body.region-ko-kr .h4, body.region-ko-kr .h5, body.region-ko-kr .h6 {
    font-weight: 800;
}

body.region-ko-kr .em a, body.region-ko-kr em a {
    font-weight: 800;
}

body.region-ko-kr .accordion-item .accordion-header .accordion-button {
    font-weight: 800;
}

body.region-ko-kr .box_item_wrapper b {
    font-weight: 800;
}

body.region-ko-kr .btn:not(.country_select .btn) {
    padding: 12px 20px 7px;
}

/* hong kong overrides*/
html[lang="zh-HK"] #CybotCookiebotDialog * {
    font-family: "Noto Sans SC", sans-serif !important;
}

html[lang="zh-HK"] *:not(.fa):not(.fas):not(.far):not(.fab) {
    font-family: "Noto Sans SC", sans-serif;
}

html[lang="zh-HK"] #CybotCookiebotDialog h2 {
    font-weight: 800;
}

html[lang="zh-HK"] h1, html[lang="zh-HK"] h2, html[lang="zh-HK"] h3, html[lang="zh-HK"] h4, html[lang="zh-HK"] h5, html[lang="zh-HK"] h6, html[lang="zh-HK"] .h1, html[lang="zh-HK"] .h2, html[lang="zh-HK"] .h3, html[lang="zh-HK"] .h4, html[lang="zh-HK"] .h5, html[lang="zh-HK"] .h6 {
    font-weight: 800;
}

html[lang="zh-HK"] .em a, html[lang="zh-HK"] em a {
    font-weight: 800;
}

html[lang="zh-HK"] .accordion-item .accordion-header .accordion-button {
    font-weight: 800;
}

html[lang="zh-HK"] .box_item_wrapper b {
    font-weight: 800;
}

html[lang="zh-HK"] .zip_search, html[lang="en-HK"] .zip_search {
    display: none;
}

body.country-hk .primary_header .logo {
    display: inline-flex;
    max-width: 200px;
}

    body.country-hk .primary_header .logo img {
        width: 200px;
    }

    body.country-hk .primary_header .logo:first-child a img {
        width: 175px;
    }

    body.country-hk .primary_header .logo:last-child a img {
        position: relative;
        top: 5px;
    }

body.country-hk.xs .primary_header .logo:last-child a img, body.country-hk.sm .primary_header .logo:last-child a img {
    position: relative;
    left: -18px;
}

/* china chinese overrides*/
html[lang="zh-CN"] #CybotCookiebotDialog * {
    font-family: "Noto Sans SC", sans-serif !important;
}

html[lang="zh-CN"] *:not(.fa):not(.fas):not(.far):not(.fab) {
    font-family: "Noto Sans SC", sans-serif;
}

html[lang="zh-CN"] #CybotCookiebotDialog h2 {
    font-weight: 800;
}

html[lang="zh-CN"] h1, html[lang="zh-CN"] h2, html[lang="zh-CN"] h3, html[lang="zh-CN"] h4, html[lang="zh-CN"] h5, html[lang="zh-CN"] h6, html[lang="zh-CN"] .h1, html[lang="zh-CN"] .h2, html[lang="zh-CN"] .h3, html[lang="zh-CN"] .h4, html[lang="zh-CN"] .h5, html[lang="zh-CN"] .h6 {
    font-weight: 800;
}

html[lang="zh-CN"] .em a, html[lang="zh-CN"] em a {
    font-weight: 800;
}

html[lang="zh-CN"] .accordion-item .accordion-header .accordion-button {
    font-weight: 800;
}

html[lang="zh-CN"] .box_item_wrapper b {
    font-weight: 800;
}

/* switzerland german overrides */
html[lang="de-CH"] body.xs .box_header_content h3 {
    font-size: 22px;
}

@media only screen and (max-width: 349px) {
    html[lang="de-CH"] body.xs .box_header_content h3 {
        font-size: 18px;
    }
}

/* saudi arabia overrides */
html[lang="ar-SA"] #CybotCookiebotDialog * {
    font-family: "Alexandria", sans-serif !important;
}

html[lang="ar-SA"] *:not(.fa):not(.fas):not(.far):not(.fab) {
    font-family: "Alexandria", sans-serif;
}

html[lang="ar-SA"] #CybotCookiebotDialog h2 {
    font-weight: 600;
}

html[lang="ar-SA"] h1, html[lang="ar-SA"] h2, html[lang="ar-SA"] h3, html[lang="ar-SA"] h4, html[lang="ar-SA"] h5, html[lang="ar-SA"] h6, html[lang="ar-SA"] .h1, html[lang="ar-SA"] .h2, html[lang="ar-SA"] .h3, html[lang="ar-SA"] .h4, html[lang="ar-SA"] .h5, html[lang="ar-SA"] .h6 {
    font-weight: 600;
}

html[lang="ar-SA"] .em a, html[lang="ar-SA"] em a {
    font-weight: 600;
}

html[lang="ar-SA"] .accordion-item .accordion-header .accordion-button {
    font-weight: 600;
}

html[lang="ar-SA"] .box_item_wrapper b {
    font-weight: 600;
}

/* singapore chinese overrides*/
html[lang="zh-SG"] #CybotCookiebotDialog * {
    font-family: "Noto Sans SC", sans-serif !important;
}

html[lang="zh-SG"] *:not(.fa):not(.fas):not(.far):not(.fab) {
    font-family: "Noto Sans SC", sans-serif;
}

html[lang="zh-SG"] #CybotCookiebotDialog h2 {
    font-weight: 800;
}

html[lang="zh-SG"] h1, html[lang="zh-SG"] h2, html[lang="zh-SG"] h3, html[lang="zh-SG"] h4, html[lang="zh-SG"] h5, html[lang="zh-SG"] h6, html[lang="zh-SG"] .h1, html[lang="zh-SG"] .h2, html[lang="zh-SG"] .h3, html[lang="zh-SG"] .h4, html[lang="zh-SG"] .h5, html[lang="zh-SG"] .h6 {
    font-weight: 800;
}

html[lang="zh-SG"] .em a, html[lang="zh-SG"] em a {
    font-weight: 800;
}

html[lang="zh-SG"] .accordion-item .accordion-header .accordion-button {
    font-weight: 800;
}

html[lang="zh-SG"] .box_item_wrapper b {
    font-weight: 800;
}

/* global overrides */
.decoration .decoration_corner.corner_br {
    pointer-events: none;
}

/* japan japanese overrides*/
html[lang="ja-JP"] #CybotCookiebotDialog * {
    font-family: "Noto Sans SC", sans-serif !important;
}

html[lang="ja-JP"] *:not(.fa):not(.fas):not(.far):not(.fab) {
    font-family: "Noto Sans SC", sans-serif;
}

html[lang="ja-JP"] #CybotCookiebotDialog h2 {
    font-weight: 800;
}

html[lang="ja-JP"] h1, html[lang="ja-JP"] h2, html[lang="ja-JP"] h3, html[lang="ja-JP"] h4, html[lang="ja-JP"] h5, html[lang="ja-JP"] h6, html[lang="ja-JP"] .h1, html[lang="ja-JP"] .h2, html[lang="ja-JP"] .h3, html[lang="ja-JP"] .h4, html[lang="ja-JP"] .h5, html[lang="ja-JP"] .h6 {
    font-weight: 800;
}

html[lang="ja-JP"] .em a, html[lang="ja-JP"] em a {
    font-weight: 800;
}

html[lang="ja-JP"] .accordion-item .accordion-header .accordion-button {
    font-weight: 800;
}

html[lang="ja-JP"] .box_item_wrapper b {
    font-weight: 800;
}

/* germany german overrides */
html[lang="de-DE"] body.xs .box_header_content h3 {
    font-size: 22px;
}

@media only screen and (max-width: 349px) {
    html[lang="de-DE"] body.xs .box_header_content h3 {
        font-size: 18px;
    }
}

/* austria german overrides */
html[lang="de-AT"] body.xs .box_header_content h3 {
    font-size: 22px;
}

@media only screen and (max-width: 349px) {
    html[lang="de-AT"] body.xs .box_header_content h3 {
        font-size: 18px;
    }
}

/* protocol logos */
.logos img {
    width: 100px;
    margin-right: 15px;
    margin-bottom: 5px;
}