/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

/********* WhatsApp floating button Front End ************/
.whatsbuilder-float-button {
    position: fixed;
    display: inline-block;
    z-index: 100;
    bottom: 60px;
    right: 20px;
}

.whatsbuilder-float-button img {
    position: relative;
    z-index: 10;
}

.whatsbuilder-wave {
    position: absolute;
    z-index: -1;
    top: 1px;
    left: 4px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    background: #00e676;
    opacity: 0;
    animation: a 1.7s infinite;
}

.wave1 {
    animation-delay: 1s;
}

.wave2 {
    animation-delay: 1.3s;
}

.wave3 {
    animation-delay: 1.5s;
}

@keyframes a {
    0% {
        transform: scale(1);
    }
    15% {
        opacity: 1;
    }
    to {
        opacity: 0;
        transform: scale(2.5);
    }
}

/********* WhatsApp chat box ************/

