/*
* EENDA
* Marketing, Desarrollo & Consulting
* www.eenda.com
* © 2025
*/

.animate{
	position: relative;
	overflow: hidden;
	transition: 0.4s;
}

.animate.animate-fill-buble::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(166, 166, 166, 0.2);
	opacity: 0;
	border-radius: 3rem;
	transform: scale(0);
	transition: all 0.4s;
}

.animate.animate-fill-buble:hover::before,
.animate.animate-fill-buble:focus::before{
	opacity: 1;
	transform: scale(1);
}