.ajax-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9999;
}

.ajax-progress-throbber {
  text-align: center;
}

.ajax-progress-throbber .throbber {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid var(--color--primary-40);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
  background:none;
}

.message {
  font-size: 16px;
  color: #333;
}

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