
    @import url('https://fonts.googleapis.com/css2?family=Lobster&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    .chatbot-container {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 320px;
      border-radius: 12px;
      overflow: hidden;
     font-family: 'Poppins', Tahoma, Geneva, Verdana, sans-serif;
      z-index: 999;
      display: block;
    }

    .chatbot-header {
      background-color:rgb(255, 238, 0);
      color: black;
      padding: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .chatbot-header p {
      margin: 0;
   
    }

   #boton-abrir-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: rgb(255, 218, 11);
  color: black;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  font-size: 20px;
  padding: 0;
}

