/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 31 2025 | 14:26:03 */
.circleReveal {
	animation: showCircle linear;
}
.circleHide {
	animation: showCircle reverse linear;
}
@keyframes showCircle {
	0%{
		clip-path: circle(0%);
		-webkit-clip-path: circle(0%);
	}
	35%{
		clip-path: circle(5%);
		-webkit-clip-path: circle(5%);		
	}
	100%{
		clip-path: circle(100%);
		-webkit-clip-path: circle(100%);
	}
}