.city-changer {
    position: relative;
}
.city-changer__value {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    padding-right: 18px;
    position: relative;
}
.city-changer__value::before{
    content: '';
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_315_139)'%3E%3Cpath d='M5.5575 6.4425L9 9.8775L12.4425 6.4425L13.5 7.5L9 12L4.5 7.5L5.5575 6.4425Z' fill='%23D9012A'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_315_139'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    cursor: pointer;
}
.city-changer__list {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    border: 1px solid #F1F1F1;
    border-radius: 5px;
    background: #fff;
    z-index: 1;
}
.city-changer__list.-active{
    display: block;
}
.city-changer__item {
    padding: 10px 18px;
    border-bottom: 1px solid #F1F1F1;
    cursor: pointer;
    transition: all .2s ease;
}
.city-changer__item:hover{
    background: #F1F1F1;
}
.city-changer__item:last-child{
    border-bottom: none;
}