.switch-languages {
    position: relative;
    z-index: 10;
}

.switch-languages__head {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #E4623F;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #fff;
    position: relative;
    z-index: 2;
}

.switch-languages:hover .switch-languages__head {
    border: 1px solid #E4623F;
}

.switch-languages__dropdown {
    display: none;
    position: absolute;
    width: 34px;
    left: 0;
    top: 0;
    padding-top: 37px;
    background-color: #E4623F;
    border-radius: 34px;
    z-index: 1;
}

.switch-languages:hover .switch-languages__dropdown {
    display: block;
}

.switch-languages__item {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: white;
    display: flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #E4623F;
    border-radius: 50%;
}

.switch-languages__item:hover {
    color: #E4623F;
    background: white;
}
