/* Zoho Desk ASAP Widget CSS */

.zoho-desk-widget-container {
    position: fixed;
    z-index: 9999;
    bottom: 20px;
}

.zoho-desk-widget-container.right {
    right: 20px;
}

.zoho-desk-widget-container.left {
    left: 20px;
}

.zoho-desk-widget-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.zoho-desk-widget-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.zoho-desk-widget-bubble svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.zoho-desk-widget-bubble.pulsate {
    animation: pulsate 2s infinite;
}

@keyframes pulsate {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}