
  #route-svg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 99999 !important;
    pointer-events: none !important;
  }
  .route-path {
    fill: none;
    stroke: #DAA869; /* Твой новый цвет */
    stroke-width: 3;
    stroke-dasharray: 8, 4;
    animation: dash 5s linear infinite;
  }
  /* Плюс меняем направление на противоположное */
  @keyframes dash { to { stroke-dashoffset: 24; } }
</style>
