@import url("./react-datepicker.css");
.chatbot-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 385px;
  height: 570px;
  background: #4a266e;
  border-radius: 48px;
  margin-left: 100px;
  margin-top: 50px;
  position: fixed;
  border: 2px solid #4a266e;
  bottom: 10px;
  right: 10px;
  z-index: 99999;
}
#top-bots-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
#dont_show {
  display: none;
}
#ops {
  padding: 16px 0 16px 40px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 16px;
  align-items: center;
}
#doa9 {
  padding-right: 30px;
  font-size: 41px;
  cursor: pointer;
}
#top-bots-section img {
  height: 40px;
  width: 40px;
}
#top-bots-section span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: "Metropolis", sans-serif;
}
#message_wrapper {
  height: 68%;
  border-top-left-radius: inherit;
  background: #ebebeb;
  overflow: auto;
  padding-bottom: 2px;
  scroll-behavior: smooth;
  border-top-right-radius: inherit;
  width: 100%;
}
.message {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px 16px 0;
  gap: 16px;
}
#buio_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  animation: fadeIn 1s both;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#bot_icon img {
  height: 22px;
  width: 22px;
  object-fit: cover;
  border-radius: 100%;
}
#bot_response {
  color: #333;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  line-height: 18px;
  font-family: "Metropolis", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0;
  animation: myButtonsAnimation 1s both;
}
.buttons button {
  flex: 0 0 48%;
  height: 40px;
  border-radius: 30px;
  border: none;
  background: #4a266e;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
}
@-webkit-keyframes myButtonsAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes myButtonsAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#trying {
  width: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  bottom: 0;
  height: 109px;
  background: #fff;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 999;
}
#input_one {
  display: flex;
  width: 85%;
  gap: 10px;
  border: 1px solid #f04e58;
  border-radius: 5px;
  justify-content: space-between;
  position: relative;
}
#input_one ul,
#input_empty ul {
  position: absolute;
  height: 200px;
  overflow: auto;
  background: #fff;
  width: 100%;
  top: -203px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#area_name {
  font-size: 14px;
  font-weight: 500;
  font-family: "Metropolis", sans-serif;
  cursor: pointer;
}
#input_one input {
  padding: 16px;
  width: 60%;
  border: none;
  background: #fff;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  border-radius: inherit;
  font-family: "Metropolis", sans-serif;
  outline: none;
}
#input_one button {
  width: 90px;
  padding: 16px;
  background: none;
  border: none;
  color: #f04e58;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Metropolis", sans-serif;
}
#input_empty {
  display: flex;
  width: 85%;
  gap: 10px;
  border: 1px solid red;
  border-radius: 5px;
  animation: vibrate 0.3s ease;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
