chat-embed#doa-odie-chat {
  --text-size: 16px;
  --reply-bubble-color: #4ec1fc;
  --ai-bubble-color: #248bd9;
  --reply-color: #fff;
  --ai-text-color: #fff;
  --reply-bubble-border: none;
  --ai-bubble-border: none;
  --ai-sources-color: #fff;
  --notice-link-color: #fff;
  --notice-link-color-hover: #fff;
  --response-link-color: #fff;
  --response-link-color-hover: #fff;
  --feedback-default-color: #fff;
  --feedback-positive-hover-color: #7AC74F;
  --feedback-positive-color: #7AC74F;
  --feedback-negative-hover-color: #FF5252;
  --feedback-negative-color: #FF5252;
  --font-family: avenir next, -apple-system, blinkmacsystemfont, segoe ui, roboto, oxygen, ubuntu, cantarell, open sans, helvetica neue, sans-serif;
}

#doa-odie-chat-wrapper {
  max-height: 400px;
  overflow-y: auto;
  width: 100%;
}
#doa-odie-chat-wrapper.doa-odie-chat-wrapper-visible {
  display: block;
  margin: 0.5rem 0;
}

.doa-odie-chat-form {
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 65px;
}
@media all and (max-width: 781px) {
  .doa-odie-chat-form {
    padding-bottom: 45px;
  }
}
.doa-odie-chat-form .doa-odie-chat-method-switch {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  width: 100%;
}
.doa-odie-chat-form .doa-odie-chat-method-switch ul {
  margin: 0 0 20px;
  list-style: none;
  background: #f1f4f6;
  border-radius: 5px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.9;
  display: flex;
  align-items: center;
  padding: 5px;
}
.doa-odie-chat-form .doa-odie-chat-method-switch ul li {
  color: #1e75ae;
  display: flex;
  align-items: center;
  padding: 4px 20px;
  gap: 8px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0);
  opacity: 0.8;
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.doa-odie-chat-form .doa-odie-chat-method-switch ul li i {
  font-size: 21px;
}
.doa-odie-chat-form .doa-odie-chat-method-switch input {
  display: none;
}
.doa-odie-chat-form .doa-odie-chat-method-switch input:checked + ul li:first-child, .doa-odie-chat-form .doa-odie-chat-method-switch input:not(:checked) + ul li:last-child {
  background-color: #fff;
  border-color: #1e75ae;
  color: #1e75ae;
  opacity: 1;
}
.doa-odie-chat-form .doa-odie-chat-input,
.doa-odie-chat-form .doa-odie-chat-search-input {
  display: flex;
  position: absolute;
  bottom: 0;
  gap: 10px;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.doa-odie-chat-form .doa-odie-chat-input span + input,
.doa-odie-chat-form .doa-odie-chat-search-input span + input {
  border-width: 2px;
}
.doa-odie-chat-form.doa-odie-chat-active .doa-odie-chat-input, .doa-odie-chat-form.doa-odie-chat-search-active .doa-odie-chat-search-input {
  pointer-events: all;
  opacity: 1;
}

.doa-odie-chat-clear {
  display: none;
}

.doa-odie-chat-active .doa-odie-chat-method-switch-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.doa-odie-chat-active .doa-odie-chat-method-switch-wrapper .doa-odie-chat-clear {
  white-space: nowrap;
  font-size: 14px;
  display: block;
}
/*# sourceMappingURL=chatbot-frontend.css.map */