/* There doesn't seem to be an API-based way of changing the current location indicator on the map,
 * but we can override it using css and a static image */
div.mapboxgl-user-location-dot {
  background-image: url(/assets/img/currentLocation.png);
  background-color: transparent;
  border: 3px solid #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  padding: 27px;
  /* background-color: #F5DB4F; */
}

div.mapboxgl-user-location-dot::after,
div.mapboxgl-user-location-dot::before {
  content: none;
}

div.mapboxgl-user-location-dot-stale {
  background-color: transparent;
}
