#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Horizontally center items */
  justify-content: center; /* Vertically center items */
  z-index: 9999;
  transition: opacity 0.5s ease;
  opacity: 1;

}

#splash-screen img {
  margin-right: 15px;
  width: 200px;
  height: auto;
}

#splash-screen dotlottie-wc {
  width: 200px;
  height: 200px;
}

/* Spinner Styles */
#loading-circle {
  margin-top: 50px;
  border: 5px solid #D6CDF9;
  border-top: 5px solid #5936E3;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 1s linear infinite;
  transition: opacity 0.6s ease; /* Smooth fade-in for the spinner */
}

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

  100% {
    transform: rotate(360deg);
  }
}

#splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

#loading-circle.fade-out {
  opacity: 0;
  pointer-events: none;
}