.direction path {
  fill: none;
  stroke-width: 2;
  stroke-opacity: 0.13;
  stroke-opacity: 1;
  stroke: #BBBEC0;
  -webkit-animation: dash 3s linear infinite;
          animation: dash 3s linear infinite;
}

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

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