/**
 * <div class="whatsapp-plug-icon" data-number="" data-message=""></div>
 26072021 - tirei bottom:20px e troquei por top
 **/
 .btn-whatsapp-form{
 	position: fixed;
	z-index: 1000;
	top: calc(50% - 25px); 
	right: 20px; 
	width: 50px; 
	height: 50px;
 }
.whatsapp-plug-icon{position: fixed; z-index: 1000; top: calc(50% - 25px); right: 20px; width: 50px; height: 50px; -webkit-border-radius: 50%; cursor: pointer; background-color: #0ba360; transition: .3s; background-position: center; background-repeat: no-repeat; background-image: url('whatsplug.svg'); background-size: 50% auto;}
.whatsapp-plug-icon:hover{background-color: #15cc74;}
.whatsapp-plug-icon::after,
.whatsapp-plug-icon::before{content: ''; position: absolute; opacity: 0; border: 4px solid #0ba360; left: -10px; top: -10px; right: -10px; bottom: -10px; -webkit-border-radius: 50%; animation: WaveWhatsApp 1.5s ease infinite;}
.whatsapp-plug-icon::after{animation-delay: .5s;}
.whatsapp-plug-icon:hover::after{border: 4px solid #15cc74;}
.whatsapp-plug-icon:hover::before{border: 4px solid #15cc74;}

.btn-whatsapp{
	width: 50px;
	height: 50px;
	border-radius: 25px;
	border:none;
	cursor: pointer;
	background-color: #0ba360;
	transition: .3s;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url('whatsplug.svg');
	background-size: 50% auto;
}
.btn-whatsapp:hover{
	background-color: #15cc74;
}
.btn-whatsapp::after,
.btn-whatsapp::before{
	content: '';
	position: absolute;
	opacity: 0;
	border: 4px solid #0ba360;
	left: -10px;
	top: -10px;
	right: -10px;
	bottom: -10px;
	-webkit-border-radius: 50%;
	animation: WaveWhatsApp 1.5s ease infinite;
}
.btn-whatsapp::after{
	animation-delay: .5s;
}
.btn-whatsapp:hover::after{
	border: 4px solid #15cc74;
}
.btn-whatsapp:hover::before{
	border: 4px solid #15cc74;
}

@keyframes WaveWhatsApp {0%{ transform: scale(0.5); } 50%{ opacity: 1; } 100%{ transform: scale(1.2); opacity: 0; }}
