.open-chat-btn-wrapper {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  z-index: 999999999999;
}
@media (max-width: 480px) {
  .open-chat-btn-wrapper {
    gap: 10px;
    bottom: 20px;
    right: 20px;
  }
}
.open-chat-btn-wrapper .alert-popup {
  transform: translate(16px, -30px);
}
@media (max-width: 480px) {
  .open-chat-btn-wrapper .alert-popup {
    transform: translate(0, 0);
  }
}
.open-chat-btn-wrapper .alert-popup p {
  width: 240px;
  background-color: #fff;
  padding: 18px 20px;
  border: 3px solid #A2CB6F;
  border-radius: 49px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.19);
  cursor: pointer;
  text-align: center;
  color: #4D4D4D;
}
.open-chat-btn-wrapper .alert-popup p:hover {
  color: #000;
  font-weight: 500;
  font-family: "Lexend Deca";
  padding: 18px 14px;
}
@media (max-width: 480px) {
  .open-chat-btn-wrapper .alert-popup p {
    padding: 10px 16px;
  }
}
.open-chat-btn-wrapper .open-chat-btn {
  border: none;
  cursor: pointer;
  background: transparent;
}

.chat-splash {
  width: 420px;
  height: 480px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: fixed;
  z-index: 9999999999999;
  right: 120px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.chat-splash.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .chat-splash {
    width: 350px;
    height: 400px;
  }
}
@media (max-width: 480px) {
  .chat-splash {
    width: 315px;
    height: 300px;
    right: 30px;
    bottom: 25px;
  }
}
.chat-splash .chat-room-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 30px;
  text-align: right;
}
.chat-splash .chat-room-head .close-chat-icon {
  width: 20px;
  height: 25px;
  border: none;
  background: transparent;
  outline: 0;
  position: relative;
  padding: 0;
  cursor: pointer;
}
.chat-splash .chat-room-head .close-chat-icon::before, .chat-splash .chat-room-head .close-chat-icon::after {
  content: "";
  width: 1px;
  height: 19px;
  background: #001f3e;
  position: absolute;
  top: 4px;
  left: 10px;
}
.chat-splash .chat-room-head .close-chat-icon::before {
  transform: rotate(45deg);
}
.chat-splash .chat-room-head .close-chat-icon::after {
  transform: rotate(-45deg);
}
.chat-splash .chat-splash-inner {
  padding: 0px 30px;
}
.chat-splash .chat-splash-inner img {
  width: auto;
}
@media (max-width: 480px) {
  .chat-splash .chat-splash-inner img {
    width: 70px;
  }
}
.chat-splash .chat-splash-inner h4 {
  color: #001f3e;
  font-size: 36px;
  font-weight: 700;
  margin: 8px 0 0;
}
@media (max-width: 480px) {
  .chat-splash .chat-splash-inner h4 {
    font-size: 30px;
  }
}
.chat-splash .chat-splash-inner p {
  color: #393939;
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0 0;
}
.chat-splash .chat-splash-inner a {
  padding: 17px 60px;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin: 40px 0 0;
}
@media (max-width: 480px) {
  .chat-splash .chat-splash-inner a {
    margin: 20px 0px 0px 0px;
    padding: 15px 30px;
  }
}

