___SPINNER___ {
  position: relative;
  -webkit-animation: cf7cs-09-1 2.0s infinite linear;
          animation: cf7cs-09-1 2.0s infinite linear;
}
___SPINNER___:before, ___SPINNER___:after {
  content: '';
  width: 0;
  height: 0;
  border: 8px solid currentcolor;
  display: block;
  position: absolute;
  border-radius: 100%;
  -webkit-animation: cf7cs-09-2 2s infinite ease-in-out;
          animation: cf7cs-09-2 2s infinite ease-in-out;
}
___SPINNER___:before {
  top: 0;
  left: 50%;
}
___SPINNER___:after {
  bottom: 0;
  right: 50%;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

@-webkit-keyframes cf7cs-09-1 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes cf7cs-09-1 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes cf7cs-09-2 {
  0%,
	100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes cf7cs-09-2 {
  0%,
	100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}