@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500&family=Nunito:wght@300;400;500;600;700;800&family=Open+Sans:wght@700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

:root {
  --chat-primary-bg-color: #9b4598;
  --chat-primary-text-color: #ffffff;
  --chatbot-background: #f6f6f6;
  --submenu-bg-color: #fff;
  --submenu-hover-bg-color: rgba(155, 69, 152, 0.2);
  --submenu-text-color: rgba(13, 35, 69, 1);
  --bot-message-bg-color: #fff;
  --bot-message-text-color: #0D2345;
  --transition: all 0.3s ease-in-out;
  --logo-bg-color: #fff;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}



button[disabled],
html input[disabled] {
  cursor: not-allowed !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

option:not(:first-of-type) {
  color: black;
}

/* *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}
body{overflow: hidden;background: #f2f2f2;} */
/* .flatpickr-calendar{
  left: 0 !important;
  right: 0 !important;
} */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.btn-payment-link {
  margin-top: 18px;
  line-height: normal;
  border: none;
  background: var(--chat-primary-bg-color);
  padding: 4px 12px;
  color: var(--chat-primary-text-color);
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
}

.payment-link {
  display: inline-block;
  margin-top: 18px;
  line-height: normal;
  border: none;
  background: var(--chat-primary-bg-color);
  padding: 4px 12px;
  color: var(--chat-primary-text-color);
  font-weight: 500;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 700;
}

.chatLft .btn-payment-link i {
  background-color: transparent;
  margin-left: 5px;
  margin-right: 0;
}

.payment-link:hover {

  background: var(--chat-primary-bg-color);
  text-decoration: underline;
}


#click {
  display: none;
}

.ai-chatbot .chtIcn {
  position: fixed;
  right: 30px;
  bottom: 20px;
  height: 60px;
  width: 60px;
  /* background: var(--chat-primary-bg-color); */
  background: var(--logo-bg-color);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 12px; */
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.34) 0px 3px 8px;
}

.ai-chatbot .chtIcn .ai-bot-img>img {
  transform: scale(0.9);
  transition: all 0.2s ease;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  width: 40px;
  height: 40px;
}

.ai-chatbot .chtIcn .ai-bot-img {
  display: flex;
  align-items: center;
  justify-content: center;
}



#click:checked~label .ai-bot-img>img {
  transform: scale(1);
}

#click:checked~label i.fab {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(180deg);
}

.ai-chatbot .chatWrapper {
  position: fixed;
  z-index: 9999;
  right: 30px;
  bottom: 0px;
  max-width: 375px;
  height: 85vh;
  width: calc(100vw - 50px);
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
  /* border: 1px solid #e9e9e9 !important; */
}

.chatWrapper.full-screen {
  max-width: none;
  height: calc(95vh - 70px);
}


.logo img {
  margin-right: 0.25rem !important;
}

.date-input,
.adult-count {
  margin-bottom: 30px;
}

.div-date-result {
  width: 285px;
  background-color: rgba(247, 249, 253, 1);
  height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(131, 142, 159, 0.3);
}

.date-input .card,
.adult-count .card,
.booking-details .card {
  border-radius: 8px;
  border: 1px solid rgba(78, 160, 247, 0.1);
  background: #fff;
  box-shadow: 0px 2px 15px 0px rgba(78, 160, 247, 0.08);
}

.chatWrapper.ai-chatbot-open {
  opacity: 1;
  bottom: 85px;
  pointer-events: auto;
  /* padding: 5px; */
  box-sizing: border-box;
}

.ai-chatbot .chatWrapper .ai-cb-header {
  font-weight: 500;
  background: var(--chat-primary-bg-color);
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  gap: 12px;
}

.chatWrapper .ai-cb-header .aicb-lImg {

  position: relative;
  display: inline-block;

}

.chatWrapper .ai-cb-header .aicb-lImg img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* height: 100%;
  width: 100%; */
  background-color: var(--logo-bg-color);
  overflow: hidden;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  padding: 3px;
}

.chatWrapper .ai-cb-header .ai-cb-right {
  width: calc(100% - 52px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;

}

.ai-cb-header .ai-cb-right .ai-cb-iright {
  width: 60px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}


.ai-cb-right .ai-cb-iright .ai-chat-close,
.ai-cb-right .ai-cb-iright .ai-chat-max-btn>button {
  all: unset;
  display: flex;
  cursor: pointer;
}

.ai-cb-right .ai-cb-iright .ai-chat-max-btn>span {
  display: inline-flex;
  align-items: center;
}

.ai-cb-right .ai-cb-iright .ai-chat-close svg {
  width: 22px;
  height: 22px;
  fill: var(--chat-primary-text-color);
}

.ai-cb-right .ai-cb-iright .ai-chat-max-btn svg {
  fill: var(--chat-primary-text-color);
}

.ai-cb-right .ai-cb-iright .ai-chat-max-btn .ai-chat-min {
  display: none;
}

.full-screen .ai-cb-right .ai-cb-iright .ai-chat-max-btn .ai-chat-min {
  display: block;
}

.full-screen .ai-cb-right .ai-cb-iright .ai-chat-max-btn .ai-chat-max {
  display: none;
}


.ai-cb-header .ai-cb-right .ai-cb-ileft {
  width: calc(100% - 70px);
  color: var(--chat-primary-text-color);
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}


.ai-chatbot .chatWrapper .chat-box {
  box-sizing: border-box;
  padding: 15px;
  width: 100%;
  /* max-height: 60vh;
  min-height: 60vh; */
  overflow-y: auto;
  font-family: 'Nunito', sans-serif;
  background: var(--chatbot-background);
  height: calc(100% - 90px);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}


.ai-chatbot .chatWrapper .ai-chatbot-footer {
  padding: 0;
  /* display: none; */
}

.powered-by {
  padding-top: 7px;
  font-size: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.room-title {
  font-size: 14px;
  line-height: 19.1px;
  font-weight: 400;
  margin-bottom: -5px !important;
}

.bed {
  height: 12px;
  width: 12px;
}

.room-desc {
  font-family: Manrope;
  font-weight: 400;
  font-size: 8px;
  line-height: 10.93px;
  color: rgba(149, 164, 182, 1);
}

.room-price {
  font-family: Manrope;
  font-weight: 600;
  font-size: 16px;
  line-height: 21.86px;
  color: rgba(13, 35, 69, 1);
}

.powered-by span {
  color: #F08C36;
  font-family: Open Sans;
  padding-left: 2px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.chatInput input,
#booking-form input,
.adult-div select,
.booking-details-form input {
  border-radius: 10px;
  border: 1px solid rgba(78, 160, 247, 0.10);
  background-color: #FFF;
  box-shadow: 0px 2px 15px 0px rgba(78, 160, 247, 0.08);
  height: 50px;
  padding: 12px;
  outline: none;
  font-size: 16px;
  width: 100%;
}

.adult-div select {
  padding-left: 20px;
}

.chatInput input {
  padding: 12px 130px 12px 40px;
}

.chatInput img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

#booking-form img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

#booking-form .cal-input {
  left: 12px;
}

#booking-form .reservation {
  right: 12px;
}

#booking-form input {
  padding-left: 40px;
  border-radius: 8px;
  border: 1px solid rgba(155, 69, 152, 0.2);
  background: #F7F9FD;
  box-shadow: none;
}

