#pt-chat-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  display: block !important;
  z-index: 900;
}

#pt-chat-window {
  display: none;
  position: fixed;
  /* bottom: 20px; */
  /* right: 20px; */
  /* width: 300px; */
  background: white;
  /* border-radius: 10px; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* z-index: 99; */
  /* new css */
  height: 95%;
  z-index: 1000;
  max-width: 421px !important;
  width: 100%;
  right: 30px;
  border-radius: 20px;
  bottom: 20px;
  /* display: flex; */
  flex-direction: column;
  justify-content: space-between;

  @media only screen and (max-width: 425px) {
   
      height: 90%;
      max-width : 350px !important;
    
  }
}

#pt-chat-header {
  /* background: #0073e6; */
  border-radius: 20px 20px 0 0;
  color: white;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  /* new css */
  height: 66.3px;
  align-items: center;
  display: flex;
  justify-content: space-around;
  background-color: #ef8207;
}
#pt-chat-close {
  background: transparent;
  border: 0;
  color: #fff;
  padding-left: 85px;
  font-size: 18px;
}
#pt-chat-body-outer{
  max-height: 85%;
}

#pt-chat-body {
  padding: 10px;
  max-height: 90%;  
  /*overflow-y: auto;*/
}

#pt-chat-messages{
     overflow-y: auto;
     max-height: 380px;
}

#pt-chat-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

#pt-chat-footer a{
  margin: 0 10px;
}
.bot {
  background: #ef8207;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
}

#green-dot{
    font-size: 60px;
    color: #00ff00;
    position: relative;
    left: 80px;
    bottom: 50px;
    z-index: 2;
}



.user {
  background: #5d6157;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
}
.city-btn {
  display: block;
  width: 100%;
  padding: 10px;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  border-radius: 6px;
  background: #ef8207;
}
.opt-btn {
  width: 100%;
  padding: 10px;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  border-radius: 6px;
  background: #ef8207;
}
#btn-appointment {
  background: transparent;
  border: 0;
}

.describe-problem{
  color: #ef8207;
}
.inline-container{
    display: flex;
    border: 0.1px solid;
    border-radius: 20px;
    border-color: #e4eaec;
}

.inline-container input{
  border: none !important;
  border-radius: 1.32rem !important;
}

.inline-container button{
  border: none !important;
  /*font-size: 24px;*/
  /* transform: rotate(-45deg); */
  
     color: #4f81bd;
    background: transparent;
    margin: 8px;
}

/*.send-button{*/
  /* border: 1px solid #ef8207; */
/*    color: #4f81bd;*/
/*    background: transparent;*/
/*    margin-top: 8px;*/
/*    margin-right: 8px;*/
/*}*/


/* anmation */


/*  */
#pt-typing-indicator-outer{
    display: flex;
}

#pt-typing-indicator {
  /* display: none; */
  margin: 10px;
  font-size: 16px;
  color: gray;
  background-color: #ef8207;
  padding: 10px;
  border-radius: 8px;
}

.typing-indicator span {
  width: 12px;
  height: 10px;
  background-color: #ef8207;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 1s; }
.typing-indicator span:nth-child(3) { animation-delay: 1s; }

@keyframes blink {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/*.icon {*/
/*  animation: Shake 0.5s linear infinite;*/
/*}*/

/*@keyframes Shake {*/
/*  0% {*/
/*      transform: rotate(5deg);*/
/*  }*/

/*  25% {*/
/*      transform: rotate(-6deg);*/
/*  }*/

/*  50% {*/
/*      transform: rotate(5deg);*/
/*  }*/

/*  75% {*/
/*      transform: rotate(-6deg);*/
/*  }*/

/*  100% {*/
/*      transform: rotate(5deg);*/
/*  }*/
/*}*/

.banner{
  /*right: 10%;*/
  position: relative;
  background: #ef8207;
  padding: 8px;
  border-radius: 8px;
  color: #fff;
  margin-top: 6px;
}

#pt-typing-indicator {
    display: flex;
    justify-content: left;
    gap: 5px;
    margin: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

input {
    text-transform: none !important;
}