/* Apply custom theming here */
:root {
  --cb-accent-color: #014268;
  --cb-border-color: #bdbdbd;
  --cb-input-background: #dedede;
  --cb-background: #fff;
  --cb-system-message-background: #ffffff;
  --cb-user-message-background: #f3f3f3;
  --cb-avatar-background: #014268;
  --cb-link-color: #0672b0;
}

div.chatbot-frontend.active {
  display: block !important;
}
div.chatbot-frontend .chatbot-activator {
  user-select: none;
  position: fixed;
  bottom: 24px;
  right: 23px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cb-accent-color);
  border-radius: 40px;
  transform: scale(0.9);
  cursor: pointer;
  transition: transform 0.1s ease-in-out;
  z-index: 999;
}
div.chatbot-frontend .chatbot-activator:hover {
  transform: scale(1);
}
div.chatbot-frontend .chatbot-activator img {
  width: 25px;
  height: 25px;
}
div.chatbot-frontend .chatbot-window-container {
  background-color: var(--cb-background);
  box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.5);
  border-radius: 10px 10px 21px 10px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  width: min(90vw, 500px);
  height: min(calc(100vh - 120px), 700px);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
div.chatbot-frontend .chatbot-window-container.visible {
  pointer-events: all;
  opacity: 1;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-header {
  user-select: none;
  pointer-events: none;
  flex: 0 0 auto;
  border-bottom: solid 1px var(--cb-border-color);
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-header .chatbot-avatar {
  display: flex;
  justify-content: center;
  padding: 15px;
  align-items: center;
  flex-direction: column;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-header .chatbot-avatar img {
  width: 32px;
  height: 32px;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-header .chatbot-avatar .chatbot-avatar-name {
  font-weight: bold;
}
div.chatbot-frontend .chatbot-window-container .chatbot-thinking {
  flex: 0 0 auto;
  height: 36px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  user-select: none;
  position: relative;
}
div.chatbot-frontend .chatbot-window-container .chatbot-thinking img {
  width: 30px;
  height: 30px;
}
div.chatbot-frontend .chatbot-window-container .chatbot-thinking .scroll-to-bottom {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -40px);
  width: 25px;
  height: 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
div.chatbot-frontend .chatbot-window-container .chatbot-thinking .scroll-to-bottom img {
  width: 25px;
  height: 25px;
  background-color: white;
  border-radius: 25px;
  transform: scale(0.85);
  border: solid 1px #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}
div.chatbot-frontend .chatbot-window-container .chatbot-thinking .scroll-to-bottom.active {
  opacity: 0.95;
  pointer-events: all;
}
div.chatbot-frontend .chatbot-window-container .chatbot-thinking .scroll-to-bottom.active:hover img {
  transform: scale(1);
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-history {
  flex: 1 1 auto;
  overflow-y: auto;
  position: relative;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-history .scrollcontent {
  overflow: visible;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
  box-sizing: border-box;
  padding: 20px;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-history .scrollcontent .message {
  padding: 10px 20px;
  box-sizing: border-box;
  max-width: min(80%, 400px);
  background-color: var(--cb-system-message-background);
  border-radius: 30px;
  display: flex;
  gap: 10px;
  font-size: 16px;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-history .scrollcontent .message .user-avatar {
  background-color: var(--cb-avatar-background);
  width: 25px;
  pointer-events: none;
  user-select: none;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-weight: bold;
  color: white;
  font-size: 14px;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-history .scrollcontent .message .user-avatar img {
  border-style: none;
  height: auto;
  max-width: 100%;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-history .scrollcontent .message.user {
  align-self: flex-end;
  flex: 1 1 auto;
  background-color: var(--cb-user-message-background);
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-history .scrollcontent .message.system {
  align-self: flex-start;
  background-color: var(--cb-system-message-background);
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-history .scrollcontent .message .message-content bold {
  font-weight: bold;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-history .scrollcontent .message .message-content p {
  margin: 0;
  font-size: 16px;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-history .scrollcontent .message .message-content a {
  color: var(--cb-link-color);
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-history .scrollcontent .message .message-content a:hover {
  text-decoration: underline;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-input {
  border-radius: 30px;
  margin: 10px 60px 10px 10px;
  background-color: var(--cb-input-background);
  flex: 0 0 auto;
  display: flex;
  justify-content: stretch;
  gap: 2px;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-input .chatbot-input-wrapper {
  width: 100%;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-input .chatbot-input-submit {
  user-select: none;
  width: 30px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  opacity: 0.5;
  pointer-events: none;
  cursor: pointer;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-input .chatbot-input-submit.enabled {
  pointer-events: all;
  opacity: 0.7;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-input .chatbot-input-submit.enabled:hover {
  opacity: 1;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-input .chatbot-input-submit img {
  width: 20px;
  height: 20px;
}
div.chatbot-frontend .chatbot-window-container .chatbot-window-input .chatbot-user-input {
  background-color: transparent;
  border: none;
  padding: 16px;
  outline: none;
  width: 100%;
  font-size: 16px;
  box-sizing: border-box;
}
div.chatbot-frontend .chatbot-window-container .disclaimer-small {
  font-size: 12px;
  color: #ccc;
  text-align: center;
  margin: 0 auto 8px auto;
  width: 100%;
  max-width: 350px;
}
div.chatbot-frontend .user-avatar img {
  border-style: none;
  height: auto;
  max-width: 100%;
}

/*# sourceMappingURL=frontend-style.css.map */
