#cb-spinner-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2500 !important;
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#cb-spinner-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 2400; /* Just below the spinner container */
}

.loader {
  border: 10px solid transparent;
  border-radius: 50%;
  border-top: 10px solid #029a8c;
  border-bottom: 10px solid #029a8c;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

img.cbspinner-image {
  width: 100%;
  height: 100%;
}