/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 1/04/2026, 12:20:52 PM
    Author     : kpesantez
*/
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 9999;
}

.whatsapp-tooltip {
    background-color: #ffffff;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
    margin-bottom: 99px;
    max-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    animation: float 2s infinite ease-in-out;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 14px;
    height: 14px;
    background-color: #ffffff;
    transform: rotate(45deg);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

#wsText::after {
    content: "|";
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
