.shops__inner {
    width: 100%;
    display: flex;
}

.shops__list {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 25%;
}

.shops__map {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 75%;
    padding-left: 30px;
    height: 100%;
}

.shops__item {
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.5s;
}

.shops__item.active {
    transition: all 0.5s;
    background: #f6f6f6;
    padding: 8px 15px;
}
.shops__subtitle{
    margin-top: 10px;
}
.shops__name {
    font-weight: 500;
    text-decoration: underline;
    line-height: 150%;
    margin-bottom: 5px;
    transition: all 0.5s;
}

.shops__item:hover .shops__name {
    text-decoration: unset;
    transition: all 0.5s;
}

.shops__item.active .shops__name {
    text-decoration: unset;
    transition: all 0.5s;
}

.shops__address {
    line-height: 150%;
}

@media screen and (max-width: 1023px) {
    .shops__inner {
        flex-wrap: wrap;
    }

    .shops__map,
    .shops__list {
        flex-basis: 100%;
    }

    .shops__list {
    }

    .shops__map {
        padding-left: 0;
        height: 560px;
    }

}
@media screen and (max-width: 700px), (max-width: 850px) and (max-height: 500px){
       .shops__map {
        height: 350px;
    }
}
