.chatbot-mini:hover {
  background-size: 40px;
}
.chatbot-mini {
  width: 50px;
  height: 50px;
  box-shadow: 0 -1px 5px 0 #acabab;
  cursor: pointer;
  background-color: #fafafa;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: fixed;
  z-index: 5000;
  right: 100px;
  bottom: 20px;
  background-image: url("/img/chatbot.svg");
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

.chatbot-window .wrapper {
  width: 550px;
  max-height: calc(100% - 40px);
  max-width: calc(100% - 40px);
  background-color: #fff;
  border-radius: 26px;
  box-shadow: 0 -1px 10px 0 #acabab;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  position: relative;
  left: 0px;
  bottom: 0px;
  right: auto;
  top: auto;
  pointer-events: auto;
  padding: 5px;
}
.chatbot-window .scroll-content {
  max-height: calc(100vh - 380px);
  overflow-y: auto;
}
.chatbot-window .chat-wrapper {
  margin-bottom: 30px;
}
.chatbot-window h2 {
  font-size: 24rem;
  text-align: center;
  margin-bottom: 20px;
}
.chatbot-window a:hover {
  color: #000099;
}
.chatbot-window a {
  color: blue;
  word-break: break-all;
}
.chatbot-window textarea.form-control {
  height: auto;
  width: calc(100% - 50px);
  margin-right: 10px;
}
.chatbot-window .btn-submit {
  width: 40px;
  height: 68px;
  padding: 0;
  border-radius: 10px;
  background-image: url("/img/chatbot-send.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
.chatbot-window .message.bot-message {
  background-color: var(--element2-color);
}
.chatbot-window .message.human-message {
  background-color: var(--secondary-bg);
  color: var(--secondary-text);
  margin-left: auto;
}
.chatbot-window .message {
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
  margin-bottom: 10px;
  max-width: 85%;
}
.chatbot-window {
  position: fixed;
  z-index: 999999;
  left: auto;
  right: 0;
  top: auto;
  bottom: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

@media (max-width: 575px) {
  .chatbot-window .wrapper {
    width: 100%;
    max-width: calc(100% - 20px);
  }
  .chatbot-window h2 {
    font-size: 21rem;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 5px;
  }
  .chatbot-window .btn-submit {
    height: 55px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .chatbot-window .btn-submit {
    height: 59px;
  }
}