/* WHATSAPP BUTTON */

.sfrWhatsappButton {
	display: block;
	border-radius: 50%;
	bottom: 40px;
	left: 40px;
	z-index: 915;
	color: #fff;
	background: #48A91F;
	position: fixed;
}

.sfrWhatsappButton.right {
	bottom: 60px;
	right: 60px;
	left: auto;
}

.sfrWhatsappButton svg {
	display: block;
	width: 30px;
	height: 30px;
	margin: 15px;
	transition: all .3s;
	transition: all .3s;
}

.sfrWhatsappButton:hover svg {
	transform: scale(1.1);
}

.sfrWhatsappButton .circle {
	position: absolute;
	border-radius: 100%;
	-webkit-transition: all .5s;
	transition: all .5s;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	opacity: 0;
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	width: 200%;
	height: 200%;
	background-color: transparent;
	border: 2px solid #48A91F;
	-webkit-animation: whatsappCircle 2.2s infinite ease-in-out;
	animation: whatsappCircle 2.2s infinite ease-in-out;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	left: -50%;
	bottom: -50%
}

@-webkit-keyframes whatsappCircle {
	0% {
		-webkit-transform: rotate(0) scale(.5) skew(1deg);
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .01
	}
	30% {
		-webkit-transform: rotate(0) scale(.7) skew(1deg);
		transform: rotate(0) scale(.5) skew(1deg);
		opacity: .2
	}
	100% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
		transform: rotate(0) scale(1) skew(1deg);
		opacity: .01
	}
}

@media (max-width: 768px) {

	.sfrWhatsappButton {
		left: 20px;
		bottom: 50px;
	}
	
	.sfrWhatsappButton svg {
		width: 20px;
		height: 20px;
		margin: 10px;
	}
	
}