@keyframes preloadMessage {
  0% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 1.5);
  }
  75% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.chat-bot-icon {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
}
.chat-bot-icon:hover {
  cursor: pointer;
}
@media screen and (max-width: 576px) {
  .chat-bot-icon {
    width: 80px;
    height: 80px;
  }
  .chat-bot-icon img {
    width: 80px;
  }
}

.chat-bot {
  position: fixed;
  bottom: 193px;
  right: 83px;
  z-index: 99;
  display: none;
  height: auto;
  padding: 18px;
  box-sizing: border-box;
  width: 434px;
  visibility: visible;
  border-radius: 20px 20px 0 20px;
  box-shadow: 0 24px 36px 16px rgba(20, 29, 36, 0.25);
  background-color: #51606E;
}
.chat-bot::after {
  content: "";
  display: block;
  height: 34px;
  width: 34px;
  position: absolute;
  bottom: -31px;
  right: 0;
  background-image: url("../../img/base/modal-shape-bottom.svg");
  background-size: 100% 100%;
}
.chat-bot.is-visible {
  display: block;
}
.chat-bot .chat-bot__header::after {
  margin: 18px 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #728292;
}
.chat-bot .chat-bot__header .chat-bot__title {
  width: 100%;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.4;
}
.chat-bot .chat-bot__header .chat-bot__title b {
  font-weight: 700;
}
.chat-bot .chat-bot__header .chat-bot__subtitle {
  display: block;
  margin-top: 10px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}
.chat-bot .chat-bot__header.rm-bottom-line::after {
  display: none;
}
.chat-bot .chat-bot__content .chat-bot__multi-selection-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.chat-bot .chat-bot__content .chat-bot__selected-group {
  width: auto;
  max-width: 100%;
  padding: 12px 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: #3E4F5C;
  transition: 0.3s ease;
}
.chat-bot .chat-bot__content .chat-bot__selected-group:hover {
  cursor: pointer;
  background-color: #2B3C49;
  transition: 0.3s ease;
}
.chat-bot .chat-bot__content .chat-bot__selected-group input {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
}
.chat-bot .chat-bot__content .chat-bot__selected-group input:hover {
  cursor: pointer;
}
.chat-bot .chat-bot__content .chat-bot__selected-group label {
  color: #F7F8FA;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.chat-bot .chat-bot__content .chat-bot__selected-group.is-selected {
  background-color: #2B3C49;
}
.chat-bot .chat-bot__content .chat-bot__communication-block {
  margin: 18px 0;
  padding-right: 10px;
  max-height: 250px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.chat-bot .chat-bot__content .chat-bot__communication-block::-webkit-scrollbar {
  width: 12px;
}
.chat-bot .chat-bot__content .chat-bot__communication-block::-webkit-scrollbar-track {
  background: #51606E;
}
.chat-bot .chat-bot__content .chat-bot__communication-block::-webkit-scrollbar-thumb {
  background-color: #495662;
  border-radius: 20px;
  border: 3px solid #51606E;
}
.chat-bot .chat-bot__content .chat-bot__preload-msg {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-bot .chat-bot__content .chat-bot__preload-msg span {
  width: 4px;
  height: 4px;
  will-change: transform;
  border-radius: 50px;
  background: #FFFFFF;
}
.chat-bot .chat-bot__content .chat-bot__preload-msg span:nth-child(1) {
  animation: preloadMessage 1s linear infinite;
}
.chat-bot .chat-bot__content .chat-bot__preload-msg span:nth-child(2) {
  animation: preloadMessage 2s linear infinite;
}
.chat-bot .chat-bot__content .chat-bot__preload-msg span:nth-child(3) {
  animation: preloadMessage 1s linear infinite;
}
.chat-bot .chat-bot__content .chat-bot__user-msg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #BBCAD8;
  text-align: right;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.chat-bot .chat-bot__content .chat-bot__user-msg::after {
  content: "";
  margin-top: 2px;
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../../img/base/chatbot-message-icon.svg");
  background-size: 100% 100%;
}
.chat-bot .chat-bot__content .chat-bot__robot-msg {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.chat-bot .chat-bot__content .chat-bot__robot-msg.is-warning-msg::before, .chat-bot .chat-bot__content .chat-bot__robot-msg.is-error-msg::before {
  content: "";
  margin-top: 2px;
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  background-size: 100% 100%;
}
.chat-bot .chat-bot__content .chat-bot__robot-msg.is-warning-msg::before {
  background-image: url("../../img/base/chatbot-warning-icon.svg");
}
.chat-bot .chat-bot__content .chat-bot__robot-msg.is-error-msg::before {
  background-image: url("../../img/base/chatbot-error-icon.svg");
}
.chat-bot .chat-bot__footer {
  display: none;
}
.chat-bot .chat-bot__footer::before {
  margin: 18px 0;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #728292;
}
.chat-bot .chat-bot__footer.is-visible {
  display: block;
}
.chat-bot .chat-bot__footer .chat-bot__msg-control {
  width: 100%;
  height: 49px;
  padding: 12px 10px;
  box-sizing: border-box;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #617180;
  resize: none;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.chat-bot .chat-bot__footer .chat-bot__msg-control::-moz-placeholder {
  color: #9FB1C2;
}
.chat-bot .chat-bot__footer .chat-bot__msg-control::placeholder {
  color: #9FB1C2;
}
.chat-bot .chat-bot__footer .chat-bot__controls {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-bot .chat-bot__footer .chat-bot__back-btn {
  width: 86px;
  height: 44px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border-radius: 8px;
  border: none;
  outline: none;
}
.chat-bot .chat-bot__footer .chat-bot__back-btn:hover {
  cursor: pointer;
  background-color: #617180;
}
.chat-bot .chat-bot__footer .chat-bot__back-btn span {
  color: #F7F8FA;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.chat-bot .chat-bot__footer .chat-bot__back-btn::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("../../img/base/chatbot-arrow-icon.svg");
  background-size: 100% 100%;
}
.chat-bot .chat-bot__footer .chat-bot__send-btn {
  width: 140px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #3E4F5C;
}
.chat-bot .chat-bot__footer .chat-bot__send-btn[disabled=true] {
  opacity: 0.5;
  pointer-events: none;
  cursor: none;
}
.chat-bot .chat-bot__footer .chat-bot__send-btn:hover {
  cursor: pointer;
}
.chat-bot .chat-bot__footer .chat-bot__send-btn span {
  color: #F7F8FA;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 576px) {
  .chat-bot {
    width: 340px;
    min-height: 400px;
    max-height: 620px;
    overflow-y: scroll;
    bottom: 112px;
    right: 19px;
  }
}/*# sourceMappingURL=chat-bot.css.map */