.bet-loading-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: rgba(255,255,255,0.75);
}

.bet-loading {
  width: 0.96rem;
  height: 0.96rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bet-loading::after {
  content: "";
  display: block;
  border: 0.06rem solid currentcolor;
  border-bottom-color: transparent;
  border-radius: 50%;
  -webkit-animation: 1s bet-loading linear infinite;
  animation: 1s bet-loading linear infinite;
  width: 0.36rem;
  height: 0.36rem;
  color: #E6E7EB;
  pointer-events: none;
}

@keyframes bet-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}