/* Chat icon */
.chat-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    cursor: pointer;
    background-color: var(--thm-base);
    /* color: var(--thm-base); */

    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Chat box */
  .chat-box {
    position: fixed;
    bottom: 80px;
    left: 20px;
    z-index: 9999;
    width: 300px;
    height: 390px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.3);
    display: none;
  }
  
  /* Chat header */
  .chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
  }
  
  /* Chat body */
  .chat-body {
    padding: 10px;
    height: 320px;
    overflow-y: scroll;
  }
  
  /* Close button */
  .close-btn {
    background-color: transparent;
    border: none;
    font-size: 16px;
    color: var(--thm-base);
    cursor: pointer;
  }
  .button-box-chat{
    height: 80px;
  }
  .ones{
    height: 70px;
  }
 
  /* Show chat box when icon is clicked */
  /* .chat-icon:hover + .chat-box,
  .chat-box:hover {
    display: block;
  } */
/* Set the width and height of the scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}

/* Add a background color to the scrollbar track */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Add a background color to the scrollbar thumb */
::-webkit-scrollbar-thumb {
  background-color:var(--thm-base);
  border-radius: 50px;
}

/* Change the color of the scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #000000;
}

@media (max-width: 767px){
  .chat-icon {
    position: fixed;
    bottom: 20px;


    color: #fff;
   
 
    display: flex;

  }


}