/**
 * Smarter Maps — Map styles.
 */

.smap-map {
    width: 100%;
    min-height: 320px;
    background: #f0f0f1;
    border: 1px solid #c3c4c7;
}

.smap-map--full {
    height: 400px;
}

@media screen and (max-width: 768px) {
    .smap-map--full {
        height: 200px;
    }
}

.smap-map--widget {
    height: 300px;
}

.smap-map-layout {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 16px;
    margin-top: 12px;
}

@media screen and (max-width: 960px) {
    .smap-map-layout {
        grid-template-columns: 1fr;
    }
}

.smap-map-filters {
    background: #fff;
    border: 1px solid #c3c4c7;
    padding: 10px 12px;
    max-height: 600px;
    overflow-y: auto;
    font-size: 12px;
}

.smap-filter-group {
    border: 0;
    border-top: 1px solid #f0f0f1;
    padding: 8px 0;
    margin: 0;
}

.smap-filter-group:first-child {
    border-top: 0;
}

.smap-filter-group legend {
    font-weight: 600;
    padding: 0;
    margin-bottom: 4px;
    color: #1d2327;
}

.smap-filter-group label {
    display: block;
    line-height: 1.6;
    color: #50575e;
}

.smap-filter-group input[type="checkbox"] {
    margin-right: 4px;
}

.leaflet-control-container {
    display: none;
}

.smap-cluster {
    background: transparent;
    border: 0;
}

.smap-cluster-inner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d2327;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6);
}
