/* WHATSAPP BUTTON STYLE */

		.whatsapp-button {
		position: fixed;
		left: 55px;
		bottom: 110px;
		transform: translate(-50%, -50%);
		background: #25D366; /*цвет кнопки*/
		border-radius: 50%;
		width: 45px; /*ширина кнопки*/
		height: 45px; /*высота кнопки*/
		color: #fff;
		text-align: center;
		line-height: 43px; /*центровка иконки в кнопке*/
		font-size: 29px; /*размер иконки*/
		z-index: 98;
		}
		.whatsapp-button a {
		color: #fff;
		}
		.whatsapp-button:before,
		.whatsapp-button:after {
		content: " ";
		display: block;
		position: absolute;
		border: 50%;
		border: 1px solid #25D366; /*цвет анимированных волн от кнопки*/
		left: -20px;
		right: -20px;
		top: -20px;
		bottom: -20px;
		border-radius: 50%;
		animation: animate 1.5s linear infinite;
		opacity: 0;
		backface-visibility: hidden; 
		}
		
		.whatsapp-button:after{
		animation-delay: .5s;
		}
		
		@keyframes animate
		{	0%	{ transform: scale(0.5); opacity: 0;}
		50%		{ opacity: 1;}
		100%	{ transform: scale(1.2); opacity: 0;}
		}
		@media (max-width : 800px) {  
		.whatsapp-button {   
		bottom: 62px; /*отступ кнопки снизу от экрана*/
		left: 45px; /*отступ кнопки слева от экрана(right - справа)*/
		width: 40px; /*ширина кнопки*/
		height: 40px; /*высота кнопки*/
		line-height: 40px;
		font-size: 25px;
		}
		}
	
    /* WHATSAPP BUTTON STYLE END */