.our-geography.warehouse-map-layout {
    display: grid;
    grid-template-columns: minmax(300px, 31%) 1fr;
    width: calc(100% - 80px);
    max-width: 1360px;
    min-width: 0;
    min-height: 430px;
    column-gap: 0;
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
    border: 1px solid #e3e9e6;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(30, 53, 42, .09);
}

.warehouse-map-layout .our-geography_cities-wrapper {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: none;
    gap: 14px;
    padding: 28px 26px;
    border-radius: 0;
    background: #fff;
    box-shadow: 10px 0 26px rgba(34, 55, 45, .07);
}

.warehouse-map-layout .our-geography_header {
    margin: 0;
    color: #145c9e;
    font-size: clamp(25px, 2.1vw, 34px);
    line-height: 1.08;
}

.warehouse-map-layout .our-geography_intro {
    margin: 0 0 3px;
    color: #757d79;
    font-size: 14px;
    line-height: 1.45;
}

.warehouse-map-layout .our-geography_cities {
    counter-reset: warehouse;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.warehouse-map-layout .our-geography_warehouse {
    counter-increment: warehouse;
    border-radius: 9px;
    list-style: none;
    transition: background-color .18s ease;
}

.warehouse-map-layout .our-geography_warehouse-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 7px 8px 7px 36px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.warehouse-map-layout .our-geography_warehouse-button::before {
    content: counter(warehouse);
    position: absolute;
    top: 8px;
    left: 3px;
    display: grid;
    width: 22px;
    height: 22px;
    box-sizing: border-box;
    place-items: center;
    padding-bottom: 1px;
    border-radius: 50%;
    background: #1478f2;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.warehouse-map-layout .our-geography_warehouse:hover,
.warehouse-map-layout .our-geography_warehouse.is-active {
    background: #edf5ff;
}

.warehouse-map-layout .our-geography_warehouse-name {
    display: block;
    color: #313936;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.warehouse-map-layout .our-geography_warehouse-address {
    display: block;
    margin-top: 2px;
    color: #8a918e;
    font-size: 13px;
    line-height: 1.35;
}

.warehouse-map-layout .jvm-map-wrapper {
    display: block;
    width: auto;
    height: 100%;
    min-height: 430px;
    margin: 0;
    overflow: hidden;
}

.warehouse-map-shell,
.warehouse-yandex-map {
    width: 100%;
    height: 100%;
}

.warehouse-map-shell {
    position: relative;
    min-height: 430px;
    background: #eef5f0;
}

.warehouse-map-region,
.warehouse-map-legend {
    position: absolute;
    z-index: 500;
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 4px 16px rgba(30, 52, 42, .1);
}

.warehouse-map-region {
    top: 22px;
    left: 22px;
    padding: 8px 11px;
    color: #545c58;
    font-size: 19px;
    line-height: 1.12;
}

.warehouse-map-legend {
    right: 16px;
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: #4f5753;
    font-size: 13px;
}

.warehouse-map-legend i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1478f2;
}

.warehouse-yandex-map [class*="copyrights-pane"] {
    opacity: .8;
}

@media (max-width: 992px) {
    .our-geography.warehouse-map-layout {
        width: calc(100% - 32px);
    }
}

@media (max-width: 900px) {
    .our-geography.warehouse-map-layout {
        grid-template-columns: minmax(270px, 38%) 1fr;
    }
}

@media (max-width: 767px) {
    .our-geography.warehouse-map-layout {
        display: flex;
        min-height: 0;
        gap: 0;
    }

    .warehouse-map-layout .our-geography_cities-wrapper {
        width: 100%;
        padding: 23px 19px 17px;
        background: #fff;
        box-shadow: none;
    }

    .warehouse-map-layout .jvm-map-wrapper,
    .warehouse-map-layout .warehouse-map-shell {
        width: 100%;
        height: 335px;
        min-height: 335px;
        margin: 0;
    }

    .warehouse-map-region {
        top: 13px;
        left: 13px;
        font-size: 16px;
    }

    .warehouse-map-legend {
        right: 9px;
        bottom: 9px;
    }
}