#input_empty img {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  padding-right: 10px;
  cursor: not-allowed;
}
@keyframes vibrate {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-2px) rotate(1deg);
  }
  40% {
    transform: translateX(2px) rotate(-1deg);
  }
  60% {
    transform: translateX(-2px) rotate(1deg);
  }
  80% {
    transform: translateX(2px) rotate(-1deg);
  }
  100% {
    transform: translateX(0);
  }
}
#input_empty input {
  padding: 16px;
  width: 60%;
  border: none;
  background: #fff;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  border-radius: inherit;
  font-family: "Metropolis", sans-serif;
  outline: none;
}
#input_empty button {
  width: 90px;
  padding: 16px;
  background: none;
  border: none;
  color: red;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: "Metropolis", sans-serif;
}
.example-custom-input {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: none;
  background: #fff;
  color: #333;
  cursor: pointer;
  font-size: 14px;
  font-family: "Metropolis", sans-serif;
  font-weight: 500;
  height: 40px;
  gap: 5px;
  width: 130px;
}
#final_venue {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#message_wrapper::-webkit-scrollbar {
  display: none;
}
#pick_date {
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: dateAnimation 1s both;
}
@-webkit-keyframes dateAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dateAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#loader_198 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  flex-direction: column-reverse;
  gap: 16px;
  background: #00000052;
  box-shadow: 0 8px 32px 0 #1f26875e;
  backdrop-filter: blur(4px);
  border: 1px solid #ffffff2e;
  height: 100%;
  color: #fff;
}
.loader4 {
  width: 30px;
  height: 30px;
  display: inline-block;
  padding: 0;
  border-radius: 100%;
  border: 5px solid;
  animation: loader4 1s ease-in-out infinite;
  border-color: #f04e58 #4a266e #4a266e #f04e58;
}
@keyframes loader4 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader4 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
#buio_wrapper_user {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
  gap: 16px;
}
#buio_wrapper_user #bot_icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 25px;
  width: 25px;
}
#buio_wrapper_user #bot_response {
  background: #4a266e;
  color: #fff;
}
.ty87 {
  z-index: 1 !important;
}
.ty87 input,
.ty87 button {
  cursor: not-allowed !important;
}
.ty87 #input_one {
  opacity: 0.5 !important;
}
.loader32 {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side, #000 90%, #0000);
  background:
    var(--_g) 0 50%,
    var(--_g) 50% 50%,
    var(--_g) 100% 50%;
  background-size: calc(100% / 3) 50%;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  20% {
    background-position:
      0 0%,
      50% 50%,
      100% 50%;
  }
  40% {
    background-position:
      0 100%,
      50% 0%,
      100% 50%;
  }
  60% {
    background-position:
      0 50%,
      50% 100%,
      100% 0;
  }
  80% {
    background-position:
      0 50%,
      50% 50%,
      100% 100%;
  }
}
#chat-icon-section {
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 8;
}
._3curk {
  border-radius: 46px !important;
}
#end_button {
  width: 130px;
  display: flex;
  align-self: center;
  justify-content: center;
  height: 40px;
  align-items: center;
  background: #4a266e;
  border: none;
  font-size: 14px;
  font-weight: 500;
  font-family: "Metropolis", sans-serif;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
}
#c097 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#choose-vendors {
  width: 200px;
  height: 100%;
  border: none;
}
#category_options {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-family: "Metropolis", sans-serif;
  cursor: pointer;
}
._1hglr,
._NWZcI,
._38Og6,
._3KAu7 {
  font-size: 1.3rem !important;
}
#event_id_check {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000052;
  box-shadow: 0 8px 32px 0 #1f26875e;
  backdrop-filter: blur(4px);
  z-index: 9;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#event_id_check img {
  height: 30px;
  width: 30px;
}
#event_id_check_new {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 150px;
  width: 80%;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
}
#event_id_check_new span {
  font-family: "Metropolis", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.loaderr43 {
  width: 500px;
  height: 54px;
  position: relative;
  display: flex;
  align-items: center !important;
  justify-content: center;
}
#onki-body {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff40;
  box-shadow: 0 8px 32px 0 #1f26875e;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid #ffffff2e;
  bottom: 0;
  z-index: 99999;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.loader-text {
  position: absolute;
  top: 0;
  padding: 0;
  margin: 0;
  color: #333;
  animation: text_713 3.5s ease both infinite;
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-family: "Metropolis", sans-serif;
  font-weight: 600;
}
.load {
  background-color: #f04e58;
  border-radius: 50px;
  display: block;
  height: 10px;
  bottom: 0;
  position: absolute;
  transform: translateX(64px);
  animation: loading_713 3.5s ease both infinite;
  width: 100px !important;
}
.load::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #4a266e;
  border-radius: inherit;
  animation: loading2_713 3.5s ease both infinite;
}
@keyframes text_713 {
  0% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
  40% {
    letter-spacing: 2px;
    transform: translateX(26px);
  }
  80% {
    letter-spacing: 1px;
    transform: translateX(32px);
  }
  90% {
    letter-spacing: 2px;
    transform: translateX(0px);
  }
  100% {
    letter-spacing: 1px;
    transform: translateX(0px);
  }
}
@keyframes loading_713 {
  0% {
    width: 16px;
    transform: translateX(0px);
  }
  40% {
    width: 100%;
    transform: translateX(0px);
  }
  80% {
    width: 16px;
    transform: translateX(64px);
  }
  90% {
    width: 100%;
    transform: translateX(0px);
  }
  100% {
    width: 16px;
    transform: translateX(0px);
  }
}
@keyframes loading2_713 {
  0% {
    transform: translateX(0px);
    width: 16px;
  }
  40% {
    transform: translateX(0%);
    width: 80%;
  }
  80% {
    width: 100%;
    transform: translateX(0px);
  }
  90% {
    width: 80%;
    transform: translateX(15px);
  }
  100% {
    transform: translateX(0px);
    width: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .chatbot-container {
    width: 100%;
    right: 0;
    left: 0;
    margin: 0;
    bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  #trying {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .product_bot {
    bottom: 80px !important;
    right: 4px !important;
  }
  .chat_bot {
    width: 50px !important;
    height: 50px !important;
  }
  .chat_bot_wrapper {
    padding: 10px !important;
  }
}
.bgLayer,
.bgSpinner {
  z-index: 9999 !important;
}
.contact-enquiry-main .contact-form-top {
  width: 100%;
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

.chat_bot_text_wrapper {
  animation: slideInFromLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.chat_bot_text {
  animation: floatAnimation 3s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes fadeInOut {
  0% {
    opacity: 0.1;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
  100% {
    opacity: 0.1;
    transform: scale(0.9);
  }
}

.chat_bot_ring {
  animation: fadeInOut 2.5s ease-in-out infinite;
}



.datepicker-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  border-radius: 48px;
}

.datepicker-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.datepicker-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.datepicker-header-day {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

.datepicker-header-year {
  color: #666;
  font-size: 14px;
}

.custom-datepicker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.custom-datepicker-header select {
  margin: 0 5px;
  padding: 3px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.custom-datepicker-header button {
  background: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  padding: 2px 8px;
}
