.jnlp-conversation__indexing-progress {
  display: flex;
  flex-direction: column;
  place-items: center;
}
.jnlp-conversation__indexing-progress .indexing-progress_message {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  padding-top: 12px;
}
.jnlp-conversation__indexing-progress .progress {
  width: 100%;
  max-width: 600px;
}
.jnlp-conversation .viewer-navigation__right > * {
  display: none !important;
}
.jnlp-conversation .viewer-navigation__right .viewer-action__popup {
  display: inline-flex !important;
}
.jnlp-conversation.video .jnlp-conversation__body-document {
  background-color: black;
}
.jnlp-conversation__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px;
}
.jnlp-conversation__header .topbar-logo img {
  max-height: 60px;
  max-width: 290px;
}
.jnlp-conversation__header .jnlp-conversation__header-title {
  display: flex;
  align-items: center;
  font-size: 20px;
  overflow: hidden;
}
.jnlp-conversation__header .jnlp-conversation__header-title span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.jnlp-conversation__header .jnlp-conversation__header-title img {
  width: 32px;
  margin-right: 4px;
}
.jnlp-conversation__wrapper {
  border-bottom: 1px solid #e5e7eb;
}
.jnlp-conversation__body {
  display: flex;
  height: calc(100% - 66px);
}
.jnlp-conversation__body .jnlp-conversation__body-document {
  border-right: 1px solid #e5e7eb;
  position: relative;
  flex: 1;
  min-width: 0;
}
.jnlp-conversation__body a {
  word-break: break-all;
}
.jnlp-conversation__body-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: white;
  z-index: 20;
  opacity: 1;
  transition: opacity 0.2s ease-in;
  pointer-events: none;
}
.jnlp-conversation__body-overlay.document-loaded {
  opacity: 0;
}
.jnlp-conversation__body-chat {
  display: flex;
  flex-direction: column;
}
.jnlp-conversation__body-chat .body-chat__content {
  flex: 1;
  flex-direction: column;
  display: flex;
  font-size: 16px;
  overflow: auto;
}
.jnlp-conversation__body-chat .body-chat__content .jnlp-conversation__message {
  padding: 8px 16px;
}
.jnlp-conversation__body-chat .body-chat__content .jnlp-conversation-answer__wrapper {
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  display: inline-flex;
  align-self: flex-start;
  align-items: flex-start;
  margin: 8px 0 16px 18px;
}
.jnlp-conversation__body-chat .body-chat__content .jnlp-conversation-answer__body {
  display: flex;
}
.jnlp-conversation__body-chat .body-chat__content .assistant-image {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.jnlp-conversation__body-chat .conversation__welcome {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 120px;
}
.jnlp-conversation__body-chat .conversation__welcome > img {
  width: 80px;
  height: 80px;
}
.jnlp-conversation__body-chat .conversation__welcome > span {
  margin-top: 14px;
  font-size: 22px;
}
.jnlp-conversation__body-chat .jnlp-conversation__error {
  background-color: #c0360c;
  color: white;
  margin-right: 20%;
  align-self: flex-start;
  margin: 8px 20% 8px 18px;
  opacity: 0;
  border-radius: 4px;
}
.jnlp-conversation__body-chat .jnl-conversation-question__wrapper {
  display: inline-flex;
  align-items: flex-start;
  margin: 8px 0 8px 18px;
  opacity: 0;
}
.jnlp-conversation__body-chat .jnlp-conversation__quick-actions {
  color: #666;
  display: flex;
  justify-content: flex-start;
}
.jnlp-conversation__body-chat .jnlp-conversation__quick-actions .quick-action-item {
  transition: color ease-in-out 150ms;
  color: grey;
  padding: 8px 4px;
}
.jnlp-conversation__body-chat .jnlp-conversation__quick-actions .quick-action-item:hover {
  color: black;
}
.jnlp-conversation__body-chat .jnlp-conversation__code-quick-actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  background-color: #e3e3e3;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  align-items: center;
  padding-right: 8px;
  flex-direction: row;
  font-size: 12px;
}
.jnlp-conversation__body-chat .jnlp-conversation__code-quick-actions a {
  display: flex;
  padding: 10px;
  color: black;
  transition: color ease-in-out 150ms;
  gap: 4px;
  font-family: embedded-roboto;
}
.jnlp-conversation__body-chat .jnlp-conversation__code-quick-actions a:hover {
  color: #747474;
}
.jnlp-conversation__body-chat .jnlp-conversation__code-quick-actions a span {
  display: flex;
}
.jnlp-conversation__body-chat .jnlp-conversation__question {
  font-weight: bold;
  color: #374151;
  margin-right: 20px;
  word-break: break-word;
}
.jnlp-conversation__body-chat .jnlp-conversation__answer {
  align-self: flex-start;
}
.jnlp-conversation__body-chat .jnlp-conversation__answer.with-quick-actions {
  padding-bottom: 0;
}
.jnlp-conversation__body-chat .jnlp-conversation__answer .toolbar {
  display: none;
}
.jnlp-conversation__body-chat .jnlp-conversation__answer pre {
  border: none;
  position: relative;
  padding: 10px;
  margin-top: 0;
  white-space: pre-wrap;
}
.jnlp-conversation__body-chat .jnlp-conversation__answer code {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin: 10px;
  word-break: break-word;
  white-space: pre-wrap;
}
.jnlp-conversation__body-chat .chat-input__warning-info {
  display: flex;
  justify-content: center;
  color: #666;
  font-size: 12px;
}
.jnlp-conversation__body-chat .body-chat__input {
  border: 1px solid #e5e7eb;
  margin: 18px 18px 6px 18px;
  background-color: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity ease-in-out 0.2s;
  pointer-events: none;
}
.jnlp-conversation__body-chat .body-chat__input.is-active {
  pointer-events: auto;
  opacity: 1;
}
.jnlp-conversation__body-chat .body-chat__input textarea {
  overflow: auto;
  outline: 2px solid transparent;
  outline-offset: 2px;
  background-color: transparent;
  border-width: 0px;
  line-height: 1.5;
  font-size: 15px;
  padding: 12px;
  color: black;
  resize: none;
  display: flex;
  max-height: 128px;
  width: 100%;
}
.chat-input__actions-wrapper {
  display: flex;
  place-items: center;
  height: 100%;
  transition: background-color ease-in 150ms;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.chat-input__actions-wrapper:hover {
  cursor: pointer;
  background-color: #e1e1e1;
}
.chat-input__actions-wrapper .chat-input__action {
  display: flex;
  height: 100%;
  place-items: center;
  flex: 1;
  padding: 0 12px;
}
.conversation-references__list {
  display: inline-block;
  padding: 0;
}
.conversation-references__list li {
  display: inline-block;
}
.conversation-multiple-references__list {
  padding-left: 20px;
}
.conversation-multiple-references__list > li {
  list-style: none;
}
.conversation-multiple-references__list ul {
  list-style: none;
  display: inline-block;
  padding: 0;
}
.conversation-multiple-references__list ul li {
  display: inline-block;
}
.conversation-multiple-references__list .reference-name {
  text-decoration: none;
  color: inherit;
}
.conversation-multiple-references__list .reference-name:hover {
  text-decoration: underline;
}
.dot-typing {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #7c7c7c;
  color: #7c7c7c;
  box-shadow: 9984px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10014px 0 0 0 #7c7c7c;
  animation: jnlp-conversation-dot-typing 1.5s infinite linear;
  margin-left: 76px;
}
@keyframes jnlp-conversation-dot-typing {
  0% {
    box-shadow: 9984px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10014px 0 0 0 #7c7c7c;
  }
  16.667% {
    box-shadow: 9984px -10px 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10014px 0 0 0 #7c7c7c;
  }
  33.333% {
    box-shadow: 9984px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10014px 0 0 0 #7c7c7c;
  }
  50% {
    box-shadow: 9984px 0 0 0 #7c7c7c, 9999px -10px 0 0 #7c7c7c, 10014px 0 0 0 #7c7c7c;
  }
  66.667% {
    box-shadow: 9984px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10014px 0 0 0 #7c7c7c;
  }
  83.333% {
    box-shadow: 9984px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10014px -10px 0 0 #7c7c7c;
  }
  100% {
    box-shadow: 9984px 0 0 0 #7c7c7c, 9999px 0 0 0 #7c7c7c, 10014px 0 0 0 #7c7c7c;
  }
}
/*# sourceMappingURL=questions.css.map */