.chatInput .smily {
  left: 12px;
}

.chatInput .microphone {
  right: 100px;
}

.chatInput .translate {
  right: 60px;
}

.chatInput .send {
  right: 6px;
}

.chathead_info {
  position: relative;
  display: flex;
  margin-right: 15px;
}

.chathead_info .chatThumb {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.3);*/
}

.chathead_info .chatThumb img {
  object-fit: cover;
  width: auto;
}

.chatLbl {
  position: relative;
  display: flex;
  flex-direction: column;
}

.chatLbl h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
}

.chatLbl span {
  font-size: 12px;
  color: #c5e3ff;
  font-weight: 300;
  line-height: normal;
}

.ai-chatbot .chat-box .chatbx,
.ai-chatbot .ai-chatbot-footer .chatbx {
  display: flex;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
  flex-grow: 1;
}


.ai-chatbot .ai-chatbot-footer .chatbx {
  justify-content: space-between;
  margin-bottom: 0;
}

.chatbx:last-of-type {
  margin-bottom: 0;
}

.chat-box .chatbx.chatRgt {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.chatbx .chatRgt-upper,
.chatbx .chatRgt-upper {
  border-radius: 6px;
  font-size: 14px;
  color: #606060;
  padding: 8px;
}

.ai-chatbot .chatLft .chatRgt-upper,
.ai-chatbot .msg-chat .chatRgt-upper {
  border-radius: 8px 8px 8px 0px;
  /* background: rgba(149, 164, 182, 0.10); */
  background-color: var(--bot-message-bg-color);
  color: var(--bot-message-text-color);
  font-size: 14px;
  line-height: 19px;
  display: block;
  word-break: break-word;
}

.ai-chatbot .chatRgt .chatRgt-upper,
.ai-chatbot .chatRgt .chatRgt-upper {
  border-radius: 8px 8px 0px 8px;
  background: var(--chat-primary-bg-color);
  color: var(--chat-primary-text-color);
}

.ai-chatbot .chat-box .listing,
.ai-chatbot .ai-chatbot-footer .listing {
  padding: 4px 8px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: var(--submenu-bg-color);
  color: rgba(13, 35, 69, 1);

  cursor: pointer;
  font-size: 14px;
  line-height: normal;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  align-items: center !important;
  display: flex !important;
}

.chat-box .listing a {
  color: #0D2345;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.chat-box .listing:hover {
  border: 1px solid rgba(155, 69, 152, 0.2);

  /* background: #838E9F; */
  background: var(--submenu-hover-bg-color);
}

.chat-box .listing:hover a {
  color: #fff;
}

.chat-box .btn-continue,
.chat-box .btn-book,
.webSocket-wrapper > button {
  padding: 5px 15px;
  border-radius: 6px;
  border: 1px solid #FEE9E6;
  background: var(--chat-primary-bg-color);
  color: var(--chat-primary-text-color);
  margin: 0 auto;
  border: 1px solid var(--chat-primary-bg-color);
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-transform: capitalize !important;
  transition: var(--transition);
}

.chat-box .btn-continue:hover,
.chat-box .btn-book:hover {
  border-color: var(--chat-primary-bg-color);
  color: var(--chat-primary-text-color);
  background-color: color-mix(in srgb, var(--chat-primary-bg-color) 30%, #00000000);
}

.booking-form:before,
.booking-form::after {
  content: "";
  position: absolute;
}

.booking-form:before {
  width: 1px;
  height: 46px;
  border: 1px dashed #9b4598;
  left: 24px;
  top: 50px;
}

.booking-form::after {
  background-image: url(https://chatbot.staah.net/arrow.svg);
  width: 22px;
  height: 22px;
  top: 61px;
  left: 13px;
  background-color: #fff;
}

.chat-box .listing .btn {
  border: none;
  padding: 0;
}

.chat-box .content-room {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(78, 160, 247, 0.10);
  background: #FFF;
  -webkit-box-shadow: 0px 2px 15px 0px rgba(78, 160, 247, 0.08);
  box-shadow: 0px 2px 15px 0px rgba(78, 160, 247, 0.08);
  margin-bottom: 10px;
  cursor: pointer;
}

.chat-box .content-room img.rounded {
  min-width: 70px;
}

.chat-box .content-room .price-ph {
  color: #0D2345;
  font-family: Manrope;
  font-size: 16px;
  font-weight: 600;
}

.chat-box .chtInfo {
  display: flex;
  background: transparent;
  color: #c9c9c9;
  font-size: 12px;
  padding: 4px;
  font-weight: 400;
}

.chInr_wrap {
  display: flex;
  max-width: 85%;
}

/* scrollbar */
.scroll-bar-wrap {
  position: relative;
  height: calc(100% - 60px);
}

.ai-scroll-box {
  position: relative;
  overflow-y: auto;
  scrollbar-color: #c9c9c9 white;
  scrollbar-width: thin;
  border-radius: 4px;
  opacity: 1;
}

.ai-scroll-box::-webkit-scrollbar,
.daterangepicker::-webkit-scrollbar {
  width: 4px
}

.ai-scroll-box::-webkit-scrollbar-track,
.daterangepicker::-webkit-scrollbar-track {
  background: #fff;
}

.ai-scroll-box::-webkit-scrollbar-thumb,
.daterangepicker::-webkit-scrollbar-thumb {
  background: #c9c9c9;
  overflow: visible;
}

.cover-bar {
  position: absolute;
  background: #fff;
  height: 100%;
  top: 0;
  right: 1px;
  width: .4em;
  webkit-transition: all .5s;
  opacity: 1;
}

.scroll-bar-wrap:hover .cover-bar {
  opacity: 0;
  webkit-transition: all .5s;
}

.head-text a.btnClose {
  background: transparent;
  border: none;
  position: absolute;
  right: 20px;
}

.head-text a.btnClose i {
  font-size: 30px;
  color: #fff;
}



/* .chInr_wrap .leftImg,
.chatRgt .rightImg {
  border-radius: 50%;
  background: rgba(155, 69, 152, 0.2);
  margin-right: 12px;
  margin-top: 10px;
  height: 40px;
  width: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  box-sizing: border-box;
  position: relative;
} */

.chInr_wrap .leftImg img {
  width: 100%;
  height: 100%;
}

.chatRgt .rightImg {
  margin: 0;
  margin-left: 10px;
}

.msg-timing {
  font-size: 12px;
  color: rgba(149, 164, 182, 1);
  letter-spacing: 0.12px;
  font-family: Manrope;
  /* text-align: right; */
  margin-top: 3px;
}

.chat-box .bot-time {
  text-align: left;
}


.human-time {
  text-align: right;
}

/* .chatLft i {
  background: #e6e6e6;
  margin-right: 5px;
} */

.chat-flex-column {
  flex-direction: column !important;
}

.chatbx.chatRgt i {
  background: #0080f5;
  margin-left: 5px;
  color: #fff;
}

.chatOption h6 {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 15px;
}

.chatOption .chtRdo-inr {
  background: #eaf5ff;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #c9e2f9;
}

.chatOption .chtRdo-inr:last-of-type {
  margin-bottom: 0;
}

.mBtm25 {
  margin-bottom: 25px;
}

.rdoWrap-main {
  max-width: 100%;
  width: 90%;
}


/* The chatOptn_rdoWrap */
.chatOptn_rdoWrap {
  display: block;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 22px;
}

.chatOptn_rdoWrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #7ec1ff;
  padding: 6px;
}

.chatOptn_rdoWrap:hover input~.checkmark {
  background-color: #8ac6ff;
}

.chatOptn_rdoWrap input:checked~.checkmark {
  background-color: #2196F3;
  border: transparent;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.chatOptn_rdoWrap input:checked~.checkmark:after {
  display: block;
}

.chatOptn_rdoWrap .checkmark:after {
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

/* Media Query */
@media (max-width: 432px) {
  .chatWrapper {
    width: 100%;
    right: 6px;
  }
}

@media (max-width: 393px) {
  .chatWrapper {
    width: 100%;
    right: 0;
  }
}


/* Loader */
.ai-chatbot .chatWrapper .loadWrap {
  height: 30px !important;
  padding: 0 12px !important;
}

.ai-chatbot .chatWrapper .ai-loader {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: 0.5s linear;
  animation: unset !important;
  border: unset !important;
}

.ai-chatbot .chatWrapper .ball {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: bounce6135 1s alternate infinite;
  transition: 0.6s linear;
}

.ai-chatbot .chatWrapper .ball {
  background: #fff;
}

.ai-chatbot .chatWrapper .ball:nth-child(2) {
  animation-delay: 0.25s;
}

.ai-chatbot .chatWrapper .ball:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes bounce6135 {
  from {
    transform: scale(2);
  }

  to {
    transform: scale(1);
  }
}

.datePickerCombo .editBtn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(131, 142, 159, 0.10);
  background: #FFF;
  box-shadow: 0px 2px 15px 0px rgba(78, 160, 247, 0.08);
}


/* ===================== */
.ai-chatbot .chatWrapper .ai-chatbot-footer input {
  padding: 5px 50px 5px 15px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: unset;
  font-size: 14px;
  /* border-top: 1px solid #eee; */
  border-radius: unset;
  box-shadow: unset;
}

.ai-chatbot .chatWrapper .form_chatbot {
  position: relative;
  margin: 0;
}

.ai-chatbot .chatWrapper .form_chatbot .btn-send {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  line-height: 0;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #9b4598; */
}

.ai-chatbot .chatWrapper .form_chatbot #system_message {
  padding: 12px;
  border-radius: 0;
  padding-right: 55px;
}

.ai-chatbot .chatWrapper .form_chatbot .btn-send svg {
  fill: var(--chat-primary-bg-color);
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.date-picker-block {
  border-radius: 10px;
  border: 1px solid rgba(78, 160, 247, 0.10);
  background-color: #FFF;
  box-shadow: 0px 2px 15px 0px rgba(78, 160, 247, 0.08);
  padding: 12px;
  outline: none;
  font-size: 16px;
  width: 100%;
  display: block;
  height: auto;
  position: relative;
}

.date-picker-block .ai-input-group-text {
  display: block;
  text-align: left;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(149, 164, 182, 1);
  font-size: 14px;
}

.child-date-picker-block {
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  display: flex !important;
}

.datepicker-span-edit {
  color: #fd8374;
}

.datepicker-span svg {
  fill: #fd8374;
  width: 25px;
}

.select-date .date-range input {
  border: none;
}

.select-date .date-range input:focus {
  outline: none;
}

.date-range-input .daterangepicker.ltr.show-calendar.opensleft {
  position: absolute;
  bottom: 0;
  top: auto !important;
  width: 100%;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999;
  border: none;
  border-radius: 0;
  max-height: 57vh;
  overflow: auto;
}

.date-range-input .daterangepicker.show-calendar .drp-calendar {
  width: 100%;
  float: none;
  max-width: 100%;
}

.date-range-input .daterangepicker.ltr.show-calendar.opensleft:before,
.daterangepicker.opensleft:after {
  content: none;
}

.date-range-input .daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
  padding: 3px 0;
}

.date-range-input .daterangepicker .calendar-table th {
  font-size: 14px;
  font-weight: 600;
}

.date-range-input .daterangepicker td.active,
.date-range-input .daterangepicker td.active:hover {
  background: rgb(255 223 219 / 39%);
  color: #fd8374;
}

.date-range-input .daterangepicker .calendar-table table thead tr:last-child th {
  border-radius: 0;
  background: #f4f4f4;
  padding: 4px 0;
}

.date-range-input .daterangepicker td.in-range,
.date-range-input .daterangepicker td.available.in-range:hover,
.date-range-input .daterangepicker th.available:hover {
  background-color: rgb(255 223 219 / 39%);
  border-color: transparent;
  color: #fd8374;
  border-radius: 0;
  font-weight: 700;
}

.daterangepicker .drp-selected {
  display: inline-block;
  font-size: 12px;
  background-color: rgb(255 223 219 / 39%);
  color: #fd8374;
  padding: 8px 10px;
  border-radius: 6px;
  font-weight: 700;
}

.daterangepicker .drp-buttons .btn.applyBtn {
  background-color: #fd8779;
  border-color: #fd8779;
}

.scroll-bar-wrap .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background: rgb(0 0 0 / 26%);
  z-index: 1;
  display: none;
}

.chat-text-center {
  text-align: center !important;
}

.chat-text-right {
  text-align: right !important;
}


.btn-date-stay {
  margin-top: 10px !important;

}

.btn-date-stay a,
.btn-continue-adult-child a,
.btn-continue-user-details a {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  text-decoration: none !important;
}

.daterangepicker.show-calendar .drp-buttons {
  position: fixed;
  bottom: 85px;
  background: #fff;
  max-width: 375px;
  min-width: 375px;
}



.chat-box .card {
  width: 18rem;
  /* border: 1px solid #ccc; */
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.chat-box .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}

.chat-box .card-img-top img {
  height: 100%;
  width: 100%;
  max-width: 100%;
}

.chat-box .card-body {
  padding: 16px;
  padding-top: 24px;
  background-color: #fff;
  position: relative;
}

.chat-box .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.chat-box .card-text {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* .btn {
  display: inline-block;
  font-weight: 400;
  color: #007bff;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid #007bff;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-decoration: none;
}

.btn:hover {
  color: #0056b3;
  background-color: #e9ecef;
  border-color: #dee2e6;
} */

.slideshow-container {
  max-width: 360px;
  margin-right: auto;
  position: relative;
  /* margin: auto; */
}

/* Next & previous buttons */
/* .prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: peru;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
} */

/* Position the "next button" to the right */
/* .next {
  right: 0;
  border-radius: 3px 0 0 3px;
} */

/* On hover, add a black background color with a little bit see-through */
/* .prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
} */

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade-custom {
  animation-name: fade-custom;
  animation-duration: 1.5s;
}

@keyframes fade-custom {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {

  .prev,
  .next,
  .text {
    font-size: 11px
  }
}

.chat-position-relative {
  position: relative !important;
}

.chat-form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.input-group.date-picker-block {
  position: relative;
}

.input-group.date-picker-block .flatpickr-calendar {
  top: unset !important;
  left: 0 !important;
  bottom: -70px;
  top: auto !important;
  /* width: 100%; */
  left: 0px !important;
  right: 0px !important;
  z-index: 99999;
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.flatpickr-current-month input.cur-year {
  width: auto !important;
  border: none !important;
  font-size: inherit !important;
  -webkit-appearance: none !important;
  margin: 0 !important;
}

.btn-continue,
.btn-book {
  cursor: pointer !important;
}

.chatWrapper {
  font-family: 'Nunito', sans-serif;
}

.chathead_info {
  margin-right: 0;
}

.input-group.date-picker-block {
  width: auto !important;
}

.edit-icon .datepicker-span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.chatLft .more {
  box-shadow: 0 3px 3px rgb(0 0 0 / 0.1);
}

.chat-box .card.cls-chat {
  width: auto;
}

.btn-continue-user-details {
  margin-top: 1.5rem;
}

.cust-card {
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: 0 0px 3px rgb(0 0 0 / 0.1) !important;
}

.chtbxAdultSelection,
.user-detail-block {
  margin-bottom: 16px;
  border: none;
  box-shadow: 0 0px 3px rgb(0 0 0 / 0.1) !important;
}


.chtbxAdultSelection .adult-div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.full-screen .chtbxAdultSelection .adult-div {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}


/* new adult box selection css starts  */
.adult-selection-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.adult-selection-wrapper .ads-label {
  font-weight: 600;
}

.ads-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid rgba(155, 69, 152, 0.2);
  padding: 7px 10px;
  border-radius: 50vmax;
}

.book-child-count,
.book-adult-count {
  width: 20px;
  text-align: center;
}

.ads-btn {
  border: 0;
  appearance: none;
  background: transparent;
  font-size: 20px;
  font-weight: 500;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  padding: 0;
  cursor: pointer;
  box-shadow: none;
}

.ads-btn.minus {
  /* color: #dadde2; */
  color: #afb2b7;
}

.ads-input-wrapper input[type="number"] {
  width: 40px;
  background: transparent;
  border: none;
  appearance: none;
  text-align: center;
  outline: none !important;
  color: #9b4598;
  font-weight: 500;
}

.ads-btn.plus {
  color: var(--chat-primary-bg-color);
}

/* new adult box selection css ends  */


/* .chtbxAdultSelection .adult-div>div {
  width: calc(50% - 2.5px);
  font-weight: bold;
}

.chtbxAdultSelection .adult-div>div:last-child {
  width: 100%;
}

.chtbxAdultSelection .adult-div>div.mt-3 {
  margin-top: 0 !important;
}

.chtbxAdultSelection .adult-div select {
  box-shadow: none;
  border-color: #ddd;
  margin-top: 3px;
  height: auto;
  border-radius: 6px;
  padding: 8px 12px;
}

.chtbxAdultSelection .adult-div .adult-count {
  margin-bottom: 0;
}

.chtbxAdultSelection .btn-continue-adult-child {
  margin-top: 8px;
} */

.slideshow-container {
  margin-bottom: 20px;
  transform: translateX(10px);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slideshow-container .mySlides {

  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.slideshow-container .mySlides.active {
  opacity: 1;
}

.slideshow-container .mySlides .card {
  width: 100%;
  border: none;
}



.slideshow-container .mySlides .card .card-title {
  margin-top: 0;
  font-size: 18px;
}

.slideshow-container .mySlides .card .card-subtitle {
  margin: 0;
}

.slideshow-container .myOldSlides .card .card-text {
  font-size: 14px;
  margin: 0 0 10px;
  line-height: normal;
}

.slideshow-container .myOldSlides .card {
  width: 100%;
  border: none;
}

.slideshow-container .myOldSlides .card .card-title {
  margin-top: 0;
}

.slideshow-container .myOldSlides .card .card-subtitle {
  margin: 0;
}

.slideshow-container .myOldSlides .card .card-text {
  font-size: 14px;
  margin: 0 0 10px;
  line-height: normal;
}

/* .slideshow-container .prev,
.slideshow-container .next {
  border-radius: 100%;
  background-color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin: 0;
  background: var(--chat-primary-bg-color);
  color: var(--chat-primary-text-color);
  position: absolute;
  top: 100px;
  cursor: pointer;
}

.slideshow-container .prev {
  left: -10px;
}

.slideshow-container .next {
  right: -10px;
} */

.cb-sl-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.cb-sl-arrows>.prev,
.cb-sl-arrows>.next {
  font-size: 12px;
  background-color: color-mix(in srgb, var(--chat-primary-bg-color) 30%, #00000000);
  padding: 4px 16px;
  border-radius: 6px;
  border: 1px solid var(--chat-primary-bg-color);
  color: var(--chat-primary-text-color);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.cb-sl-arrows>.prev:hover,
.cb-sl-arrows>.next:hover {
  background-color: var(--chat-primary-bg-color);
  color: var(--chat-primary-text-color);
  border-color: transparent;
}

.user-detail-block .div-user-details>div {
  display: flex;
  font-weight: 700;
  flex-direction: column;
}

.user-detail-block .div-user-details>div input,
.chat-bot-form-firstname>.chat-form-control,
.chat-bot-form-lastname>.chat-form-control,
.chat-bot-form-email>.chat-form-control,
.contact-block>.chat-form-control,
.chat-bot-form-address-line>.chat-form-control,
.chat-bot-form-city>.chat-form-control,
.chat-bot-form-postalcode>.chat-form-control,
.chat-bot-form-country>.chat-form-control,
.chat-bot-form-state>.chat-form-control {
  outline: none;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  width: 100%;
}

.powered-by {
  padding: 10px 0;
  border-top: 1px solid rgb(0 0 0 / 0.1);
}



.input-group.date-picker-block .child-date-picker-block .select-date {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
}

.select-date .date-range {
  flex-grow: 1;
}

.select-date .date-range input {
  width: 100%;
  font-family: 'Nunito', sans-serif;
}

.chtbxAdultSelection .adult-div>div,
.select-date .date-range input,
.chtbxAdultSelection .adult-div select {
  font-size: 14px;
}

/* .date-range-input .flatpickr-calendar {
  position: absolute;
  bottom: 10px !important;
  top: auto !important;
  left: 50% !important;
  transform: translateX(-50%);
  right: 0 !important;
  z-index: 99999;
  border: none;
  border-radius: 0;
  animation: unset !important;
  opacity: unset !important;
  visibility: unset !important;
} */

/* .date-range-input .flatpickr-calendar.open {
  display: block !important;
} */

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  font-weight: bold;
}



.head-text .chathead_info {
  margin-right: 20px;
}

.head-text .head-back-btn {
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  display: none;
}

.head-text .logo img {
  width: 40px;
  height: 40px;
}

.user-detail-block .div-user-details>div {
  font-size: 14px;
  font-weight: 600;

}

.ai-chatbot .chatWrapper .ball {
  /* background: rgb(252 131 117 / 50%); */
  background: var(--chat-primary-bg-color);
}

@keyframes bounce6135 {
  from {
    transform: scale(2);
    background: var(--chat-primary-bg-color);
  }

  to {
    transform: scale(1);
  }
}



.chatwrapper-upper {
  display: block;
  position: fixed;
  bottom: 80px;
  width: 300px;
  right: 30px;
  text-align: right;
}

.chatwrapper-upper .listing {
  padding: 8px;
}

.cwu-close-btn {
  appearance: none;
  border: none;
  border-radius: 100%;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: normal;
  color: #0d2345;
  margin-bottom: 10px;
  border: 1px solid rgba(13, 35, 69, 0.3);
}

.txt-sample-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hello-option button,
.booking-room-outside button,
.issues-booking-outside button,
.booking-room button,
.ask-a-question button,
.issue-while-booking button,
.cancel-booking button,
.confirmation-box button {
  border: 0;
  background-color: unset;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;

}

.chat-accordion {
  background-color: #f4f6f8;
  color: #444;
  cursor: pointer;
  padding: 12px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

/* .active.accordion,
  .accordion:hover {
    background-color: #ccc;
  } */

.panel {
  display: none;
  background-color: white;
  overflow: hidden;
}

.accordion-modify {
  margin-bottom: 15px;
}

.accordion-modify.date-picker-block {
  border-radius: 0;
  border: 0;
}

.acrdn-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.acrd-icon-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  padding-left: 5px;
}

.acrdn-btn>span {
  font-weight: bold;
}

.acrd-icon-right,
.acrd-icon-left {
  color: #9b4598;
}

.panel .date-range {
  font-size: 14px;
}

.cal-icon {
  font-size: 14px;
  color: rgba(149, 164, 182, 1);
  margin-right: 5px;
}

.acrd-input-group.date-picker-block {
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  padding: 10px;
  background: transparent;
}

.modify-dates-guests.cls-chat {
  background: #eeeeee6e;
  padding-bottom: 10px;
  border-radius: 0 0 4px 4px;
  border-top: 1px solid #ddd;
}

.acrd-input-group.date-picker-block .flatpickr-input {
  background: transparent;
}

.adult-selection-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chtbxAdultSelection .adult-selection-box.adult-div>div {
  width: calc(50% - 2.5px);
}

.modify-dates-guests .card.chtbxAdultSelection {
  box-shadow: none !important;
}

.modify-dates-guests .card.chtbxAdultSelection .card-body {
  padding: 10px;
  padding-bottom: 0;
}

.card-package-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px;
  margin-bottom: 10px;
}

.card-package-block .cp-subtitle:first-child {
  flex-grow: 1;
  font-size: 14px;
  color: #696969;
}

.card-package-block .cp-subtitle.cp-room-size {
  position: absolute;
  top: 0px;
  right: 0;
  background: var(--chat-primary-bg-color);
  color: var(--chat-primary-text-color);
  font-weight: 900;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 0 0 0px 8px;
  line-height: normal;
}


.cp-subtitle.cp-rate-for {
  font-size: 10px;
  font-weight: 300;
  margin-top: 0;
  line-height: 1;
  color: #444;
}

.cp-subtitle.cp-price {
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
  max-width: 100px;
  width: 100%;
  text-align: right;
  align-self: flex-end;

}

.cp-subtitle.cp-rate-for {
  font-size: 10px;
  font-weight: 300;
  margin-top: 5px;
  width: 100%;
  text-align: right;
  align-self: flex-end;

}

.cp-subtitle.cp-package-name {
  max-width: calc(100% - 100px);
  word-break: break-word;
  padding-right: 4px;
  line-height: 1.1;
  margin-top: 4px;
  margin-top: 0;
  align-self: center;
  font-size: 12px;
}

.cp-subtitle.max-sub {
  width: 100%;
  font-size: 14px;
  color: #171717;
}

.cp-subtitle {
  color: #171717;
}

.abd-room-lbl {
  width: 60px;
  height: 20px;
  position: absolute;
  left: -16px;
  top: -24px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border-radius: 0 0 4px 0;
  color: var(--chat-primary-text-color);
  background: var(--chat-primary-bg-color);
}

/* .abd-room-lbl:before {
  height: 0;
  width: 0;
  top: -8.5px;
  left: 0.1px;
  border-bottom: 9px solid black;
  border-left: 9px solid transparent;
}

.abd-room-lbl:before,.abd-room-lbl:after {
  content: '';
  position: absolute;
}

.abd-room-lbl:after {
  height: 0;
  width: 0;
  right: -9.5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--chat-primary-bg-color);
} */

.room-box-wrapper .card-body {
  padding-top: 24px;
  /* background: red; */
}

.room-box-wrapper .card {
  margin-bottom: 6px;
}

.full-screen .room-box-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.full-screen .room-box-wrapper .chat-text-center {
  width: 100%;
  text-align: center;
}

.full-screen .room-box-wrapper .card {
  margin-bottom: 0;
}


/* span.flatpickr-day.selected.startRange, span.flatpickr-day.selected.endRange{
 background: purple;
 border-color: purple;
} */

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-day.inRange,
.flatpickr-day.today:hover,
.flatpickr-day.today:focus,
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  background: var(--chat-primary-bg-color) !important;
  border-color: var(--chat-primary-bg-color) !important;
  color: var(--chat-primary-text-color) !important;
}

.flatpickr-day.today {
  border-color: var(--chat-primary-bg-color) !important;
}

.date-range-input .flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),
.date-range-input .flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)),
.date-range-input .flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -10px 0 0 var(--chat-primary-bg-color);
  box-shadow: -10px 0 0 var(--chat-primary-bg-color);
}

