.qoder-whatsapp-cta {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all .3s ease;
	opacity: 0;
    z-index: 9999;
    animation: qoderFadeIn 1s 3s ease forwards;
}
.qoder-whatsapp-cta svg {
    width: 30px;
    height: 30px;
}

.qoder-whatsapp-cta:hover {
    transform: scale(1.05);
}

.qoder-whatsapp-cta::after {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    animation: qoderPulse 5s infinite;
}

@keyframes qoderFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
@keyframes qoderPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

}