.stations-map-wrap {
    width: 100%;
    margin: 24px 0;
    font-family: inherit;
}

.stations-map-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr)) auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 12px;
}

.stations-map-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.stations-map-field input,
.stations-map-field select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 8px 10px;
    font: inherit;
    background: #fff;
}

.stations-map-reset {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 8px 14px;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    background: #222;
    color: #fff;
}

.stations-map-reset:hover,
.stations-map-reset:focus {
    opacity: .88;
}

.stations-map-count {
    margin: 8px 0 10px;
    font-size: 14px;
    font-weight: 600;
}

.stations-map {
    width: 100%;
    min-height: 560px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    z-index: 1;
}

.stations-map-empty {
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #f7f7f7;
    font-weight: 600;
}

.stations-map-popup h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.25;
}

.stations-map-popup p {
    margin: 4px 0;
    font-size: 14px;
    line-height: 1.35;
}

.stations-map-status {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: #e9f7ef;
    color: #176b36;
}
.stations-map-popup-actions a:first-child{
	margin-right:9px;
}
.stations-map-popup-actions{
	margin-top:8px;
}
.stations-map-status.is-planned {
    background: #fff3d7;
    color: #8a5a00;
}

@media (max-width: 1024px) {
    .stations-map-filters {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
}

@media (max-width: 640px) {
    .stations-map-filters {
        grid-template-columns: 1fr;
    }

    .stations-map {
        min-height: 440px;
    }
}
