.lang-switcher {
    padding-right: 106px;
    position: relative;
}
.lang-switcher:hover .lang-switcher__options {
    visibility: visible;
    display: flex;
}
.lang-switcher:hover .lang-switcher__selected .arrow {
    transform: rotate(180deg);
}

.lang-switcher__selected {
    width: 120px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.lang-switcher__selected .arrow {
    transition: .3s transform;
}

.lang-switcher__selected .lang-switcher__name {

}
.lang-switcher__options {
    padding: 20px;
    visibility: hidden;
    display: none;
    position: absolute;
    top: 100%;
    width: 120px;
    flex-direction: column;
    gap: 20px;

    border-radius: 0 0 4px 4px;
    background: #F7F9FD;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.10), 0 3px 3px 0 rgba(0, 0, 0, 0.05);
}
.lang-switcher__option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switcher__option.active {
    cursor: default;
    pointer-events: none;
    position: relative;
}


.lang-switcher__option.active:before {
    content: '';
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='10' viewBox='0 0 13 10' fill='none'%3E%3Cpath d='M1 5L4.5 8.5L12 1' stroke='%23313538' stroke-width='1.5'/%3E%3C/svg%3E");
    width: 13px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.lang-switcher__name {
    color: rgba(49, 53, 56, 1)
}

.wgl-sticky-header.header_sticky_shadow.sticky_active .lang-switcher__selected {
    height: 100px;
}

.wgl-sticky-header.header_sticky_shadow.sticky_active .lang-switcher__options {
    background-color: rgb(255, 255, 255);
}

@media (max-width: 1200px) {
    .wgl-mobile-header .position_right {
        display: flex;
        align-items: center;
    }
    .lang-switcher {
        height: 100%;
        padding-right: 0;
    }
    .lang-switcher__selected {
        height: 90px;
    }
    .lang-switcher__options {
        background: rgba(252,252,252,1);
    }
}