.language-switcher-btn {
    width: 24px;
    text-align: center;
    z-index: 10;
}

.language-switcher {
    margin-left: 40px;
}
.language-switcher-btn.active {
    color: #fff;
    z-index: 1;
}
.language-switcher__wrap {
    position: relative;
    border: 1px solid #e6e6e6;
    border-radius: 30px;
    height: 32px;
    padding: 4px;
    display: flex;
    gap: 8px;
    width: 66px;
    align-items: center;
    justify-content: center;
    p {
        z-index: 1;
        color: #000;
        width: 24px;
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-weight: 800;
        font-size: 12px;
        line-height: 0;
        cursor: pointer;
    }
}
.language-switcher__circle{
    transition: all .3s;
    position: absolute;
    width: 24px;
    height: 24px;
    left: 4px;
    top: 3px;
    background-color: #000;
    border-radius: 50%;
    transform: translateX(0%);
    pointer-events: none;
}
.language-switcher__circle.active {
    transition: all .3s;
    transform: translateX(135%);

}
.language-switcher--mob {
    z-index: 1;
    display: none;
}
@media screen and (max-width: 767px){
    .language-switcher {
        display: none;
    }
    .header__menu .language-switcher {
        display: block;
    }
    .language-switcher {
        margin-left: 0;
    }
    .language-switcher__wrap {
        width: 66px;
    }
}