.global-shipping-list {
    min-height: 90%;
    max-height: 90%;
}
.global-popup-content details {
    border-bottom: 1px solid var(--color-grey-border);
    padding-bottom: var(--size-12);
    margin-bottom: var(--size-24);
}

a.country-list-item {
    padding: var(--size-12);transition: all var(--speed-slow) var(--motion-ease-in);
}

a.country-list-item:hover {
    font-weight: var(--font-weight-medium);background-color: var(--color-lightergrey);
}

a.country-list-item.current {
    background-color: var(--color-lightergrey);
}
.country-list-item-countryname {display:flex;gap:var(--size-8);align-items:center;text-transform:uppercase;}
.country-list-item-countryname svg {width: 16px;display: inline-block;vertical-align: middle;}
.destination-list-container {overflow-y: auto;position: relative;}

.destination-list-container.is-redirecting details {
    opacity: 0.3;
    pointer-events: none;
    transition: opacity var(--speed-slow) var(--motion-ease-in);
}

.redirect-message {
    position: fixed;top: 50%;left: 50%;
    transform: translate(-50%, -50%);z-index: var(--zindex-xxl);
    text-align: center;font-weight: var(--font-weight-medium);
    background-color: white;box-shadow: var(--shadow-l);
    padding: var(--size-16) var(--size-20);max-width: 80%;font-size: var(--font-size-r);
}

@media (max-width:767px) {
    a.country-list-item {padding:var(--size-12) 0;}
}