.frame path,
.frame circle {
  stroke-linecap: round;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  will-change: stroke-dashoffset;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: draw;
  -webkit-animation-duration: 3.5s;
  animation-iteration-count: infinite;
  animation-name: draw;
  animation-duration: 3.5s;
}

@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
