#loading-screen {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  text-align: center;
  background-color: #fff;
  z-index: 9999; 
  transition: opacity 0.5s ease-in-out;
}

#lottie-loading-screen {
  width: 100px;
  height: 100px;
}

@media (min-width: 1024px) {
  #lottie-loading-screen {
    width: 200px;
    height: 200px;
  }
}

#page-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#page-content.show {
  opacity: 1;
  visibility: visible;
}
