body {
  background: #15161f;
}

svg {
  position: absolute;
  top: 50%;
  left: 50%;
}

.path {
  -webkit-animation: dash 1.75s ease-out infinite;
          animation: dash 1.75s ease-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 0, 158;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 79, 158;
    stroke-dashoffset: -30px;
  }
  100% {
    stroke-dasharray: 0, 158;
    stroke-dashoffset: -158px;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 0, 158;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 79, 158;
    stroke-dashoffset: -30px;
  }
  100% {
    stroke-dasharray: 0, 158;
    stroke-dashoffset: -158px;
  }
}