#preloader {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

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

.rotating-container {
  width: 5rem;
  height: 5rem;
  perspective: -100px;
}

svg {
  max-width: 100%;
  max-height: 100%;
}

.rotation {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

#anillo {
  animation: rotate 2s infinite normal;
  transform-style: preserve-3d;
  transform-origin: center;
}

#laterales {
  animation: rotate 2s infinite alternate;
  transform-style: preserve-3d;
  transform-origin: center;
}

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

.cls-1 { fill: #feb100; }
.cls-2 { fill: #00007d; }
.cls-1, .cls-2 { stroke-width: 0px; }
