.animatedArrow {
  width: 353px;
  max-width: 100%;
}
.animatedArrow svg {
  width: 100%;
}
.animatedArrow svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.animatedArrow.animatedArrow-on path {
  animation: animatedArrow 5s linear forwards;
}
.animatedArrow.animatedArrow-on path + path {
  animation-delay: 3s;
}

@keyframes animatedArrow {
  to {
    stroke-dashoffset: 0;
  }
}/*# sourceMappingURL=animatedArrow.css.map */