.whatsapp {
	 position: fixed;
	 z-index: 999;
	 bottom: 50px;
	 right: 50px;
}
 @media (max-width: 992px) {
	 .whatsapp {
		 bottom: 25px;
		 right: 25px;
	}
}
 .whatsapp__pulse {
	 position: relative;
	 text-align: center;
	 border-radius: 50%;
	 background: #c2d061;
	 width: 70px;
	 height: 70px;
}
 .whatsapp__pulse:before {
	 content: '';
	 position: absolute;
	 border: 1px solid #c2d061;
	 left: -20px;
	 opacity: 0;
	 right: -20px;
	 top: -20px;
	 bottom: -20px;
	 border-radius: 50%;
	 animation: pulse 2.5s linear infinite;
}
 .whatsapp__pulse:after {
	 content: '';
	 position: absolute;
	 border: 1px solid #c2d061;
	 left: -15px;
	 opacity: 0;
	 right: -15px;
	 top: -15px;
	 bottom: -15px;
	 border-radius: 50%;
	 animation: pulse 2.5s linear infinite;
}
 .whatsapp__pulse a {
	 display: block;
	 width: 70px;
	 height: 70px;
	 background: url('../../img/icons/pulse.svg') center center no-repeat;
	 position: relative;
	 z-index: 99999;
}
 .whatsapp__pulse:after {
	 animation-delay: 1.25s;
}
 @keyframes pulse {
	 0% {
		 transform: scale(0.5);
		 opacity: 0;
	}
	 50% {
		 opacity: 1;
	}
	 100% {
		 transform: scale(1.2);
		 opacity: 0;
	}
}
 