/* 
 * JD Floating Tracking Button CSS
 */

.jd-floating-container {
    transition: all 0.3s ease-in-out;
}

.jd-floating-container .elementor-icon-wrapper a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
}

/* Pulse Animation for Floating effect */
@keyframes jd-pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.jd-floating-container .elementor-icon {
    animation: jd-pulse-animation 2s infinite;
}

/* Hover disable pulse */
.jd-floating-container:hover .elementor-icon {
    animation: none;
}
