.storesPage {
    display: block;
    width: 100%;
    padding: 50px 0px;
}
.titleStore {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.titleStore::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 0;
    width: 80px;
    border-top: 2px solid #ccc;
}
.searchStores {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}
.searchStores__wrap {
    flex: 1 1 calc(100%/3 - 10px);
}
.listStores {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
}
.listStores .store {
    flex: 1 1 calc(100%/2 - 10px);
    max-width: calc((100% - 10px)/2);
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 0;
    border: 0;
    background: #f0f0f0;
    /* box-shadow: 0px 0px 5px 0px rgba(0,0,0,.1); */
}
.store__name {
    font-size: 20px;
    text-transform: uppercase;
}