
.widget-whatsapp {
	position: fixed;
	bottom: 0px;
	right: 0px;
	z-index: 2000;
}

.float {
	position: absolute;
	bottom: 40px;
	right: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	width: 80px;
	height: 80px;
	background-color:#25d366;
	color:#FFFF;
	border-radius: 50px;
	font-size: 50px;
	text-align: center;
	box-shadow: 0 0 5px 2px #999;  
    z-index: 100;
	transition: .5s;
}	

.float:hover {
	text-decoration: none;
	color: #25d366;
	background-color:#fff;
	transform: scale(130%);
}	  

