/* Comment */

.whatsapp-widget {
	position: fixed;
	bottom: 25px;
	right: 0;
	z-index:99999;
}
.whatsapp-widget .whatsapp-link {
	display: flex;
	flex-direction: column;
}
.whatsapp-widget .whatsapp-link:focus,
.whatsapp-widget .whatsapp-link:active {
	outline: none;
}
.whatsapp-widget .whatsapp-link .whatsap-icon {
	display: flex;
	flex-direction: column;
	position: relative;
}
.whatsapp-widget .whatsapp-link .whatsap-icon svg {
	display: block;
	width: 173px;
	height: 50px;
}
.whatsapp-widget .whatsapp-link .whatsap-icon .circle {
	content: '';
	position: absolute;
	background: #D24A38;
	width: 8px;
    height: 8px;
    left: 40px;
    top: 9px;
	border-radius: 100%;
	text-shadow: 0 0 20px #d24a38, 0 0 30px #d24a38, 0 0 40px #d24a38, 0 0 50px #d24a38, 0 0 60px #d24a38, 0 0 70px #d24a38, 0 0 80px #d24a38;
}
.blinking {
    animation: blinker 1s cubic-bezier(.5, 0, 1, 1) infinite alternate;
}
@keyframes blinker    {          
    from { opacity: 1; }        
    to { opacity: 0; }
}