<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
}
.font-12 {
  font-size: 0.75rem;
}
.font-14 {
  font-size: 0.875rem;
}
a {
  display: block;
  text-decoration: none;
}

#loading {
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  position: fixed;
  top: 50%;
  left: 50%;
  display: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 0.1rem 0.8rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#loading i {
  display: block;
  border: 0.2rem solid transparent;
  border-left-color: currentcolor;
  border-right-color: currentcolor;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  color: #fff;
  -webkit-animation: 1.5s loader-02 linear infinite;
  animation: 1.5s loader-02 linear infinite;
}
#loading span {
  padding-left: 0.8rem;
  font-size: 0.875rem;
}
@keyframes loader-02 {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
</pre></body></html>