.date-range-input .flatpickr-day.inRange {
  -webkit-box-shadow: -5px 0 0 var(--chat-primary-bg-color), 5px 0 0 var(--chat-primary-bg-color);
  box-shadow: -5px 0 0 var(--chat-primary-bg-color), 5px 0 0 var(--chat-primary-bg-color);
}

/* .flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
} */
/* 
.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)),
.flatpickr-day.inRange,
.flatpickr-day.endRange,
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  -webkit-box-shadow: -10px 0 0 #9b4598 !important;
  box-shadow: -10px 0 0 #9b4598 !important;
} */



.txt-sample-wrapper .listing {
  background: #f0f0f0;
  border: none;
  box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.1);
}

.bot-message .msg-chat .chatRgt-upper * {
  font-family: inherit !important;
  line-height: normal;
  font-size: inherit !important;
}

.bot-message .msg-chat .chatRgt-upper p {
  margin-bottom: 0;
}

.chat-bot-form {
  display: grid;
  gap: 15px;
  padding: 8px;
  grid-template-columns: repeat(2, 1fr);
}

.chat-bot-form-email,
.chat-bot-form-submit-btn,
.contact-block,
.chat-bot-form-address-line {
  grid-column: span 2 / span 2;
}

.ai-cncl-mdf {
  padding: 6px 9px;
  border: 1px solid #ddd;
  background-color: var(--chat-primary-bg-color);
  color: var(--chat-primary-text-color);
  border-radius: 7px;
  font-weight: 700;
  display: inline-flex;
  text-transform: capitalize;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 8px;
}

