.has-anchor-nav {
    scroll-padding-top: 100px; /* For brochure pages where there's sticky nav */
}

/* Header */
.header {
    padding-top: 10px;
    background-color: #70cbf4;
}

.header__content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 50px auto;
    align-items: center;
}

.logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
}

.search {
    display: flex;
    justify-content: center;
    grid-column: span 3;
    grid-row: 2;
    margin-top: 10px;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
}

.search--header {
    padding: 10px 20px;
    margin-right: -20px;
    margin-left: -20px;
    width: auto;
    background-color: #e8e8e8;
}

.search__input {
    width: 100%;
    padding: 12px 20px;
    color: #0a2a5e;
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

    .search__input::placeholder {
        color: #aaa;
    }

.search__submit {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 50px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: #0a2a5e;
}

.search--large .search__submit {
    width: 55px;
}

    .search--large .search__submit > svg {
        width: 22px;
        height: 22px;
    }

.search--large .search__input {
    max-width: 528px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1.8rem;
}

.nav {
    display: flex;
    color: #0a2a5e;
    text-transform: uppercase;
    font-family: "TUI-Bold", system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
    font-weight: normal;
    grid-column: 1;
    grid-row: 1;
}

.nav__item {
    display: none;
}

.nav__item--alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "TUI-Regular", system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
    font-weight: normal;
}

.nav__item-icon {
    width: 24px;
    height: 24px;
}

.nav__item-label {
    font-size: 1rem;
}

.header__menu-btn {
    grid-column: 3;
    grid-row: 1;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #70cbf4;
    z-index: 9;
    pointer-events: all;
    -webkit-transition: opacity 300ms ease;
    -moz-transition: opacity 300ms ease;
    -o-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
}

.is-menu-open {
    overflow: hidden;
}

    .is-menu-open .mobile-menu {
        opacity: 1;
        pointer-events: all;
    }

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .mobile-menu__content > * {
        border-top: 1px solid rgba(255,255,255,0.2);
        padding: 20px;
    }

.mobile-nav {
    flex-grow: 1;
    font-family: "TUI-Bold", system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
    font-weight: normal;
    text-transform: uppercase;
}

.mobile-nav__item {
    display: flex;
    padding: 8px 50px 8px 0;
    background: url(/assets/arrow-right.svg) no-repeat right 9px center;
    background-size: 11px 11px;
}

.mobile-menu .search {
    padding-right: 0;
    padding-left: 0;
}

.mobile-search, .mobile-contact {
    padding-top: 30px;
    padding-bottom: 30px;
}

