.widget-wa-wrapper {
	position: fixed;
	bottom: 2%;
	right: 20px;
	z-index: 3;
}

.speech-bubble {
	position: relative;
	background: #FFFFFF;
	border-radius: 2rem;
	padding:1rem 2rem 1rem 2rem;
	float:left;
	margin: 1rem 1rem 1rem;
	color: var(--default);

	-webkit-box-shadow: 0px 0px 9px 0px rgba(0,0,0,.4);
	-moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,.4);
	box-shadow: 0px 0px 9px 0px rgba(0,0,0,.4);
}

.speech-bubble:after {
	content: '';
	position: absolute;
	right: 25px;
	top: 50%;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-left-color: #FFFFFF;
	border-right: 0;
	border-top: 10px solid transparent;
	margin-top: -10px;
	margin-right: -30px;
}

.btn-instagram-pulse {
	background: #833ab4;
	background: linear-gradient(
	to right,
	#833ab4,#fd1d1d,#fcb045
	);
	color: #FFFFFF!important;
	/*position: fixed;
	bottom: 20px;
	right: 20px;*/
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

.btn-whatsapp-pulse {
	background: #25d366;
	color: #ffffff!important;
	/*position: fixed;
	bottom: 20px;
	right: 20px;*/
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}
.btn-instagram-pulse:hover {text-decoration: none; color:#FFFFFF; background-color:#833ab4;}
.btn-whatsapp-pulse:hover {text-decoration: none; color:#FFFFFF; background-color:#402c1b;}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	/*bottom: 120px;
	right: 20px;*/
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}