.ai-cncl-mdf>svg {
  width: 14px;
  height: 14px;
}

.ai-billing-address-div {
  grid-column: span 2 / span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.user-detail-block .chat-bot-form.div-user-details>div input {
  width: 100%;
  margin-top: 0;
}

.user-detail-block .div-user-details>div>select {
  border-radius: 6px;
  border: 1px solid #ddd;
  height: 100%;
  padding: 5px;
  margin-top: 3px;
  background: transparent;
}

.user-detail-block {
  background: #f5f5f5;
}

.user-detail-block>.card-body {
  padding: 0;
}

/* .child-age-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 5px;
} */

.child-age-block>label {
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}

.ads-labels {
  font-weight: 600;
}

.child-age-block>.child-age-select {
  border-radius: 6px;
  border: 1px solid #ddd;
  height: auto;
  padding: 5px;
  margin-top: 3px;
  background: transparent;
}

/* 
.child-age-block:only-child {
  grid-column: span 2;
} */

.btn-continue-cofirm-email {
  margin-top: 10px !important;
}

.cancel-booking a:hover {
  color: black;
}

.mloader-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  z-index: 1;
}

.main-loader {
  color: var(--chat-primary-bg-color);
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.3s infinite linear;
  transform: translateZ(0);
}

.shimmer-animate {
  height: 20px;
  width: 120px;
  animation: shimmer 3s;
  animation-iteration-count: infinite;
  background: linear-gradient(to right, #9b459833 5%, #cccccc 25%, #9b459833 35%);
  background-size: 1000px 100%;
}

@keyframes mulShdSpin {

  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em,
      2em -2em 0 0em, 3em 0 0 -1em,
      2em 2em 0 -1em, 0 3em 0 -1em,
      -2em 2em 0 -1em, -3em 0 0 -1em,
      -2em -2em 0 0;
  }

  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,
      3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,
      -2em 2em 0 -1em, -3em 0 0 -1em,
      -2em -2em 0 -1em;
  }

  25% {
    box-shadow: 0 -3em 0 -0.5em,
      2em -2em 0 0, 3em 0 0 0.2em,
      2em 2em 0 0, 0 3em 0 -1em,
      -2em 2em 0 -1em, -3em 0 0 -1em,
      -2em -2em 0 -1em;
  }

  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
      3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,
      -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }

  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
      3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,
      -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }

  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
      3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,
      -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }

  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,
      3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
      -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }

  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,
      3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
      -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

