/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
}
.chatBot::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.chatBot::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: #e3e3e3;
  border-radius: 30px;
}
.chatBot::-webkit-scrollbar-thumb {
  -webkit-box-shadow: none;
  background-color: #00aeff;
  border-radius: 30px;
}

/* Button */
.chatBot_btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #00aeff;
  border: 0;
  z-index: 99;
  position: fixed;
  bottom: 30px;
  right: 90px;
  cursor: pointer;
  transition: all 0.5s;
  overflow: hidden;
}
.chatBot_btn:hover { 
  transform: scale(1.1);
}
.chatBot_btn img {    width: 100%;    height: 100%;    object-fit: cover;}
.chatBot_btn svg{
  max-width: 21px;
}
.chatBot_btn:hover {
  background-color: rgba(144, 202, 249, 0.9);
}

/* Chat Box */
.chatBot_box {
  position: fixed;
  background-color: #ffffff;
  box-shadow: 5px 5px 10px rgba(0,0,0,.15);
  bottom: 20px;
  right: 20px;
  width: 450px;
  height: calc(100% - 30px);
  border-radius: 10px;
  overflow: hidden;
  transform: scale(0);
  transform-origin: right bottom;
  transition: transform 0.3s;
  max-height: 800px;
  min-height: 300px;
      z-index: 999;
}
.chatBot_box.open {
  transform: scale(1);
}

/* Header */
.chatBot_header {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #00335A;
  color: #ffffff;
  gap: 10px;
}
.chatBot_header_top img{
  max-width: 22px;
}
.chatBot_header h3 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0;
}
.chatBot_header .closeIcon {
  width: 14px;
  height: 14px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}
.chatBot_header .closeIcon::before,
.chatBot_header .closeIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transform: translateY(-50%) rotate(45deg);
}
.chatBot_header .minimizeIcon{
  width: 14px;
  height: 14px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
}
.chatBot_header .minimizeIcon::before,
.chatBot_header .minimizeIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transform: translateY(-50%);
}
.chatBot_header .closeIcon::after {
  transform: translateY(-50%) rotate(-45deg);
}
.chatBot_header .closeIcon:hover::before,
.chatBot_header .closeIcon:hover::after {
  opacity: 0.8;
}

/* Body */
.chatBot_body {
  padding: 15px;
  background-color: #f6f6f6;
  height: calc(100% - 121px);
  overflow: auto;
}
.chatBot_body img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;    background-color: #fff;    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;    border: 2px solid rgb(255, 255, 255);
}
.chatBot_body_cnt_list .listItem svg {
    flex-shrink: 0;
}
/* Messages */
.chatBot_msg {
  color: #000000;
  font-size: 14px;
  max-width: calc(100% - 80px);
  width: 100%;
}
.chatBot_msg span {
  padding: 15px;
  display: inline-block;
}
.chatBot_msg pre{
  overflow: hidden;
  font-size: inherit;
  white-space: pre-wrap;
  border-radius: 0px 10px 10px 10px;
  background-color: #dce0e0;
  padding: 15px;
  display: inline-table;
  font-family: inherit;
  margin-bottom: 0;
}
.chatBot_msg .bot-message-content {
  overflow: hidden;
  font-size: inherit;
  border-radius: 0px 10px 10px 10px;
  background-color: #ffffff;
  padding: 15px;
  display: inline-block;
  font-family: inherit;
  margin-bottom: 0;
  line-height: 1.5;
}
.chatBot_msg .bot-message-content ul,
.chatBot_msg .bot-message-content ol {
  margin: 10px 0;    list-style-type: none;    padding-left: 15px;
}.chatBot_msg .bot-message-content ul li, .chatBot_msg .bot-message-content ol li {    position: relative;    font-size: 14px;padding-left: 18px;}.chatBot_msg .bot-message-content ul li:before,.chatBot_msg .bot-message-content ol li:before {    position: absolute;    top: 8px;    left: 0;    width: 6px;    height: 6px;    background-color: rgba(0, 0, 0, 0.7);    content: "";    border-radius: 50%;}.chatBot_msg .bot-message-content ul li:not(:last-child), .chatBot_msg .bot-message-content ol li:not(:last-child) {    margin-bottom: 7px;}
.chatBot_msg .bot-message-content p {
  margin: 10px 0;font-size: 14px;line-height: 1.4;
}
.chatBot_msg .bot-message-content p:first-child {
  margin-top: 0;
}
.chatBot_msg .bot-message-content p:last-child {
  margin-bottom: 0;
}

