.leaflet-marker-icon.fdt-route-map-pin-wrap {
  border: 0;
  background: transparent;
  overflow: visible;
}
.fdt-route-map-pin {
  position: relative;
  display: block;
  width: 36px;
  height: 47px;
  transform: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 8px 7px rgba(32, 39, 53, 0.3));
  transform-origin: 50% 98%;
  animation: fdt-route-pin-arrive 0.28s ease-out both;
  transition: filter 0.18s ease, transform 0.18s ease;
}
.fdt-route-map-pin::after {
  display: none;
}
.fdt-route-map-pin svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.fdt-route-map-pin__body {
  fill: #e50068;
  stroke: #ffb629;
  stroke-width: 3;
  stroke-linejoin: round;
}
.leaflet-marker-icon.fdt-route-cluster-wrap {
  overflow: visible;
  border: 0;
  background: transparent;
}
.fdt-route-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffb629;
  border-radius: 50%;
  color: #fff;
  background: #e50068;
  box-shadow: 0 9px 23px rgba(32, 39, 53, 0.28), inset 0 0 0 2px rgba(255, 255, 255, 0.22);
  font-variant-numeric: tabular-nums;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.fdt-route-cluster.is-small {
  width: 42px;
  height: 42px;
}
.fdt-route-cluster.is-medium {
  width: 50px;
  height: 50px;
}
.fdt-route-cluster.is-large {
  width: 58px;
  height: 58px;
}
.fdt-route-cluster b {
  font-size: 15px;
  line-height: 1;
}
.fdt-route-cluster small {
  display: none;
}
.leaflet-marker-icon.fdt-route-cluster-wrap:hover .fdt-route-cluster,
.leaflet-marker-icon.fdt-route-cluster-wrap:focus .fdt-route-cluster {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(32, 39, 53, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.25);
}
.leaflet-marker-icon.fdt-route-map-pin-wrap:hover,
.leaflet-marker-icon.fdt-route-map-pin-wrap:focus {
  z-index: 1000 !important;
}
.leaflet-marker-icon.fdt-route-map-pin-wrap:hover .fdt-route-map-pin,
.leaflet-marker-icon.fdt-route-map-pin-wrap:focus .fdt-route-map-pin {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 11px 9px rgba(32, 39, 53, 0.38));
}
@keyframes fdt-route-pin-arrive {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.82);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fdt-route-map-pin {
    animation: none;
    transition: none;
  }
}
