/* chatbot.css *                                                                                  
#chatbot-container {
    position: fixed;
    bottom: -800px; 
    right: 20px;
    z-index: 99999!important;
    background: white;
    border: 1px solid grey;
    transition: bottom 0.5s ease; 

}



#chatbot-iframe {
    height: 680px;
    width: 480px;
    border: 0;
} */

#chatbot-container {
  position: fixed;
  bottom: -800px;
  right: 20px;
  z-index: 99999 !important;
  background: white;
  border: 1px solid grey;
  transition: bottom 0.5s ease;
  max-height: 90vh;
}

/* #chatbot-iframe {
    height: 73vh;
    width: 480px;
    border: 0;
    max-height: 680px;
} */

#chatbot-iframe {
  height: 220vh;
  width: 600px;
  border: 0;
  max-height: 720px;
}

#close-chatbot {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 25px;
  background: red;
  border: none;
  border-radius: 0;
  width: 27px;
  height: 27px;
  text-align: center;
  line-height: 0;
  z-index: 10001;
  display: none;
  color: white;
  padding: 0;
}

#close-chatbot:hover {
  color: white !important;
}

#close-chatbot:focus {
  outline: none !important;
}
