#boot-spinner {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 9999;
  transition: opacity 0.3s ease-out;
}

#boot-spinner .ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(220, 41, 30, 0.15);
  border-top-color: rgb(220, 41, 30);
  animation: bas-spin 0.8s linear infinite;
}

@keyframes bas-spin {
  to {
    transform: rotate(360deg);
  }
}
