.topnav-country-selector .menu-item {
    display: flex;
    align-items: center;
}

.topnav-country-selector .country-list__link {
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    line-height: 110%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-white);
}

@media screen and (min-width: 1201px) {
    .header-widget-area {
        height: 100%;
        position: relative;
    }

    .header-widget-area .widget_block {
        height: 100%;
    }

    .topnav-country-selector {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .topnav-country-selector .menu-item {
        display: flex;
        align-items: center;
        height: 100%;
        cursor: pointer;
    }

    .topnav-country-selector:hover:after {
        content: "\25BC";
        position: absolute;
        bottom: -18px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        color: var(--color-white);
        z-index: 100000;
    }

    .topnav-country-selector::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: -20px;
        right: 0;
        background: transparent;
    }

    .topnav-country-selector:hover > .sub-menu {
        display: flex;
        flex-direction: column;
    }

    .topnav-country-selector .sub-menu {
        position: absolute;
        top: calc(100% + 1px);
        min-height: calc(var(--vh, 1vh) * 100 - 55px);
        padding: 50px;
        width: 850px;
        right: -45px;
        display: none;
        flex-wrap: wrap;
        align-content: flex-start;
        gap: 25px;
        border-top-color: transparent;
        background-color: var(--color-turquoise);
    }

    .topnav-country-selector .sub-menu__title {
        font-style: normal;
        font-weight: 700;
        font-size: 65px;
        line-height: 110%;
        color: var(--color-white);
    }

    .topnav-country-selector .sub-menu__description {
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 150%;
        color: var(--color-white);
        margin-bottom: 10px;
    }

    .topnav-country-selector .sub-menu__country-list {
        display: flex;
        flex-flow: column wrap;
        row-gap: 25px;
        column-gap: 200px;
        height: 400px;
    }

    .topnav-country-selector .country-list__link a {
        color: inherit;
        text-decoration: none;
    }

    .topnav-country-selector .sub-menu .sub-menu__close--mobile {
        display: none;
    }
    .topnav-country-selector .country-list__link span {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    /* Sets the body to 100vh and overflow:hidden to make it impossible to scroll past the country selector on mobile */
    .topnav-country-selector--visible {
        height: 100vh;
        overflow: hidden;
    }

    .topnav-country-selector .sub-menu {
        position: absolute;
        top: 0;
        left: 0;
        display: none;
        padding: 25px 25px 25px 25px;
        width: 100vw;
        min-height: calc(var(--vh, 1vh) * 100);
        background-color: var(--color-turquoise);
    }

    .topnav-country-selector .sub-menu--expanded {
        display: flex;
        flex-flow: column nowrap;
        z-index: 10;
        height: 100dvh;
        overflow: scroll;
    }

    .topnav-country-selector .sub-menu .sub-menu__close--mobile {
        display: none;
        justify-content: flex-end;
        margin-bottom: 35px;
    }

    .topnav-country-selector .sub-menu--expanded .sub-menu__close--mobile {
        display: flex;
        cursor: pointer;
    }

    .topnav-country-selector .sub-menu__title {
        font-style: normal;
        font-weight: 700;
        font-size: 25px;
        line-height: 130%;
        color: var(--color-white);
        margin-bottom: 10px;
    }

    .topnav-country-selector .sub-menu__description {
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 130%;
        color: var(--color-white);
        margin-bottom: 50px;
    }

    .topnav-country-selector .sub-menu__country-list {
        display: flex;
        flex-flow: column nowrap;
        row-gap: 25px;
    }

    .topnav-country-selector .country-list__link a {
        display: flex;
        color: inherit;
        text-decoration: none;
    }

    .topnav-country-selector .country-list__link span {
        margin-left: auto;
        font-size: inherit;
        font-weight: inherit;
    }
}
