/* ----------------------------------------------
 * Generated by Animista on 2025-10-2 11:46:34
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes slide-r {
	from{
		translate:-20px 0;
		opacity: 0;
	}
	to{
		translate:0 0;
		opacity: 1;
	}
}

@keyframes slide-up {
	from{
		translate:0 20px;
		opacity: 0;
	}
	to{
		translate:0 0;
		opacity: 1;
	}
}

@keyframes slide-down {
	from{
		translate:0 -20px;
		opacity: 0;
	}
	to{
		translate:0 0;
		opacity: 1;
	}
}

@keyframes slide-l{
	from{
		translate:20px 0;
		opacity: 0;
	}
	to{
		translate:0 0;
		opacity: 1;
	}
}

@keyframes slide-in-left {
	0% {
		transform: translateX(-1000px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.slide-l,.anim-slide-l{animation: slide-l 0.4s ease-out;}
.slide-up,.anim-slide-up{animation: slide-up 0.4s ease-out;}
.slide-down,.anim-slide-down{animation: slide-down 0.4s ease-out;}
.anim-slide-in-left{animation: slide-in-left 0.3s ease-out both;}

.slide-r,.anim-slide-r{animation: slide-r 0.4s ease-out;}