.whatsapp-float {

		width: 60px;
		height: 60px;
		background-color: rgb(63 148 151);
		color: white;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 10000;
		box-shadow: 0 4px 12px rgba(0,0,0,0.3);
		text-decoration: none;
	}
	.whatsapp-float::before {
		content: "";
		position: absolute;
		width: 60px;
		height: 60px;
		border-radius: 50%;
		background-color: rgba(37, 211, 102, 0.5);
		animation: pulse 0.8s infinite;
		z-index: -1;
	}
	@keyframes pulse {
		0% {
			transform: scale(1);
			opacity: 0.7;
		}
		70% {
			transform: scale(1.6);
			opacity: 0;
		}
		100% {
			transform: scale(1.6);
			opacity: 0;
		}
	}
	@media (max-width: 768px) {
		.whatsapp-float {
			bottom: 70px;    
			/*	left: -5px; */   
			left: 0;
			right: auto;
			width: 50px;
			height: 50px;   
			border-radius: 0 25px 25px 0; 
			padding-left: 10px;
			box-sizing: border-box;
			justify-content: flex-start; 
			position: fixed;
			justify-content: flex-start
		}



		.whatsapp-float::before {
			width: 50px;
			height: 70px;
			border-radius:0 25px 25px 0;
			background-color: rgba(37, 211, 102, 0.5);
		}
		.whatsapp-float svg {
			margin-right:10px;
			width: 28px;
			height: 28px;
		}
	}