form.stripe-processing .form-submit {
  animation: throb .25s;
  animation-iteration-count: 1;
}

form.stripe-processing .form-submit,
form.stripe-processing .form-submit:hover,
form.stripe-processing .form-submit:focus {
  background: #C04D64;
  color: #fff;
}

@keyframes throb {
  0% {
    transform: scale(1)
  }
  50% {
    transform: scale(0.9)
  }
  100% {
    transform: scale(0.99)
  }
}
