/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* public/css/atlas-features-public.css */

/* Floating Facebook Messenger Button */
#fb-messenger-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: fadeBounceIn ease-in 4s;
}

#fb-messenger-button img {
    width: 240px; /* Adjust the size as needed */
    height: 70px; /* Adjust the size as needed */
    border: none;
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); */
    transition: transform 0.3s;
}

#fb-messenger-button img:hover {
    transform: scale(1.1);
}


@keyframes fadeBounceIn {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 0;
        transform: translateX(50px);
    }
    60% {
        opacity: .8;
        transform: scale(1);
        /* transform: translateX(10px); */

    }
    80% { 
        opacity: 1;
        transform: scale(1.1);

    }
    90% { 
        transform: scale(.9);

    }
    100% {
        opacity: 1; /* Ensure opacity is 1 at the end of the animation */
        transform: scale(1);
        transform: translateX(0)
    }
}
