#loader {
  position: fixed;
  inset: 0;
  background-color: #0b0b0b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-ring {
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #B84AFF;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

#loader img{
    font-weight: 700;
    color: #B84AFF;
    margin-bottom: 10px;
    height: 75px;
    width: auto;
    border-radius: 5px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}
