/*
.chat-whatsapp {
	background-color: #25D366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 9999;
}
*/

.chat-whatsapp {
    background-color: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 50px;
    right: -60px;
    z-index: 9999;
    animation-name: whatsapp-button;
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes whatsapp-button {
    from {
        right: -50px;
    }
    to {
        right: 50px;
    }
}

