
/* ------------------------------------------ */
/* Robot Chatbot Floating Button             */
/* ------------------------------------------ */
#robotLink {
    position: fixed;
    bottom: 40px;
    right: 85px;
    width: 100px;
    height: 100px;
    z-index: 1000;
    cursor: pointer;
}
#robotLink .robot-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#robotLink .robot-hover {
    display: none;
}
#robotLink:hover .robot-normal {
    display: none;
}
#robotLink:hover .robot-hover {
    display: block;
}
@media (max-width: 768px) {
    #robotLink {
        bottom: 75px;
        right: 10px;
        width: 70px;
        height: 70px;
    }
}