#content-form-v3.is-submitting {
  position: relative;
  z-index: 1; }
  #content-form-v3.is-submitting:before {
    content: "";
    animation: loading 1s linear infinite;
    border-color: #333 #ccc #ccc;
    border-radius: 100%;
    border-style: solid;
    border-width: 3px;
    margin: -15px 0 0 -15px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 30px;
    height: 30px; }
  #content-form-v3.is-submitting form.form {
    display: none; }

@keyframes loading {
  0% {
    transform: rotate(0); }
  50% {
    transform: rotate(180deg); }
  100% {
    transform: rotate(360deg); } }

/*# sourceMappingURL=form-states.css.map */
