<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body {
  margin: 0;
  padding: 0;
  font-size: 50px;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Roboto,
    SF Pro Display, Segoe UI, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.bet-insert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  flex-direction: column;
  z-index: 19999;
}

.bet-insert-loading {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.24rem;
  font-weight: 400;
  color: #6a6f7a;
}

.bet-insert-loading-spinner {
  border: 0.05rem solid currentcolor;
  border-bottom-color: transparent;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  color: #e6e7eb;
  vertical-align: middle;
  pointer-events: none;
  width: 0.4rem;
  height: 0.4rem;
  animation: bet-insert-loading 1s ease infinite;
  margin-bottom: 0.2rem;
}

@keyframes bet-insert-loading {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}
</pre></body></html>