.cs-es-spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999999;
}
.cs-es-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  border-top-color: #c60f06;
  animation: cs-es-spinner 1s ease-in-out infinite;
}
@keyframes cs-es-spinner {
  to {
    transform: rotate(360deg);
  }
}

.cs-es-forms-error-text {
  color: #c60f06;
}
.cs-es-forms-error-text:not(:empty) {
  padding-top: 16px;
}
