@keyframes rotate {
  to {
    transform: rotate(360deg); } }

@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg); } }

@-moz-keyframes rotate {
  to {
    transform: rotate(360deg); } }

div {
  width: 40px;
  height: 40px;
  margin: 16px;
  color: #000;
  animation-duration: 1.4s;
  animation-delay: 0s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: rotate;
  display: inline-block;
  line-height: 1; }
  div svg circle {
    stroke-dasharray: 80px, 200px;
    stroke-dashoffset: 0px;
    stroke: currentColor; }
