/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 15 2024 | 11:55:48 */
.circleReveal {
    animation: showCircle linear;
}
.circleHide {
    animation: showCircle reverse linear;
}
@keyframes showCircle {
    0%{ 
clip-path: circle(0% at 98% 4%);
-webkit-clip-path: circle(0% at 98% 4%);
	}
	100%{ 
		clip-path: circle(100%);
		-webkit-clip-path: circle(100%);
	}
}
.circleRevealBottom {
    animation: showCircleBottom linear;
}
.circleHide2 {
    animation: showCircleBottom reverse linear;
}
@keyframes showCircleBottom {
    0%{ 
clip-path: circle(0% at 50% 96%);
-webkit-clip-path: circle(0% at 50% 96%);
	}
	100%{ 
		clip-path: circle(100%);
		-webkit-clip-path: circle(100%);
	}
}