﻿/* ==========================================
   CONTENEDOR DEL MAPA
   CLASS: .hero-map-container
   ========================================== */

.hero-map-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    box-sizing: border-box;
    display: block;
    background-color: transparent;
}



.map-bg-grid {
    width: 100%;
    height: 100%;
}

.map-roads {
    stroke: #b9b9b9;
    stroke-width: 90;
}

/* Calles y Rondana */
.road-asphalt {
    stroke: #b9b9b9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.road-line {
    stroke: #f59e0b;
    stroke-width: 2;
    stroke-dasharray: 12 12;
}
