/*
 * Animations globales.
 *
 * Les animations restent courtes et partageables pour donner une ambiance Lab
 * sans rendre les pages difficiles a maintenir ou trop lourdes.
 */
@keyframes scan-line {
  0% {
    top: -2px;
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  92% {
    opacity: 1;
  }

  100% {
    top: 100vh;
    opacity: 0;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lab-node-pulse {
  0%,
  100% {
    opacity: 0.62;
    box-shadow: 0 0 0 rgba(0, 255, 65, 0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 16px rgba(0, 255, 65, 0.32);
  }
}

