.chatbot-section{
  height: 100vh;
  overflow: hidden;
}
.pd-0{
  padding: 0 !important;
}
.chatbot-body{
  padding-top: 0 !important;
}
.chatbot{
  position: relative;
  background-image: url(../../assets/img/chat-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.chat-container{
  height: 100vh;
  overflow: auto;
  position: relative;
  padding: 18px 18px;
  padding-bottom: 150px;
}
.chatbot-banner-desktop{
  width: 100%;
  height: 100vh;
  object-fit: contain;
  object-position: left;
  background: linear-gradient(180deg, #CECECE 0%, #CBCBCB 14.84%, #CBCBCB 25.9%, #D6D6D6 55.72%, #DDDDDD 73.71%, rgb(220 220 220) 100%);
}
.chatbot-banner-mobile{
  width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: top;
}
.chat-sender{
  display: block;
  width: 100%;
  position: relative;
  margin: 15px 0;
}
  .chat-sender::before {
    display: block;
    clear: both;
    content: '';
    position: absolute;
    top: -6px;
    left: -7px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 15px 12px;
    border-color: transparent transparent #242424 transparent;
    -webkit-transform: rotate(-37deg);
    -ms-transform: rotate(-37deg);
    transform: rotate(-37deg);
}
.chat-repaly:before {
  display: block;
  clear: both;
  content: '';
  position: absolute;
  bottom: -3px;
  right: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 15px 12px;
  border-color: transparent transparent #000 transparent;
  -webkit-transform: rotate(37deg);
  -ms-transform: rotate(37deg);
  transform: rotate(37deg);
}
.chat-repaly:after {
  display: block;
  content: '';
  clear: both;
}




.chatbot ul{
  padding: 0;
}
.chatbot ul li:first-child{
  margin-top: 0;
}
.chatbot-header img{
  width: 32px;
  margin-right: 8px;
}
.chatbot-header {
  padding: 16px;
    background: #000;
    color: #fff;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
}
.chatbot-header h5{
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;

}
.chatbot ul li{
  list-style-type: none;
}
.sender-txt-con p {
  color: #fff;
  font-size: 13.3px;
  line-height: 1.5;
  font-weight: 400;
  padding: 15px;
  background: #242424;
  display: inline-block;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 0;
}
.chat-repaly{
  display: block;
  width: 100%;
  text-align: right;
  position: relative;
  margin: 15px 0;
}
.chat-repaly p {
  color: #fff;
  font-size: 13.3px;
  line-height: 1.5;
  font-weight: 400;
  padding: 15px;
  background: #000;
  display: inline-block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-bottom: 0;
}
.chat-divider {
  position: relative;
  z-index: 1;
  text-align: center;
}
.chat-divider h6 {
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #222;
  background: #fff;
  display: inline-block;
  padding: 0 5px;
  margin-bottom: 0;
}
.chat-divider:after {
  display: block;
  content: "";
  clear: both;
  position: absolute;
  top: 12px;
  left: 0;
  border-top: 1px solid #ebebeb;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.send-box {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5px 16px 16px;
  background: #fff;
  z-index: 9;
}
.send-box form {
  position: relative;
}
.send-box .form-control {
  display: block;
  width: 100%;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background-color: #242424 !important;
  background-clip: padding-box;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* border-radius: 0.25rem; */
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  /* background-color: #fff; */
  height: 40px;
  border-radius: 25px;
}
.send-box button {
  border: none;
  background: #fff;
  padding: 0;
  color: #545454;
  font-size: 13px;
  font-weight: 400;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50px;
  position: absolute;
  right: 6px;
  top: 4px;
  cursor: pointer;
}
/* width */
.chat-container::-webkit-scrollbar {
  width: 3px;
  border-radius: 8px;
}

/* Track */
.chat-container::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.chat-container::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
.chat-container::-webkit-scrollbar-thumb:hover {
  background: #555; 
}