.chat-room {
  width: 420px;
  height: 480px;
  border-radius: 34px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  flex-flow: column;
  justify-content: space-between;
  text-align: center;
  position: fixed;
  z-index: 9999999999;
  right: 120px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.chat-room.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .chat-room {
    width: 350px;
    height: 400px;
  }
}
@media (max-width: 480px) {
  .chat-room {
    width: 290px;
    height: 300px;
    right: 30px;
    bottom: 110px;
  }
}
.chat-room .chat-room-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 30px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 31, 62, 0.06);
}
@media (max-width: 480px) {
  .chat-room .chat-room-head {
    padding: 10px 20px;
  }
}
.chat-room .chat-room-head .clear-btn-holder {
  display: flex;
  align-items: center;
}
.chat-room .chat-room-head .clear-btn-holder #clear_chat_history {
  display: none;
}
.chat-room .chat-room-head .clear-btn-holder #clear_chat_history .clear-text {
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  margin-right: 5px;
}
.chat-room .chat-room-head .clear-btn-holder .setting-icon {
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
.chat-room .chat-room-head h6 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
.chat-room .chat-room-head h6 img {
  height: 35px;
  width: 35px;
  -o-object-fit: cover;
     object-fit: cover;
}
.chat-room .chat-room-head .close-chat-icon {
  width: 20px;
  height: 25px;
  border: none;
  background: transparent;
  outline: 0;
  position: relative;
  padding: 0;
  cursor: pointer;
}
.chat-room .chat-room-head .close-chat-icon::before, .chat-room .chat-room-head .close-chat-icon::after {
  content: "";
  width: 1px;
  height: 19px;
  background: #001f3e;
  position: absolute;
  top: 4px;
  left: 10px;
}
.chat-room .chat-room-head .close-chat-icon::before {
  transform: rotate(45deg);
}
.chat-room .chat-room-head .close-chat-icon::after {
  transform: rotate(-45deg);
}
.chat-room .chat-room-body {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: end;
  overflow: hidden;
  position: relative;
  background-color: rgba(162, 203, 111, 0.5019607843);
}
.chat-room .chat-room-body .user-alert-banner {
  background-color: #faac1e;
  color: #000;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
.chat-room .chat-room-body .user-alert-close {
  background: none;
  border: none;
  cursor: pointer;
}
.chat-room .chat-room-body .message-clear-wrapper p {
  font-size: 14px;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.chat-room .chat-room-body .chat-room-scroll {
  overflow: auto;
  padding: 16px;
  display: flex;
  flex-flow: column;
  gap: 27px;
}
.chat-room .chat-room-body .chat-room-scroll .send-msg-wrapper {
  padding: 0 0 0 65px;
  position: relative;
  width: 100%;
}
.chat-room .chat-room-body .chat-room-scroll .send-msg-wrapper i {
  position: absolute;
  width: 45px;
  height: 45px;
  right: auto;
  left: 0;
}
.chat-room .chat-room-body .chat-room-scroll .send-msg-wrapper i img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.chat-room .chat-room-body .chat-room-scroll .send-msg-wrapper .send-content {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 31, 62, 0.15);
  padding: 12px;
  max-width: 226px;
  color: #393939;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}
.chat-room .chat-room-body .chat-room-scroll .send-msg-wrapper .send-content.error {
  color: #ff0404;
  font-style: italic;
}
.chat-room .chat-room-body .chat-room-scroll .send-msg-wrapper span {
  color: rgba(0, 31, 62, 0.2);
  font-size: 10px;
  font-weight: 600;
  display: block;
  margin: 6px 4px 0 0;
  text-align: left;
}
.chat-room .chat-room-body .chat-room-scroll .text-msg-wrapper {
  position: relative;
  width: 100%;
  padding: 0 15px 0 0;
  display: flex;
  flex-direction: column;
  align-items: end;
  padding-top: 10px;
}
.chat-room .chat-room-body .chat-room-scroll .text-msg-wrapper i {
  position: absolute;
  width: 45px;
  height: 45px;
  right: auto;
  left: 0;
}
.chat-room .chat-room-body .chat-room-scroll .text-msg-wrapper i img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.chat-room .chat-room-body .chat-room-scroll .text-msg-wrapper .send-content {
  border-radius: 14px;
  box-shadow: 0 0 10px 0 rgba(0, 31, 62, 0.15);
  padding: 12px;
  text-align: left;
  max-width: 226px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  word-break: break-word;
  color: #000;
}
.chat-room .chat-room-body .chat-room-scroll .text-msg-wrapper .send-content.user-message {
  background-color: #A2CB6F;
}
.chat-room .chat-room-body .chat-room-scroll .text-msg-wrapper span {
  color: rgba(0, 31, 62, 0.2);
  font-size: 10px;
  font-weight: 600;
  text-align: right;
  margin: 6px 4px 0 0;
}
.chat-room .chat-room-body .chat-room-scroll .text-msg-wrapper .user {
  background-color: #A2CB6F;
}
.chat-room .chat-room-body .chat-room-scroll .bot-typing {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-room .chat-room-body .chat-room-scroll .bot-typing i {
  height: 45px;
  width: 45px;
}
.chat-room .chat-room-body .chat-room-scroll .bot-typing i img {
  width: 100%;
}
.chat-room .chat-room-body .chat-room-scroll .bot-typing .dots-cont {
  height: 25px;
}
@keyframes jump {
  0% {
    bottom: 0;
  }
  20% {
    bottom: 5px;
  }
  40% {
    bottom: 0;
  }
}
.chat-room .chat-room-body .chat-room-scroll .bot-typing .dots-cont .dot {
  width: 8px;
  height: 8px;
  background: #22303e;
  display: inline-block;
  border-radius: 50%;
  right: 0;
  bottom: 0;
  position: relative;
  animation: jump 1s infinite;
}
.chat-room .chat-room-body .chat-room-scroll .bot-typing .dots-cont .dot-1 {
  animation-delay: 0.1s;
}
.chat-room .chat-room-body .chat-room-scroll .bot-typing .dots-cont .dot-2 {
  animation-delay: 0.2s;
}
.chat-room .chat-room-body .chat-room-scroll .bot-typing .dots-cont .dot-3 {
  animation-delay: 0.3s;
}
.chat-room .chat-room-body .chat-room-scroll .bot-message {
  display: flex;
  align-items: self-start;
  padding-left: 60px;
}
.chat-room .chat-room-body .chat-room-scroll .bot-message .bot {
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 31, 62, 0.15);
}
.chat-room .chat-room-body .chat-room-scroll .bot-message .bot ul, .chat-room .chat-room-body .chat-room-scroll .bot-message .bot ol {
  list-style-position: inside !important;
}
.chat-room .chat-room-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px;
  gap: 10px;
  background-color: rgba(162, 203, 111, 0.5019607843);
}
.chat-room .chat-room-foot textarea {
  width: 100%;
  border: none;
  border-radius: 30px;
  background: #EDF2F9;
  height: 53px;
  padding: 17px 20px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  resize: none;
  font-family: "Lexend Deca", sans-serif;
  overflow-y: auto; /* allow scroll when long text */
  box-sizing: border-box;
  line-height: 18px;
  white-space: pre-wrap; /* allow wrapping */
  word-break: break-word; /* break long words */
}
.chat-room .chat-room-foot button {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.chat-setting {
  width: 420px;
  height: 480px;
  border-radius: 34px;
  background: #FFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: start;
  overflow: hidden;
  flex-flow: column;
  justify-content: start;
  text-align: center;
  position: fixed;
  z-index: 9999999999;
  right: 120px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.chat-setting.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .chat-setting {
    width: 350px;
    height: 400px;
  }
}
@media (max-width: 480px) {
  .chat-setting {
    width: 290px;
    height: 300px;
    right: 30px;
    bottom: 110px;
  }
}
.chat-setting .chat-setting-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 30px;
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 31, 62, 0.06);
}
@media (max-width: 480px) {
  .chat-setting .chat-setting-head {
    padding: 10px 20px;
  }
}
.chat-setting .chat-setting-head .setting-chat-icon {
  width: 20px;
  height: 25px;
  border: none;
  background: transparent;
  outline: 0;
  position: relative;
  padding: 0;
  cursor: pointer;
}
.chat-setting .chat-setting-head .setting-chat-icon::before, .chat-setting .chat-setting-head .setting-chat-icon::after {
  content: "";
  width: 1px;
  height: 19px;
  background: #001f3e;
  position: absolute;
  top: 4px;
  left: 10px;
}
.chat-setting .chat-setting-head .setting-chat-icon::before {
  transform: rotate(45deg);
}
.chat-setting .chat-setting-head .setting-chat-icon::after {
  transform: rotate(-45deg);
}
.chat-setting .setting-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 12px;
  height: 100%;
}
.chat-setting .setting-body .location-privacy-policy {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3411764706);
  text-align: center;
  margin-top: auto;
}
.chat-setting .setting-body .auto-location-toggle {
  width: 100%;
}
.chat-setting .setting-body .auto-location-toggle label {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  justify-content: space-between;
}
.chat-setting .setting-body .auto-location-toggle label .label-text {
  text-align: left;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.chat-setting .setting-body .auto-location-toggle label input {
  display: none;
}
.chat-setting .setting-body .auto-location-toggle label .toggle {
  width: 44px;
  height: 24px;
  background-color: #bbb;
  border-radius: 50px;
  position: relative;
  transition: background-color 0.3s ease;
}
.chat-setting .setting-body .auto-location-toggle label .toggle::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.chat-setting .setting-body .auto-location-toggle label input:checked + .toggle {
  background-color: #4caf50;
}
.chat-setting .setting-body .auto-location-toggle label input:checked + .toggle::before {
  transform: translateX(20px);
}
.chat-setting .setting-body .setting-manual-location {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.chat-setting .setting-body .setting-manual-location .setting-manual-location-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.chat-setting .setting-body .setting-manual-location .setting-manual-location-container label {
  font-size: 14px;
  line-height: 14px;
  display: block;
  text-align: left;
}
.chat-setting .setting-body .setting-manual-location .setting-manual-location-container input {
  border-radius: 4px;
  border: 1px solid #bbbbbb;
  outline: none;
  padding: 9px 7px;
  width: 100%;
  font-size: 12px;
}
.chat-setting .setting-body .setting-manual-location .setting-manual-location-container ::-moz-placeholder {
  color: #bbbbbb;
}
.chat-setting .setting-body .setting-manual-location .setting-manual-location-container ::placeholder {
  color: #bbbbbb;
}
.chat-setting .setting-body .setting-manual-location span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3411764706);
  text-align: left;
  display: block;
}
.chat-setting .setting-body .setting-manual-location .setting-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  flex-direction: column;
  align-items: end;
  width: 100%;
}
.chat-setting .setting-body .setting-manual-location .setting-btn-container button {
  padding: 6px 20px;
  background: #faac1e;
  display: inline-block;
  border: 3px solid #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
.chat-setting .setting-body .setting-manual-location .setting-btn-container #location_status_msg {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}/*# sourceMappingURL=chatbot.css.map */