.lang-switcher-toggle {
    position: relative;
    display: flex;
    align-items: center;
    width: 56px;
    height: 30px;
    padding: 0;
    background: white;
    border: var(--border-1-dark);
    border-radius: 30px;
    box-shadow: 2px 0 5px 0 #00000059 inset;
    cursor: pointer;
    box-sizing: border-box;
    transition: background 0.2s;
}

.lang-switcher-label {
    position: absolute;
    top: 50%;
    left: 1px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 26px;
    border: none;
    border-radius: 39px;
    font-size: var(--font-14);
    font-weight: 500;
    color: white;
    background: var(--dark-blue-gradient);
    transform: translateY(-50%);
    box-sizing: border-box;
    box-shadow: -2px 0 2px 0 #00000026;
    line-height: 1;
    transition: left 0.2s cubic-bezier(.4, 0, .2, 1), background 0.2s, color 0.2s;
}

.lang-switcher-toggle.ru .lang-switcher-label {
    left: 19px;
}

.lang-switcher-toggle:not(.ru) .lang-switcher-label {
    left: 2px;
}

@media (max-width: 480px) {
    .lang-switcher-toggle {
        position: absolute;
        right: 0;
    }
}