.sidebox-language-picker form {
    display: grid;
}

.sidebox-language-picker__option {
    width: 100%;
    padding: 0.7rem 0.8rem;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    color: #7f97aa;
    text-align: left;
    background: transparent;
    opacity: 0.65;
    transition: color 160ms ease, opacity 160ms ease, padding-left 160ms ease, background 160ms ease;
}

.sidebox-language-picker__option:first-child {
    border-top: 0;
}

.sidebox-language-picker__option:last-child {
    border-bottom: 0;
}

.sidebox-language-picker__option:hover,
.sidebox-language-picker__option:focus-visible {
    padding-left: 1.15rem;
    color: #baddf4;
    background: rgba(90, 152, 198, 0.08);
    opacity: 1;
}

.sidebox-language-picker__option--current {
    color: #baddf4;
    font-weight: 600;
    opacity: 1;
}
