.regions.regions--mobile {
    position: relative;
}
.regions--mobile .regions__current {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.regions--mobile .regions__current-title {
    margin-right: 0;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.regions--mobile .regions__current-icon {
    width: 16px;
    height: 19px;
    background-image: none;
    margin-right: 8px;
}
.regions--mobile .regions__current:hover .regions__current-title,
.regions--mobile .regions__current.active .regions__current-title
{
    border-color: rgba(255, 255, 255, 1);
}
.regions--mobile .regions__current:hover .regions__current-icon,
.regions--mobile .regions__current.active .regions__current-icon {
    background-image: none;
    transform: rotate(0deg);
    width: 16px;
    height: 19px;
}
.regions--mobile .regions__list {
    display: none;
    position: static;
    padding: 8px 0;
    background-color: transparent;
}
.regions--mobile .regions__item {
    line-height: 20px;
    padding: 4px 0;
    margin-bottom: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
}
.regions--mobile .regions__item:last-child {
    margin-bottom: 0;
}
.regions--mobile .regions__item:hover {
    color: #418ABA;
}
