﻿
.animate {
    animation: floating 2s infinite ease-in-out;
}

.opened {
    animation: none !important;
}
/* Floating animation for the chat button */
@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.disabled {
    pointer-events: none;
    background-color: #6c757d !important; /* Gray background when disabled */
    opacity: 0.65;
}


.button-anchor {
    position: fixed;
    right: 45px;
    bottom: 45px;
    width: 45px;
    height: 45px;
    background: #007bff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 9999;
    border: none;
    font-size: 22px;
    transition: box-shadow 0.2s;
}

.button-anchor.animate {
    animation: floating 2s infinite ease-in-out;
    animation-play-state: running;
}
/* .button-anchor.animate:hover {
    animation-play-state: paused;
} */
.button-anchor.animate.paused {
    animation-play-state: paused;
}

.iframe-anchor{
    position: fixed;
}