#react-chatbot-container {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
  }

  
  #react-chatbot-iframe {
    border: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    z-index: 2147483647;
    background-color: transparent;
    transition: none !important;
  }
  
  @media only screen and (max-width: 812px), 
         (max-width: 1024px) and (orientation: landscape),
         (hover: none) and (pointer: coarse) {
    #react-chatbot-iframe.fullscreen {
      top: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      max-width: none !important;
    }
  }