body {
  margin: var(--spacing-0);
}
.global-loading {
  display: none;
  position: fixed;
  top: 12px;
  right: 12px;
  opacity: 40%;
}
.global-loading.circle .rotating-circle {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  overflow: visible;
}
.global-loading.circle .rotating-circle i {
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  top: 0;
  right: 0;
  animation: rotation 0.65s infinite linear;
  border: 3px solid rgba(20, 170, 209, 0.15);
  border-top: 3px solid rgba(20, 170, 209, 0.8);
  border-radius: 100%;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}




/*# sourceMappingURL=main.be5ed003.bundle.css.map*/