.repute-osm-deferred #houzez-properties-map {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(228, 232, 235, 0.96), rgba(246, 247, 248, 0.98)),
        repeating-linear-gradient(45deg, transparent 0 24px, rgba(116, 129, 140, 0.08) 24px 25px);
}

.repute-osm-deferred #houzez-properties-map::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    padding: 2rem;
    color: #4f5962;
    font-size: 0.875rem;
    text-align: center;
    content: 'Interactive map loads automatically';
}

.repute-osm-deferred #houzez-properties-map::after {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 2rem;
    height: 2rem;
    margin: -2.75rem 0 0 -1rem;
    border: 2px solid rgba(79, 89, 98, 0.25);
    border-top-color: #4f5962;
    border-radius: 50%;
    content: '';
    animation: repute-osm-wait 1s linear infinite;
}

@keyframes repute-osm-wait {
    to {
        transform: rotate(360deg);
    }
}