/*@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");*/

.awt-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    max-width: 1280px;
}

.default-theme {
    font-family: "Montserrat", sans-serif;
}

awt-header {
    position: relative;
    background-color: var(--cds-nav-main-bg);
    height: 4rem;
    border: none;
    --cds-nav-main-bg: #002f6c;
    --cds-nav-second-bg: #59cbe8;
    --cds-nav-third-bg: #f1ece8;
    --cds-nav-main: #ffffff;
    --cds-nav-main-active: #59cbe8;
    --cds-nav-main-bdr-hover: #59cbe8;
    --cds-nav-main-bdr-active: #59cbe8;
    --cds-nav-main-bg-hover: rgba(0, 132, 213, 0.1882352941);
    --cds-nav-main-bg-active: #002f6c;
    --cds-nav-second: #002f6c;
    --cds-nav-second-active: #002f6c;
    --cds-nav-second-bdr-hover: #002f6c;
    --cds-nav-second-bdr-active: transparent;
    --cds-nav-second-bg-hover: #ffffff;
    --cds-nav-second-bg-active: #f1ece8;
    --cds-nav-third: #002f6c;
    --cds-nav-third-active: #ffffff;
    --cds-nav-third-bdr-hover: #002f6c;
    --cds-nav-third-bdr-active: transparent;
    --cds-nav-third-bg-hover: rgba(140, 130, 121, 0.1882352941);
    --cds-nav-third-bg-active: #002f6c;
    --cds-nav-font-size: 16px;
}

/* Mobile menu */
awt-side-nav {
    height: 100%;
    left: unset;
    right: 0;
    background-color: var(--cds-sidenav-main-bg);
    box-shadow: rgba(0, 0, 0, 0.2509803922) 0px 3px 8px;
    --cds-sidenav-main-bg: #f1ece8;
    --cds-sidenav-second-bg: #ffffff;
    --cds-sidenav-third-bg: #f1f0e0;
    --cds-sidenav-main: #5a5756;
    --cds-sidenav-main-active: #002f6c;
    --cds-sidenav-main-bdr-expanded: #8c8279;
    --cds-sidenav-main-bg-hover: #d7d2cb;
    --cds-sidenav-main-bg-active: transparent;
    --cds-sidenav-font-size: 16px;
}

    awt-side-nav awt-side-nav-items {
        overflow-y: auto;
    }

awt-side-nav-items {
    --cds-sidenav-main-bg: #f1ece8;
    --cds-sidenav-second-bg: #ffffff;
    --cds-sidenav-third-bg: #f1f0e0;
    --cds-sidenav-main: #5a5756;
    --cds-sidenav-main-active: #002f6c;
    --cds-sidenav-main-bdr-expanded: #8c8279;
    --cds-sidenav-main-bg-hover: #d7d2cb;
    --cds-sidenav-main-bg-active: transparent;
    --cds-sidenav-font-size: 16px;
}

@media (min-width: 1056px) {
    awt-side-nav-items {
        display: none;
    }
}

@media (min-width: 1056px) {
    awt-side-nav {
        display: none;
    }
}

.awt-wrapper-header {
    justify-content: space-between;
    align-items: stretch;
}

.awt-wrapper-nav, .awt-wrapper-actions {
    display: flex;
}

.awt-language-selector {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

@media (max-width: 1056px) {
    .awt-language-selector {
        display: none;
    }
}

.awt-language-selector-divider {
    width: 2px;
    height: 15px;
    margin: 0 9px;
    background-color: var(--cds-nav-main);
}

.awt-language-selector-link {
    font-size: 12.8px;
    font-weight: 300;
    color: var(--cds-nav-main);
    text-decoration: none;
    text-transform: uppercase;
}

    .awt-language-selector-link.active {
        font-weight: 600;
    }

    .awt-language-selector-link:not(.active):hover {
        border-bottom: 1px solid var(--cds-nav-main);
    }

.awt-language-selector.sidenav {
    padding: 23px;
}

@media (max-width: 1056px) {
    .awt-language-selector.sidenav {
        display: flex;
    }
}

.awt-language-selector.sidenav .awt-language-selector-divider {
    background-color: var(--cds-sidenav-main);
}

.awt-language-selector.sidenav .awt-language-selector-link {
    color: var(--cds-sidenav-main);
}

    .awt-language-selector.sidenav .awt-language-selector-link:not(.active):hover {
        border-bottom: 1px solid var(--cds-sidenav-main);
    }

.awt-footer {
    --cds-footer-main-color: #ffffff;
    --cds-footer-main-bg: #002f6c;
    --cds-footer-secondary-color: #FFA300;
    bottom: 0;
    background-color: var(--cds-footer-main-bg);
    padding: 15px 15px 40px;
}

.awt-footer-sections {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    color: var(--cds-footer-main-color);
}

    .awt-footer-sections:first-child {
        margin-bottom: 80px;
    }

@media (max-width: 1056px) {
    .awt-footer-sections:first-child {
        margin-bottom: 32px;
    }
}

@media (max-width: 1056px) {
    .awt-footer-logo {
        text-align: center;
        width: 100%;
        margin-bottom: 32px;
    }
}

.awt-footer-logo img {
    width: 144.67px;
}

.awt-footer-legal {
    font-size: 14px;
    text-align: right;
}

@media (max-width: 1056px) {
    .awt-footer-legal {
        text-align: center;
        width: 100%;
    }
}

.awt-footer-legal div {
    margin-bottom: 8px;
}

.awt-footer-legal-links, .awt-footer-legal-links a {
    text-decoration: none;
    color: var(--cds-footer-secondary-color);
}

.awt-footer-legal-inquiries a {
    color: var(--cds-footer-main-color);
}

#advanceMap {
    height: 400px;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
}

