html.dark {
  --base-bg-color: #101014;
}

#app-loading {
  align-items: center;
  background-color: var(--base-bg-color);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.loading-spinner {
  animation: spin 1s linear infinite;
  border: 8px solid #f3f3f3;
  border-radius: 50%;
  border-top-color: #ffa500;
  height: 80px;
  max-height: 20%;
  max-width: 20%;
  width: 80px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
