#webform-processing-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.85);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.processing-wrapper {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ddd;
  border-top: 6px solid #0074bd;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

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

.ajax-progress-fullscreen {
  display: none;
}