.open_chat_bot {
    background: url(/themes/_gavias/daudo_subtheme/images/chatbot-icon.png) center center no-repeat;
    background-size: cover;
    cursor: pointer;
    width: 100px;
    height: 100px;
    padding: 15px;
    text-indent: -9999px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    animation: linear infinite;
    animation-name: run;
    animation-duration: 1s;
}

.chatbot_iframe {
    position: fixed;
    bottom: -6px;
    z-index: 1000;
    right: 140px;
    display: block;
}

.chatbot_iframe iframe {
    border-radius: 6px;
    box-shadow: 0 2px 15px rgb(0 0 0 / 6%), 0 3px 32px rgb(0 0 0 / 16%);
    height: 80vh;
    max-height: 600px;
}


@keyframes run {
    0% {
      right: 0;
    }
    50% {
      right: 2%;
    }
    100% {
      right: 0;    
    }
}
  
@keyframes run-mobile {
    0% {
      right: 0;
    }
    50% {
      right: 5%;
    }
    100% {
      right: 0;    
    }
}