#chatbot{
    position: absolute;
    bottom: 0;
    right: 0;
}

.b-agent-demo_header-wrapper{
    display: none !important;
}

#contenedorChatbot {
    position: fixed;
    bottom: 10px; 
    right: 20px;
    width: 322px;
    height: 402px;
    border: 1px solid black;
    background-color: white;
    z-index: 800;
}

@keyframes flotar {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px); /* Ajusta este valor para controlar la altura de la flotación */
    }
  }
  
  .img-flotante {
    animation: flotar 3s ease-in-out infinite;
    cursor: pointer;
  }