___SPINNER___ {
  border: 0 solid transparent;
  border-radius: 50%;
  position: relative;
}
___SPINNER___:before, ___SPINNER___:after {
  content: '';
  border: 4px solid currentcolor;
  border-radius: 50%;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: cf7cs-06 1s linear infinite;
          animation: cf7cs-06 1s linear infinite;
  opacity: 0;
}
___SPINNER___:before {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
___SPINNER___:after {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

@-webkit-keyframes cf7cs-06 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes cf7cs-06 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}