___SPINNER___ {
  position: relative;
}
___SPINNER___:before, ___SPINNER___:after {
  content: '';
  width: inherit;
  height: inherit;
  border-radius: 50%;
  background-color: currentcolor;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: cf7cs-07 2.0s infinite ease-in-out;
          animation: cf7cs-07 2.0s infinite ease-in-out;
}
___SPINNER___:after {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

@-webkit-keyframes cf7cs-07 {
  0%,
	100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes cf7cs-07 {
  0%,
	100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}