.ch-loading-spinner-wrapper {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.ch-loading-spinner {
  position: relative;
  width: 40px;
  height: 40px;
}

.ch-loading-spinner::before,
.ch-loading-spinner::after {
  content: "";
  width: 100%;
  height: 100%;
  animation: ch-loading-spinner-rfi6tk 1s infinite linear;
  box-sizing: border-box;
  border: 8px solid rgba(2, 131, 71, 0.1);
  border-radius: 50%;
  position: absolute;
}

.ch-loading-spinner::before {
  animation-direction: reverse;
  border-right-color: #6399eb;
  right: calc(50% - 4px);
}

.ch-loading-spinner::after {
  border-left-color: #6399eb;
  left: calc(50% - 4px);
}

@keyframes ch-loading-spinner-rfi6tk {
  0% {
    transform: rotate(0deg);
  }

  50%,
  100% {
    transform: rotate(360deg);
  }
}
