/* Country popup */
#popup-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 999;
}
#popup-background .popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 1rem;
    max-width: 90%;
    border: 2px solid var(--e-global-color-primary);
}

/* Country switcher */
#country-switcher {
    position: relative;
    width: 40px;
}
#country-switcher > a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#country-switcher .flag {
    width: 2.5rem;
}
#country-switcher .countries {
    top: calc(100% - 10px);
    position: absolute;
    display: none;
    flex-direction: column;
    row-gap: 0.125rem;
    width: auto;
}
#country-switcher:hover .countries {
    display: flex;
}
#country-switcher .countries a {
    padding: 0;
}
#country-switcher .countries a.elementor-item-anchor {
    display: none;
}