/* =========================================================
   CYBEROAKS WHATSAPP BUTTON
   PREMIUM ALWAYS-ON GLOW
   ========================================================= */

.cyberoaks-whatsapp {
    position: fixed !important;

    right: 24px !important;
    bottom: 24px !important;

    width: 62px !important;
    height: 62px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    background: #25D366 !important;
    color: #ffffff !important;

    border: none !important;
    border-radius: 50% !important;

    box-sizing: border-box !important;

    z-index: 2147483647 !important;

    text-decoration: none !important;

    /*
       ALWAYS-ON GLOW
    */
    box-shadow:
        0 0 8px rgba(37, 211, 102, 0.50),
        0 0 18px rgba(37, 211, 102, 0.35),
        0 8px 22px rgba(0, 0, 0, 0.18) !important;

    /*
       CONTINUOUS GLOW ANIMATION
    */
    animation:
        cyberoaksWhatsAppGlow 2.2s ease-in-out infinite !important;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease !important;
}


/* =========================================================
   WHATSAPP ICON
   ========================================================= */

.cyberoaks-whatsapp svg {
    display: block !important;

    width: 34px !important;
    height: 34px !important;

    margin: 0 !important;
    padding: 0 !important;

    fill: #ffffff !important;

    flex-shrink: 0 !important;

    position: relative !important;
    z-index: 2 !important;
}


/* =========================================================
   ALWAYS-ON GLOW ANIMATION
   ========================================================= */

@keyframes cyberoaksWhatsAppGlow {

    0% {

        box-shadow:
            0 0 8px rgba(37, 211, 102, 0.50),
            0 0 18px rgba(37, 211, 102, 0.35),
            0 8px 22px rgba(0, 0, 0, 0.18);

    }

    50% {

        box-shadow:
            0 0 14px rgba(37, 211, 102, 0.75),
            0 0 30px rgba(37, 211, 102, 0.55),
            0 0 48px rgba(37, 211, 102, 0.25),
            0 8px 22px rgba(0, 0, 0, 0.18);

    }

    100% {

        box-shadow:
            0 0 8px rgba(37, 211, 102, 0.50),
            0 0 18px rgba(37, 211, 102, 0.35),
            0 8px 22px rgba(0, 0, 0, 0.18);

    }
}


/* =========================================================
   HOVER EFFECT
   ========================================================= */

.cyberoaks-whatsapp:hover {

    transform: scale(1.12) !important;

    animation: none !important;

    box-shadow:
        0 0 18px rgba(37, 211, 102, 0.95),
        0 0 40px rgba(37, 211, 102, 0.75),
        0 0 65px rgba(37, 211, 102, 0.40),
        0 10px 28px rgba(0, 0, 0, 0.20) !important;
}


/* =========================================================
   TOOLTIP
   ========================================================= */

.cyberoaks-whatsapp-tooltip {

    position: absolute !important;

    right: 76px !important;
    top: 50% !important;

    transform: translateY(-50%) !important;

    background: #111827 !important;

    color: #ffffff !important;

    padding: 10px 15px !important;

    border-radius: 8px !important;

    font-family: Arial, sans-serif !important;

    font-size: 14px !important;

    font-weight: 600 !important;

    white-space: nowrap !important;

    opacity: 0 !important;

    visibility: hidden !important;

    pointer-events: none !important;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease !important;
}


.cyberoaks-whatsapp:hover .cyberoaks-whatsapp-tooltip {

    opacity: 1 !important;

    visibility: visible !important;
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .cyberoaks-whatsapp {

        width: 56px !important;
        height: 56px !important;

        right: 18px !important;
        bottom: 18px !important;
    }


    .cyberoaks-whatsapp svg {

        width: 30px !important;
        height: 30px !important;
    }


    .cyberoaks-whatsapp-tooltip {

        display: none !important;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .cyberoaks-whatsapp {

        width: 54px !important;
        height: 54px !important;

        right: 15px !important;
        bottom: 15px !important;
    }


    .cyberoaks-whatsapp svg {

        width: 28px !important;
        height: 28px !important;
    }
}