
path.leaflet-interactive.userMarkerCircle.show {
  stroke-width: 3;
  animation: dash 0.3s linear forwards;

  }

path.leaflet-interactive.userMarkerCircle.hide {
  stroke-width: 0;
  /*transition: stroke-width 1s cubic-bezier(1, 0, 0, 1);*/
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