@keyframes shimmer {
  from {
    background-position: -1000px 0;
  }

  to {
    background-position: 1000px 0;
  }
}

.listing button {
  all: unset;
  border: 0;
  background-color: unset;
  font-family: 'Nunito', sans-serif !important;
  font-size: 14px !important;
  cursor: pointer;
  color: var(--submenu-text-color);
  text-transform: capitalize !important;
}

.bot-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}


.chatWrapper .ai-chatbot-footer .ai-cbg-upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
}

.ai-cbg-more-btn {
  all: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}

.ai-cbg-more-btn svg {
  color: #9b4598;
  animation: bounce2 3s ease infinite;
}

.user-detail-block .div-user-details>div.date-range-picker {
  grid-column: span 2;
  box-shadow: unset;
  border-color: #ddd;
}

.user-detail-block .select-date .date-range input {
  border: none;
  margin: 0;
}

.listing .btn-no:disabled,
.listing .btn-yes:disabled,
.chat-box .btn-continue:disabled,
.chat-box .btn-book:disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
}

:has(.listing .btn-no:disabled, .listing .btn-yes:disabled) .listing.confirmation-box {
  cursor: not-allowed
}


@keyframes bounce2 {

  0%,
  40%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-3px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.ai-cus-desc ol,
.ai-cus-desc ul {
  padding-left: 20px;
}

.ai-cus-desc ol li:not(:last-child),
.ai-cus-desc ul li:not(:last-child) {
  margin-bottom: 6px;
  line-height: normal;
}

/* contact info css starts  */

.ai-cntct-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-cntct-info .ai-prop-block>a,
.property_address {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  color: inherit;
}

.ai-cntct-info .ai-prop-block .ai-pr-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.property_address.ai-prop-block .ai-pr-icon {
  background-color: color-mix(in srgb, var(--chat-primary-bg-color) 10%, #00000000);
}

.property_address.ai-prop-block .ai-pr-icon {
  color: var(--chat-primary-bg-color);
}

.property_contact.ai-prop-block .ai-pr-icon,
.property_whatsapp.property_whatsapp .ai-pr-icon {
  background-color: oklch(96.2% 0.044 156.743);
}

.property_contact.ai-prop-block .ai-pr-icon svg,
.property_whatsapp.property_whatsapp .ai-pr-icon svg {
  color: oklch(62.7% 0.194 149.214);
}

.property_email.ai-prop-block .ai-pr-icon {
  background-color: oklch(93.2% 0.032 255.585);
}

.property_email.ai-prop-block .ai-pr-icon svg {
  color: oklch(54.6% 0.245 262.881);
}

.ai-prop-block.property_address {
  border-bottom: 1px solid color-mix(in srgb, var(--chat-primary-bg-color) 10%, #00000000);
  padding-bottom: 8px;
}

.ai-prop-block .ai-pr-icon>svg {
  width: 14px;
  height: 14px;
  color: var(--chat-primary-bg-color);
}

.ai-prop-block .ai-pr-txt {
  font-weight: 600;
  width: calc(100% - 38px);
}

.ai-prop-block .ai-pr-txt>a {
  color: inherit;
}

/* contact info css ends  */

/* media query starts here  */
@media all and (max-width:480px) {
  .scroll-bar-wrap {
    height: calc(100% - 54px);
  }

  .chatWrapper .ai-cb-header .aicb-lImg {
    width: 30px;
    height: 30px;
  }

  .chatWrapper .ai-cb-header .ai-cb-right {
    width: calc(100% - 42px);
  }

  .ai-chatbot .chat-box .chatbx,
  .ai-chatbot .ai-chatbot-footer .chatbx {
    margin-bottom: 8px;
    gap: 6px;
  }

  .ai-chatbot .chatLft .chatRgt-upper,
  .ai-chatbot .msg-chat .chatRgt-upper,
  .listing button,
  .ai-chatbot .chatRgt .chatRgt-upper,
  .ai-chatbot .chatRgt .chatRgt-upper,
  .chatInput input,
  #booking-form input,
  .adult-div select,
  .booking-details-form input,
  .user-detail-block .div-user-details>div input,
  .chat-bot-form-firstname>.chat-form-control,
  .chat-bot-form-lastname>.chat-form-control,
  .chat-bot-form-email>.chat-form-control,
  .chat-bot-form-address-line>.chat-form-control,
  .chat-bot-form-city>.chat-form-control,
  .chat-bot-form-postalcode>.chat-form-control,
  .chat-bot-form-country>.chat-form-control,
  .chat-bot-form-state>.chat-form-control,
  .contact-block>.chat-form-control,
  .date-picker-block .ai-input-group-text,
  .chat-box .btn-continue,
  .chat-box .btn-book,
  .payment-link {
    font-size: 12px;
    line-height: normal;
  }

  .msg-timing {
    font-size: 10px;
  }

  .cp-subtitle.cp-price,
  .card-package-block .cp-subtitle:first-child,
  .cp-subtitle.max-sub,
  .cp-subtitle.cp-package-name {
    font-size: 14px;
  }

  .ai-chatbot .chatWrapper .form_chatbot .btn-send svg {
    width: 18px;
    height: 18px;
  }

  .ai-chatbot .chatWrapper .loadWrap {
    height: 30px;
  }

  .ai-chatbot .chatWrapper .ball {
    width: 5px;
    height: 5px;
  }

  .slideshow-container .mySlides .card .card-title {
    font-size: 16px;
  }
}

/* media query ends here  */
/* Tooltip */
.bot-tooltip {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 10px;
  border-radius: 6px;
  position: absolute;
  top: 50%;
  left: 110%;
  /* Show tooltip on right side */
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease-in-out
}

.aicb-lImg:hover .bot-tooltip {
  opacity: 1;
  visibility: visible;
}

.bot-tooltip:before {
  content: '';
  width: 5px;
  height: 5px;
  background: #333;
  position: absolute;
  z-index: 2;
  left: -2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.cp-subtitle.cp-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 700;
  margin-top: 0;
}

.cp-subtitle.cp-price>.ai-select {
  border: 1px solid var(--chat-primary-bg-color) !important;
  padding: 4px;
  color: var(--chat-primary-bg-color);
  border-radius: 6px;
  outline: none;
  text-align: right;
  max-width: 50px;
  width: 100%;
  margin: 2px 0 6px;
}

.cp-subtitle.cp-price>.ai-label {
  font-size: 12px;
  font-weight: 700;
}

.multi-img-slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide-img {
  min-width: 100%;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.nav-button {
  position: absolute;
  bottom: 12px;
  background-color: #000;
  opacity: 0.5;
  color: white;
  border: none;
  cursor: pointer;
  z-index: 2;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: normal;
  border-radius: 4px;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-button:hover {
  opacity: 1;
}

.prev-img {
  left: 10px;
}

.next-img {
  left: 45px;
}

.contact-us-div .chInr_wrap {
  max-width: 100%;
}

.full-screen .contact-us-div .chInr_wrap {
  max-width: 80%;
}

.full-screen .single-room-btn {
  text-align: left !important;
}

.ai-weather-card {
  background: linear-gradient(145deg, #e3ebff, #d2dfff);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 25px;
  width: 280px;
  color: #2d2d2d;
  position: relative;
  transition: background 0.5s ease;
  margin-bottom: 10px;
}

.ai-weather-card h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.ai-weather-card .aiStatus {
  font-size: 14px;
  color: #555;
  margin-top: 2px;
}

.ai-weather-card .aiTime {
  font-size: 12px;
  color: #777;
  margin-bottom: 15px;
}

.ai-weather-card .aiTemperature {
  font-size: 32px;
  font-weight: bold;
  margin: 5px 0 15px 0;
}

.ai-weather-card .wind {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  font-size: 14px;
  color: #444;
}

.ai-weather-card .wind span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ai-weather-card .aiWeatherIcon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 36px;
}

.webSocket-wrapper{
  gap: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fef2f2;
    padding: 6px 12px;
}

.webSocket-wrapper > button{
  margin: 0 !important;
}

:has(.webSocket-wrapper) .ai-chatbot .chatWrapper .chat-box{
  height: calc(100% - 140px);
}

.webs-mstxt {
    font-weight: 500;
    font-size: 14px;
    color: #b91c1c;
}

.webs-msg {
    color: #dc2626;
    font-size: 12px;
}

.webSocket-wrapper .reconnect-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #b91c1c;
  color: var(--chat-primary-text-color);
  
  transition: background 0.3s ease, transform 0.2s ease;
}

.webSocket-wrapper .reconnect-btn:active {
  transform: scale(0.95);
}

.webSocket-wrapper .reconnect-btn .lucide-refresh-cw {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Animate only when .spinning class is added */
.webSocket-wrapper .reconnect-btn.spinning .lucide-refresh-cw {
  animation: rotateIcon 1s linear infinite;
}

@keyframes rotateIcon {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fade-out {
  opacity: 1;
  transition: opacity 0.8s ease; /* adjust speed */
}
.fade-out.hide {
  opacity: 0;
}
