.regions {
    position: relative;
}
.regions__current {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.regions__current-title {
    margin-right: 6px;
    font-size: 16px;
    color: #373C41;
    line-height: 1.1;
    border-bottom: 1px dashed rgba(55, 60, 65, 0.6);
    font-weight: 600;
    white-space: nowrap;
}

.regions__current-icon {
    width: 11px;
    height: 8px;
    background-image: url('/local/templates/bars/img/pic/arr_m.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.regions__current:hover .regions__current-title,
.regions__current.active .regions__current-title
{
    border-color: rgba(55, 60, 65, 1);
}
.regions__current:hover .regions__current-icon,
.regions__current.active .regions__current-icon {
    background-image: url('/local/templates/bars/img/pic/arr_m2.png');
    transform: rotate(180deg);
    width: 14px;
    height: 11px;
}
.regions__list {
    display: none;
    position: absolute;
    background-color: #F5F5F5;
    padding: 8px 22px;
    top: calc(100% + 4px);
    z-index: 9999;
}
.regions__item {
    line-height: 20px;
    padding: 4px 0;
    margin-bottom: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #373C41;
}
.regions__item:last-child {
    margin-bottom: 0;
}
.regions__item:hover {
    color: #418ABA;
}
