#map {
    flex-direction: column;
    align-items: center;
    gap: 3em
}
#map .container {
    gap: 1em;
}
#map .list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));;
    gap: 1em;
}
#map .list .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5em;
    background: #f9f9f7;
    border: 1px solid #e8e8e8;
    border-radius: var(--border-radius);
    padding: 2em;
}
#map .list .item p, #map .list .item a {
    color: #585858;
    font-size: 15px;
    font-weight: 500;
}
#map .list .item p {
    display: flex;
    gap: 0.5em;
}
#map .list .item p b {
    color: var(--colorMain);
    font-weight: 500;
}
#map .list .item h3 {
    font-size: 20px;
    font-weight: 700;
}
#map .list .item img {
    width: 15px;
}
#map .list .item .line {
    width: 100%;
    border: 1px solid rgba(221, 221, 221, 1);
}
#map .list .item .times,
#map .list .item .phone {
    align-items: flex-start;
    display: flex;
    gap: 0.5em;
}
#map .list .item button {
    background-color: var(--colorMain);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    padding: 1em;
    border: 0;
}
#map .list .item button:hover {
    cursor: pointer;
    background-color: var(--colorMainHover);
}

/* Shadow and map container */
#map .map-container {
    overflow: hidden;
    height: 450px;
    width: 100%;
}
#map .map-container .top,
#map .map-container .bottom {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 1px;
    box-shadow: 0px 10px 30px 1px rgba(0, 0, 0, 1);
}
#map .map-container .bottom {
    box-shadow: 0px -10px 30px 1px rgba(0, 0, 0, 1);
}
#map-container {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 450px;
    background-color: #ddd;
}
#map-container .ymaps3x0--controls {
    flex-wrap: wrap;
    align-items: center;
}

@media (min-width: 1441px) {
}
@media (max-width: 1024px) {
}
@media (max-width: 800px) {
}
@media (max-width: 600px) {
}
@media (max-width: 450px) {
}
@media (max-width: 380px) {
}