/* 
 * https://stackoverflow.com/questions/14106687/how-do-i-change-the-default-cursor-in-leaflet-maps
 */
.leaflet-container.crosshair-cursor-enabled {
  cursor: crosshair;
}
.leaflet-container.wait-cursor-enabled {
  cursor: wait;
}
.leaflet-container.progress-cursor-enabled {
  cursor: progress;
}

