.leaflet-control-locate {
  --locate-control-icon-color: black;
  --locate-control-active-color: #2074b6;
  --locate-control-following-color: #fc8428;
}

.leaflet-control-locate a .leaflet-control-locate-location-arrow {
  background-color: var(--locate-control-icon-color);
  width: 16px;
  height: 16px;
  margin: 7px;
  display: inline-block;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.leaflet-control-locate a .leaflet-control-locate-spinner {
  background-color: var(--locate-control-icon-color);
  width: 16px;
  height: 16px;
  margin: 7px;
  display: inline-block;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.leaflet-control-locate a .leaflet-control-locate-location-arrow {
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>");
  mask-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z\"/></svg>");
}

.leaflet-control-locate a .leaflet-control-locate-spinner {
  animation: 2s linear infinite leaflet-control-locate-spin;
  -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z\"/></svg>");
  mask-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z\"/></svg>");
}

.leaflet-control-locate.active a .leaflet-control-locate-location-arrow {
  background-color: var(--locate-control-active-color);
}

.leaflet-control-locate.following a .leaflet-control-locate-location-arrow {
  background-color: var(--locate-control-following-color);
}

.leaflet-touch .leaflet-bar .leaflet-locate-text-active {
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  max-width: 200px;
  padding: 0 10px;
  overflow: hidden;
}

.leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon {
  padding: 0 5px 0 0;
}

.leaflet-control-locate-location circle {
  animation: 4s infinite leaflet-control-locate-throb;
}

@keyframes leaflet-control-locate-throb {
  0% {
    stroke-width: 1px;
  }

  50% {
    stroke-width: 3px;
    transform: scale(.8);
  }

  100% {
    stroke-width: 1px;
  }
}

@keyframes leaflet-control-locate-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=dist/L.Control.Locate.css.map */
