.ipseek-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .2rem;
    border: 1px solid rgba(100, 116, 139, .24);
    border-radius: 12px;
    background: rgba(255, 255, 255, .7);
}

.ipseek-language-switcher__item {
    width: 38px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 9px;
    opacity: .58;
    text-decoration: none;
    transition: opacity .15s ease, background .15s ease, border-color .15s ease, transform .15s ease;
}

.ipseek-language-switcher__item:hover,
.ipseek-language-switcher__item:focus-visible {
    opacity: 1;
    transform: translateY(-1px);
    outline: none;
    background: rgba(249, 115, 22, .08);
}

.ipseek-language-switcher__item.is-active {
    opacity: 1;
    border-color: rgba(249, 115, 22, .5);
    background: rgba(249, 115, 22, .14);
    box-shadow: inset 0 0 0 1px rgba(249, 115, 22, .08);
}

.ipseek-language-switcher__flag {
    width: 24px;
    height: 18px;
    display: block;
    object-fit: contain;
}

html[data-bs-theme="dark"] .ipseek-language-switcher,
html[data-user-theme="dark"] .ipseek-language-switcher {
    border-color: rgba(255, 255, 255, .14);
    background: rgba(15, 23, 42, .72);
}

/* Module 4.0 UAT corrective */
.ipseek-language-switcher__item { padding:0; text-align:center; }
.ipseek-language-switcher__flag { margin:0 auto; object-position:center center; }
