
#loading-overlay {
  position: fixed; /* Overlay will be fixed on the viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  background: #fff; /* change if needed */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  
}

#loading-overlay video {
  width: 50%;
  height: auto;
  object-fit: contain;
}
