/* Loading Screen Styles */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fffef5;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.loader {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 1s infinite linear alternate;
}
@keyframes l5 {
  0%  {box-shadow: 20px 0 #000, -20px 0 rgba(0,0,0,0.1); background: #000 }
  33% {box-shadow: 20px 0 #000, -20px 0 rgba(0,0,0,0.1); background: rgba(0,0,0,0.1)}
  66% {box-shadow: 20px 0 rgba(0,0,0,0.1), -20px 0 #000; background: rgba(0,0,0,0.1)}
  100%{box-shadow: 20px 0 rgba(0,0,0,0.1), -20px 0 #000; background: #000 }
}
body.loaded #loading-overlay {
  opacity: 0;
  pointer-events: none;
}