.lak-whatsapp-button {
    position: fixed;
    display: flex;
    justify-content: center;
	align-items: center;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-second);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 400;
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease-in-out;
}

.lak-whatsapp-button.hidden {
    opacity: 0;
    pointer-events: none;
}

.lak-whatsapp-button:hover {
	background-color: #4dc247;
}

.lak-whatsapp-button i.ri-whatsapp-line {
	font-weight:100;
	color: #fff;
	font-size: 2.5rem;
}

