.angie-floating-whatsapp-381 {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.angie-floating-whatsapp-381 a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background-color: #003366; /* Primary color based on kit */
	color: #ffffff;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	text-decoration: none;
	position: relative;
	transition: transform 0.3s ease;
}

.angie-floating-whatsapp-381 a:hover {
	transform: scale(1.1);
}

.angie-floating-whatsapp-381 a::before,
.angie-floating-whatsapp-381 a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #003366;
	border-radius: 50%;
	z-index: -1;
	opacity: 0.7;
	animation: angie-wave-381 2s infinite ease-out;
}

.angie-floating-whatsapp-381 a::after {
	animation-delay: 1s;
}

@keyframes angie-wave-381 {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

.angie-floating-whatsapp-381 svg {
	width: 35px;
	height: 35px;
}
