/*! purgecss start ignore */
.vfwp-form[data-status=error] .status {
  display: block;
}
.vfwp-form .status {
  display: none;
}

.vfwp-spinner {
  animation: 2s linear infinite svg-animation;
  display: none;
  max-width: 100px;
}
[data-status=submitting] .vfwp-spinner {
  display: block;
}
.vfwp-spinner circle {
  animation: 1.4s ease-in-out infinite both circle-animation;
  display: block;
  fill: transparent;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 280;
  stroke-width: 10px;
  transform-origin: 50% 50%;
}

@keyframes svg-animation {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes circle-animation {
  0%, 25% {
    stroke-dashoffset: 280;
    transform: rotate(0);
  }
  50%, 75% {
    stroke-dashoffset: 75;
    transform: rotate(45deg);
  }
  100% {
    stroke-dashoffset: 280;
    transform: rotate(360deg);
  }
}
/*! purgecss end ignore */
/*# sourceMappingURL=forms.css.map */
