/* --------------------------------------------------------------- */

/* THE MAP CANVAS (MAPBOX) */
#map {

    z-index: 1;

    position: absolute;
    
    width: 100%;
    height: 100svh;

    top: 0;
    left: 0;
    bottom: 0;

}

/* --------------------------------------------------------------- */

/* REMOVE MAPBOX UI */
.mapboxgl-ctrl-bottom-right,
.mapboxgl-ctrl-bottom-left {
    display: none !important;
}

/* --------------------------------------------------------------- */

/* MOBILE */
@media only screen and (max-width: 560px) {

    #map {
        left: 0;
    }
}