.pinTitle {
    color: black;
}

/* Map links component desktop */

.map-links {
    display: flex;
    grid-auto-rows: minmax(100px, auto);
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    margin: auto;
    padding: 24px 32px 24px 32px;
}

.map-title {
    color: var(--primary-002-f-6-c, #002F6C);
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    width: 1000px;
}

.map-link {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    align-self: stretch;
}

.map-link-sections {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    flex: 1 0 0;
    border-radius: 12px;
    border: 1px solid var(--Koselugo-DCE7ED, #DCE7ED);
    background: #EDF4FF;
}

.map-link-sections-modal {
    flex-direction: column;
    align-items: flex-end;
    gap: 48px;
}

.map-link-sections-modal-title {
    align-self: stretch;
    color: var(--primary-002-f-6-c, #002F6C);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
}

.map-link-sections-modal-description {
    align-self: stretch;
    color: var(--neutral-363532, #363532);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    width: 100%;
    line-height: 24px;
    /* 150% */
}

.map-link-sections-countries {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
}

.map-link-sections-row {
    display: flex;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    height: 40px;
}

.map-link-sections-row-flag {
    width: 24px;
    height: 16px;
}

.map-link-sections-row-country {
    display: flex;
    padding: 0px;
    align-items: center;
    flex: 1 0 0;
}

.map-link-sections-row-country-name {
    flex: 1 0 0;
    color: var(--neutral-363532, #363532);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.map-link-sections-row-country-language {
    flex: 1 0 0;
    color: var(--primary-002-f-6-c, #002F6C);
    text-align: right;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

    .map-link-sections-row-country-language a:link {
        text-decoration: none;
        color: var(--primary-002-f-6-c, #002F6C);
    }

    .map-link-sections-row-country-language a:visited {
        text-decoration: none;
        color: var(--primary-002-f-6-c, #002F6C);
    }

    .map-link-sections-row-country-language a:hover {
        text-decoration: none;
        color: var(--primary-002-f-6-c, #002F6C);
    }

    .map-link-sections-row-country-language a:active {
        text-decoration: none;
        color: var(--primary-002-f-6-c, #002F6C);
    }

/* Map links component mobile */
@media all and (max-width: 1056px) {

    .map-links {
        position: relative;
        display: block;
        box-sizing: border-box;
        width: 100%;
        padding: 0px;
    }

    .map-title {
        color: var(--primary-002-f-6-c, #002F6C);
        font-family: Montserrat;
        font-size: 30px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        margin-bottom: 20px;
        margin-top: 10px;
        width: 100%;
    }

    .map-link {
        display: flex;
        align-items: flex-start;
        gap: 48px;
        align-self: stretch;
        padding-bottom: 20px;
        width: 100%;
    }

    .map-link-sections {
        margin: 0px;
        max-width: 1056px;
        position: relative;
        display: block;
        box-sizing: border-box;
        width: auto;
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
        flex: 1 0 0;
        border-radius: 12px;
        border: 1px solid var(--Koselugo-DCE7ED, #DCE7ED);
        background: #EDF4FF;
    }

    .map-link-sections-modal {
        width: auto;
        flex-direction: column;
        align-items: flex-end;
        gap: 48px;
    }

    .map-link-sections-modal-title {
        align-self: stretch;
        color: var(--primary-002-f-6-c, #002F6C);
        font-family: Montserrat;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        max-width: 400px;
        line-height: 28px;
        /* 140% */
    }

    .map-link-sections-modal-description {
        position: relative;
        display: block;
        box-sizing: border-box;
        width: 100%;
        align-self: stretch;
        color: var(--neutral-363532, #363532);
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        max-width: 1056px;
        line-height: 24px;
        /* 150% */
    }

    .map-link-sections-countries {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
    }

    .map-link-sections-row {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        align-self: stretch;
        height: 40px;
    }

    .map-link-sections-row-flag {
        width: 24px;
        height: 16px;
    }

    .map-link-sections-row-country {
        display: flex;
        padding: 0px;
        align-items: center;
        flex: 1 0 0;
    }

    .map-link-sections-row-country-name {
        flex: 1 0 0;
        color: var(--neutral-363532, #363532);
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        /* 150% */
    }

    .map-link-sections-row-country-language {
        flex: 1 0 0;
        color: var(--primary-002-f-6-c, #002F6C);
        text-align: right;
        font-family: Montserrat;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        min-width: 160px;
        line-height: 24px;
        /* 150% */
    }

        .map-link-sections-row-country-language a:link {
            text-decoration: none;
            color: var(--primary-002-f-6-c, #002F6C);
        }

        .map-link-sections-row-country-language a:visited {
            text-decoration: none;
            color: var(--primary-002-f-6-c, #002F6C);
        }

        .map-link-sections-row-country-language a:hover {
            text-decoration: none;
            color: var(--primary-002-f-6-c, #002F6C);
        }

        .map-link-sections-row-country-language a:active {
            text-decoration: none;
            color: var(--primary-002-f-6-c, #002F6C);
        }
}
