/* Floating WhatsApp button */
.wlb-whatsapp-btn {
    position: fixed;
    right: 0px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 60px 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .25);
    transition: transform .2s ease-out;
    z-index: 99999;
}

.wlb-whatsapp-btn:hover{
	transform:scale(1.1);
}

.wlb-whatsapp-btn svg{
	width: 40px;
    height: 40px;
    border: 4px solid #ffffff;
    border-radius: 50px;
    padding: 0px 4px 0 0;
}

.rkit-btn-hamburger {
    transition: transform 0.5s;
    transform-style: preserve-3d;
}
.rkit-btn-hamburger:hover {
    transform: rotateY(180deg);
}