@keyframes ml-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(224, 122, 47, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(224, 122, 47, 0);
  }
}

@keyframes ml-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ml-slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ml-scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.ml-anim-fade-in {
  animation: ml-fade-in var(--ml-motion-duration-base) var(--ml-motion-ease-standard) both;
}

.ml-anim-slide-up {
  animation: ml-slide-up var(--ml-motion-duration-slow) var(--ml-motion-ease-standard) both;
}

.ml-page-enter {
  animation: ml-fade-in var(--ml-motion-duration-page) var(--ml-motion-ease-standard) both;
}
