@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes pulse {
  50% {
    background: #d44658; } }

.ajax-loading {
  margin: 0 auto;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 0.25rem solid rgba(204, 204, 204, 0.2);
  border-top-color: #d44658;
  animation: spin 1s infinite linear; }
  .ajax-loading--double {
    border-style: double;
    border-width: .5rem; }

/*# sourceMappingURL=spinner.css.map */