/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 10 2024 | 12:09:45 */
.circleReveal {
    animation: showCircle linear;
}
.circleHide {
    animation: showCircle reverse linear;
}
@keyframes showCircle {
    0%{ 
		clip-path: circle(0% at 100% 0%);
        -webkit-clip-path: circle(0% at 95% 5%);
	}
	100%{ 
		clip-path: circle(100%);
		-webkit-clip-path: circle(100%);
	}
	
}