.chatBot_send,
.chatBot_receive {
  display: flex;
  margin-bottom: 20px;
}

.chatBot_send img {
  margin-right: 8px;
}
.chatBot_send span {
  border-radius: 0px 10px 10px 10px;
  background-color: #dce0e0;
}

.chatBot_receive {
  flex-direction: row-reverse;
  text-align: right;
}
.chatBot_receive img {
  margin-left: 8px;
}
.chatBot_receive span {
  border-radius: 10px 0px 10px 10px;
  background-color: rgba(0, 174, 255, 0.3);
  color: #000000;
}

/* Footer */
.chatBot_footer {
  padding: 10px 15px;
  padding-right: 60px;
  border-top: 1px solid #E1E1E1;
  position: relative;
  height: 60px;
}
.chatBot_footer input {
  border: 0;
  width: 100%;
  font-size: 16px;
  color: #000000;
  height: 40px;
}
.chatBot_footer input:focus {
  outline: none;
}

/* Send Button */
.chatBot_sendBtn {
  width: 40px;
  height: 40px;
  background-color: #00aeff;
  color: #ffffff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  box-shadow: 0;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.chatBot_sendBtn:hover {
  background-color: rgba(0, 174, 255, 0.9);
}
.bot-message-content p a {
  color: #90caf9;
    font-weight: 500;
}
.chatBot_closeSec{
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 0 0 10px 10px;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
  transition: all 0.5s;
  display: none;
}
.chatBot_closeSec.open{
  display: flex;
  bottom: 0;
}
.chatBot_closeSec .cancelChatBtn{
  border: 0;padding: 0;margin: 0;background-color: transparent;
  color: #00aeff;
}
.chatBot_closeSec .endChatBtn{
  background-color: #00aeff;border-color: #00aeff;
  color: #ffffff;
}
.chatBot_closeSec .endChatBtn:focus, 
.chatBot_closeSec .endChatBtn:active{
  background-color: #00aeff;border-color: #00aeff;
  color: #ffffff;
}
.chatBot_box_overlay{
  position: absolute;z-index: 1;left: 0;top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  overflow: hidden;
  content: '';
  display: none;
}
.chatBot_box_overlay.open{
  display: block;
}
.chatBot_body_cnt_top{
  margin-bottom: 15px;
}
.chatBot_body_cnt_top img{
  width: 45px;height: 45px;object-fit: cover;
}
.chatBot_body_cnt_top p{
  font-size: 15px; margin-bottom: 0;
}
.chatBot_body_cnt_list .listItem{
  background-color: rgba(0, 174, 255, 0.35);border-radius: 5px;
  padding: 10px;  opacity: 0.9;transition: all 0.3s;
}
.chatBot_body_cnt_list .listItem:hover{
  opacity: 1;
  cursor: pointer;
  transform: scale(0.98);
}
.chatBot_body_cnt_list .listItem h4{
  font-size: 16px;margin-bottom: 5px;
}
.chatBot_body_cnt_list .listItem p{
  font-size: 14px;margin-bottom: 0;
  color: #343434;line-height: 1.4;  
}
.chatBot_body_itemData{
  margin-top: 15px;
}
.chatBot_suggested_questions {
  margin-left: 48px;
  max-width: calc(100% - 80px);
  width: 100%;
  cursor: pointer;
}
.chatBot_suggested_questions .chatBot_msg{
  max-width: 100%;
}

