
.chat-container {
    position: fixed;
    bottom: 160px;
    right: 14px;
    display: flex;
    flex-direction: column;
    z-index: 100;
  }

  .chat-box {
    display: none;
    position: fixed;
    bottom: 14px; /* Ajusta a altura da janela do chat para que fique acima do botão */
    right: 90px; /* Posiciona a janela do chat no canto inferior direito */
    width: 380px; /* Ajusta a largura da janela do chat */
    /*height: 500px;*/ /* Ajusta a altura da janela do chat */
    height: 70%;
    border: 1px solid #ccc;
    background-color: #fff;
    z-index: 100; /* Certifica-se de que a janela do chat fique em cima de outros elementos */
    /*border-radius: 10px;*/ /* Arredonda os cantos da janela do chat */
    box-shadow: gray 0px 0px 5px;    
  }



  
  #chatButton {
    background-color: #097fb7; /* Blue background color */
    color: white;
    border: none;
    border-radius: 50%; /* Rounded corners */
    width: 55px;
    height: 55px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px; /* Adjust spacing between button and chat box */
    padding: 0; /* Remove default padding */
    line-height: 1; /* Set line height to 1 to center the icon vertically */
    font-size: 22px;
    box-shadow: gray 0px 0px 5px;    
  }      

  #chatFrame {
    width: 100%;
    height: 100%;
    border: none;
    /*border-radius: 10px;*/
  }      

  .intro-box {
    display: block;
    position: fixed;
    /*width: 300px;*/
    bottom: 95px; /* Adjust the position as needed */
    right: 90px; /* Adjust the position as needed */
    padding: 10px;
    padding-right: 50px;
    padding-left: 20px;
    background-color: #ffffff;
    border: 1px solid #fff;
    /*border-radius: 5px;*/
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/ /* Shadow effect */
    z-index: 9999; /* Ensure introBox is above chatButton */
    box-shadow: gray 0px 0px 5px;
  }

  #closeIntro {
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
  }

  #closeIntro i {
    color: #999;
  }

  #closeIntro i:hover {
    color: #333;
  }

  #chatMariaButton {
    margin-top: 0px;
    background-color: #097fb7; /* Blue background color */
    color: white;
    border: none;
    border-radius: 10px; /* Rounded corners */
    /*width: 260px;*/
    /*height: 40px;*/
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding-left: 10px;
    padding-right: 10px;*/
    margin-bottom: 10px; /* Adjust spacing between button and chat box */
    line-height: 1; /* Set line height to 1 to center the icon vertically */
    font-size: 14px;
    padding: 10px;    
  } 

  .online{
    color: #25d366 !important;
    display: flex !important;
    align-items: baseline !important;       
  }
  .online-text{
    margin: 6px 0 10px 6px;
  }
  .online-status-indicator {
    position: relative !important;
    width: .8rem !important;
    height: .8rem !important;
    border-radius: 9999rem !important;
    background-color: #25d366 !important;
    box-shadow: 0 0 .2rem #0003 !important;
  }

  .header-106 {
    background-color: #097fb7!important;
  }

  @media only screen 
  and (width: 390px) 
  and (height: 844px) 
  and (-webkit-device-pixel-ratio: 3) { 
        .chat-box {
            width: 260px;
            right: 80px; 
        }
        .intro-box {
            right: 80px; 
            width: 300px;
            display: none;
        }
  }

  @media only screen 
  and (max-width: 820px)  { 
        .intro-box {
            display: none;
        }
  }

  @media only screen 
  and (max-width: 480px) 
 { 
        .chat-box {
            width: 70%;
            right: 80px; 
        }
  }