/*==================================================
        PREMIUM WHATSAPP STICKY BUTTON
==================================================*/

.ie-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 144px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 10px 10px 10px 18px;
    box-shadow: 0 12px 35px rgba(37, 211, 102, .35);
    z-index: 99999;
    transition: .35s ease;
    animation: ieWhatsappFloat 3s ease-in-out infinite;
}

.ie-whatsapp:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(37, 211, 102, .45);
}

.ie-whatsapp-text {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.ie-whatsapp-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: relative;
}

/* Pulse Ring */

.ie-whatsapp-icon::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    animation: ieWhatsappPulse 2s infinite;
}

/* Floating Animation */

@keyframes ieWhatsappFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}

/* Pulse Animation */

@keyframes ieWhatsappPulse {

    0% {
        transform: scale(1);
        opacity: .8;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

/* Mobile */

@media(max-width:768px) {
    .ie-whatsapp {
        right: 15px;
        bottom: 115px;
        padding: 0;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        justify-content: center;
    }

    .ie-whatsapp-text {
        display: none;
    }

    .ie-whatsapp-icon {
        width: 60px;
        height: 60px;
        background: transparent;
        color: #fff;
        font-size: 34px;
    }

    .ie-whatsapp-icon::before {
        border-color: rgba(255, 255, 255, .35);
    }

}