/* Breakpoint MD */
@media (max-width: 767px) {
  .chatBot_btn {    bottom: 15px;    right: 70px;
  }
  .chatBot_btn svg {
    width: 22px;
  }

  .chatBot_link {
    width: 50px;
    height: 50px;
  }
  .chatBot_link svg {
    width: 18px;
  }

  .chatBot_header {
    padding: 10px 15px;
  }
  .chatBot_header h3 {
    font-size: 20px;
  }

  .chatBot_box {
    width: 360px;
    height: 350px;
  }

  .chatBot_body {
    height: calc(100% - 92px);
  }
  .chatBot_body img {
    width: 30px;
    height: 30px;
  }
  .chatBot_suggested_questions {
    margin-left: 38px;
  }

  .chatBot_send,
  .chatBot_receive {
    margin-bottom: 10px;
  }

  .chatBot_msg span {
    padding: 10px;
  }

  .chatBot_footer {
    height: 50px;
    padding: 5px 15px;
  }
  .chatBot_footer input {
    height: 40px;
    font-size: 14px;
  }

  .chatBot_sendBtn {
    width: 30px;
    height: 30px;
  }
  .chatBot_sendBtn svg {
    width: 13px;
  }
  .chatBot_body_cnt_top p {
      font-size: 14px;
  }
  .chatBot_body_cnt_list .listItem h4 {
      font-size: 15px;
  }
  .chatBot_body_cnt_list .listItem p {
      font-size: 13px;
  }
  .chatBot_header_top img {
      max-width: 18px;
  }
  .chatBot_closeSec{
    padding: 15px;
  }
}

/* Breakpoint SM */
@media (max-width: 575px) {
  .chatBot_header h3 {
    font-size: 16px;
  }
  .chatBot_box {
    width: 325px;
  }
}
@media (max-width: 419px) {
  .chatBot_box {
    width: 280px;
  }
}

.chatBot_send .loader {
  display: flex;
  gap: 6px;
  align-items: center;
}

.chatBot_send .loader .loader_dot {
  width: 8px;
  height: 8px;
  background: #009688;
  border-radius: 50%;
  animation: blink 1s infinite ease-in-out;
  padding: 0;
}

.chatBot_send .loader .loader_dot:nth-child(2) {
  animation-delay: 0.2s;
}
.chatBot_send .loader .loader_dot:nth-child(3) {
  animation-delay: 0.4s;
}

.chatBot_receive .chatBot_msg span {
  text-align: left;
}
.chatBot_closeSec .endChatBtn:hover {
  background-color: #00aeff;
  border-color: #00aeff;
  color: #ffffff;
}
@keyframes blink {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}
.bot-message-content .property-card h5{	font-size: 15px;    margin-bottom: 10px;    font-weight: 500;}
.bot-message-content .property-card p a {
  color: #90caf9;
  font-weight: 500;
  word-break: break-all;
}
.bot-message-content .property-card ~br {
    display: none;
}



.chatBot_box.expand{
  width: 900px;
}
.expandIconSec, .collapseIconSec {
  cursor: pointer;
}
.chatBot_body_cnt{
  padding: 15px;
  border-radius: 10px;
  background-color: #ffffff;
}
.chatBot_body_disclaimerSec .disclaimer_btn {
  border: 0;padding: 0;margin: 0;background-color: transparent;
  color: #808080;font-size: 14px;font-weight: 400;
}
.chatBot_body_disclaimerSec .disclaimer_btn:hover,
.chatBot_body_disclaimerSec .disclaimer_btn:focus,
.chatBot_body_disclaimerSec .disclaimer_btn:active
.chatBot_body_disclaimerSec .disclaimer_btn.active {
  background-color: transparent;
  color: #808080;outline: none;border: none;
}
.chatBot_body_disclaimerSec_cnt{
  margin-top: 10px;
}
.chatBot_body_disclaimerSec_cnt p{
  color: #808080;font-size: 12px;margin-bottom: 0;line-height: 1.4;
}
.chatBot_body_heading{
  font-size: 38px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 600;
}
.chatBot_footer_msgIcon{
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    cursor: pointer;
}
.chatBot_footer input {
  padding-left: 22px;
}
@media(max-width: 1199px){
  .chatBot_box.expand{
    width: 700px;
  }
  .chatBot_body_heading{
    font-size: 34px;
    margin-bottom: 15px;
  }
}
@media(max-width: 991px){
  .chatBot_box.expand{
    width: 600px;
  }
  .chatBot_body_heading{
    font-size: 30px;
  }
}
@media(max-width: 767px){
  .chatBot_box.expand{
    width: 500px;
  }
  .chatBot_body_heading{
    font-size: 24px;
  }
  .chatBot_footer {
    padding-right: 50px;
  }
}
@media(max-width: 575px){
  .chatBot_box.expand{
    width: calc(100% - 40px);
  }
  .chatBot_body_heading{
    font-size: 20px;
  }
  .chatBot_footer_msgIcon svg{
    max-width: 15px;max-height: 15px;
  }
  .chatBot_footer input {
    padding-left: 20px;
  }
}