/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 25 2026 | 08:44:59 */
.sa {
	opacity: 0;
	transition: all 1.0s ease-out;
}
 
.sa.show {
	opacity: 1;
	transform: none;
}
 
.sa--lr {
	transform: translate(-100px, 0);
}
 
.sa--rl {
	transform: translate(100px, 0);
}
 
.sa--up {
	transform: translate(0, 200px);
}
 
.sa--down {
	transform: translate(0, -100px);
}
 
.sa--scaleUp {
	transform: scale(.5);
}
 
.sa--scaleDown {
	transform: scale(1.5);
}
 
.sa--rotateL {
	transform: rotate(180deg);
}
 
.sa--rotateR {
	transform: rotate(-180deg);
}

@media (max-width:450px){
	.sa--lr {
	transform: translate(-20px, 0);
}
 
.sa--rl {
	transform: translate(20px, 0);
}
}
