/* Skeleton loading simple CSS */

.skeleton-box {
  position: relative;
  background-color: #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  color: transparent !important;
}

/* Animación */
.skeleton-box::after {
  content: "";
  position: absolute;
  top: 0; left: -150px;
  height: 100%; width: 150px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -150px;
  }
  100% {
    left: 100%;
  }
}