/* -------------------------------------
   Animations CSS Library
-------------------------------------- */

@keyframes npwFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes npwSlideUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes npwZoomIn {
	from { opacity: 0; transform: scale(0.95); }
	to { opacity: 1; transform: scale(1); }
}

.npw-anim-fade-in {
	animation: npwFadeIn 0.6s ease forwards;
}

.npw-anim-slide-up {
	animation: npwSlideUp 0.6s ease forwards;
}

.npw-anim-zoom-in {
	animation: npwZoomIn 0.6s ease forwards;
}

/* Add more complex animations from the spec in Phase 2 */