.mobile-menu .mobile-search__heading {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.mobile-contact {
    text-align: center;
}

.mobile-contact__heading {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

/* Menu Icon */
.ss-menu-icon__icon {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 30px;
    height: 30px;
}

.ss-menu-icon__bar {
    position: absolute;
    overflow: visible;
    width: 24px;
    height: 2px;
    flex: 0 0 auto;
    border-radius: 1px;
    background-color: #0a2a5e;
    opacity: 1;
    transition: opacity 0.2s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ss-menu-icon__bar--1 {
    transform: translate3d(3px, 6px, 0);
}

.ss-menu-icon__bar--2 {
    transform: translate3d(3px, 14px, 0);
}

.ss-menu-icon__bar--3 {
    transform: translate3d(3px, 22px, 0);
}

.ss-menu-icon--6 .ss-menu-icon__bar {
    background: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 30px;
    transform: none;
}

    .ss-menu-icon--6 .ss-menu-icon__bar::before,
    .ss-menu-icon--6 .ss-menu-icon__bar::after {
        content: "";
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background: #0a2a5e;
        transform-origin: left center;
    }

    .ss-menu-icon--6 .ss-menu-icon__bar::before {
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
    }

.ss-menu-icon--6 .ss-menu-icon__bar--1::before {
    transform: translate3d(3px, 6px, 0);
}

.ss-menu-icon--6 .ss-menu-icon__bar--2::before {
    transform: translate3d(3px, 14px, 0);
}

.ss-menu-icon--6 .ss-menu-icon__bar--3::before {
    transform: translate3d(3px, 22px, 0);
}

.ss-menu-icon--6.is-open .ss-menu-icon__bar::before {
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.ss-menu-icon--6.is-open .ss-menu-icon__bar--1::before {
    transform: translate3d(3px, 6px, 0) scale(0, 1);
}

.ss-menu-icon--6.is-open .ss-menu-icon__bar--2::before {
    transform: translate3d(3px, 14px, 0) scale(0, 1);
}

.ss-menu-icon--6.is-open .ss-menu-icon__bar--3::before {
    transform: translate3d(3px, 22px, 0) scale(0, 1);
}

.ss-menu-icon--6 .ss-menu-icon__bar::after {
    transform: rotate(0);
    width: 0;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ss-menu-icon--6 .ss-menu-icon__bar--1::after {
    transform: translate3d(6.51472px, 6.51472px, 0px) rotate(45deg);
}

.ss-menu-icon--6 .ss-menu-icon__bar--2::after {
    display: none;
}

.ss-menu-icon--6 .ss-menu-icon__bar--3::after {
    transform: translate3d(6.51472px, calc(30px - 6.51472px), 0px) rotate(-45deg);
}

.ss-menu-icon--6.is-open .ss-menu-icon__bar::after {
    width: 24px;
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
}



/* Footer */
.top {
    display: flex;
    justify-content: center;
    padding: 35px;
    color: #70cbf4;
}

.top__link {
    display: flex;
    align-items: center;
    font-family: "TUI-Bold", system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
    font-weight: normal;
    font-size: 2rem;
}

.top__link-icon {
    margin-left: 10px;
}

.footer-info,
.footer-legals {
    margin: 30px 0 15px 0;
}

.footer-account-link {
    text-align: center
}

    .footer-account-link .nav__item-label {
        font-size: 2rem;
    }
/* lg */
@media (min-width: 992px) {
    .footer-account-link {
        text-align: initial;
    }
}

.footer-info__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .footer-info__layout > * + * {
        margin-top: 30px;
    }

.footer-info__help-heading {
    margin-bottom: -15px;
}

.footer-info__social {
    display: flex;
    align-items: center;
}

.social__link {
    padding-right: 7px;
    padding-left: 7px;
}

.footer-info__help-btn {
    font-family: "TUI-Regular", system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
    font-weight: normal;
    padding: 7px 30px;
    width: 210px;
}

.footer-info__text {
    order: 2;
}

.accreditations {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 25px;
}

.accreditations__link {
    flex-shrink: 0;
    padding-right: 25px;
    padding-left: 25px;
}

.footer-legals__layout {
    display: flex;
    flex-direction: column;
}

.footer-legals + .footer-legals {
    border-top: 1px solid #dcdcdc;
    padding-top: 30px;
}

.footer-text {
    color: #b9b9b9;
}

    .footer-text a:hover, .footer-account-link a:hover {
        text-decoration: underline;
    }


/* sm */
@media (min-width: 576px) {
}

/* md */
@media (min-width: 768px) {
}

/* lg */
@media (min-width: 992px) {
}

/* xl */
@media (min-width: 1100px) {
    .header {
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .header__content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header__menu-btn {
        display: none;
    }

    .nav__item {
        display: flex;
    }

        .nav__item + .nav__item {
            margin-left: 20px;
        }

    .nav__item--alt {
        flex-direction: row;
        align-items: center;
        margin-left: 15px;
        border-left: 1px solid #0a2a5e;
        padding-left: 15px;
    }

    .nav__item-icon {
        margin-right: 7px;
        width: 17px;
        height: 17px;
    }

    .nav__item-label {
        font-size: 1.6rem;
    }

    .search {
        margin: 0;
        padding: 0;
        background-color: transparent;
        width: auto;
    }

    .search__input {
        width: 330px;
    }

    .search--large .search__input {
        width: 528px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .search--large .search__submit {
        width: 65px;
    }

    .mobile-menu {
        display: none;
        pointer-events: none;
    }

    .footer-info__layout {
        display: grid;
        grid-template-columns: 1fr max-content max-content;
        column-gap: 50px;
    }

    .footer-info__logo {
        grid-row: 1 / span 2;
    }

    .footer-info__help-heading {
        grid-column: 3;
        grid-row: 1;
    }

    .footer-info__social {
        grid-column: 2;
        grid-row: 2;
    }

    .footer-info__help-btn {
        grid-column: 3;
        grid-row: 2;
    }

    .footer-info__text {
        order: initial;
    }

    .footer-legals__layout {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-direction: row;
    }

    .accreditations__link:last-child {
        padding-right: 0;
    }

    .accreditations {
        padding-bottom: 0;
    }

    .top {
        justify-content: flex-end;
        padding: 50px;
    }
}

/* xxl */
@media (min-width: 1400px) {
}

.classic-brochure-order {
    padding-top: 20px;
}