.popup-green {
    position: fixed;
    bottom: 40px;
    left: 50%;
    text-align: center;
    transform: translateX(-50%) scale(0.9);
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.popup-green.show {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
    animation: jumpTwo 0.5s ease;
}

@keyframes jumpTwo {
    0% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    30% {
        transform: translateX(-50%) translateY(-10px) scale(1.1);
    }

    60% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}