.enquiry-spinner--view {
  position: absolute;
  z-index: 1100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
}

.enquiry-spinner {
  position: relative;
  z-index: 10;
  width: 36px;
  height: 36px;
  border: 6px solid var(--color-brand-blue-600);
  border-top: 6px solid transparent;
  border-radius: 50%;
  animation: enquiry-spin 2s linear infinite;
}

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