/* hide user dot */
div.maplibregl-user-location-dot {
  /* Override the image displayed for the current location indicator */
  background-image: url(/assets/img/currentLocation.png);
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  padding: 27px;
  /* Leaving the other styles here for now, but we're already manually displaying a user location
   * indicator, so we don't need this thing */
  display: none;
}
div.maplibregl-user-location-dot::after,
div.maplibregl-user-location-dot::before {
  content: none;
}
div.maplibregl-user-location-dot-stale {
  background-color: transparent;
}

div.maplibregl-user-location-accuracy-circle {
  /* Hide the accuracy circle, since we're manually adding one and the maplibre control API doesn't
   * allow you to hide it declaratively */
  display: none;
}