.react-chatbot-container .floating-chat-button {
  border: none;
  position: fixed;
  top: 33%;
  right: 0;
  display: inline-flex;
  padding: 2px;
  font-family: 'Inter', 'Roboto', 'Noto Sans', 'Open Sans', 'Arial', 'sans-serif';
  min-height: 101px;
  width: auto;
  max-width: 101px;
  justify-content: flex-start;
  align-items: center;
  border-radius: 80px 0 0 80px;
  background: linear-gradient(205deg, #61c2e5 14.14%, #68df8f 87.91%);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.5s ease;
  overflow: hidden;
}
.react-chatbot-container .floating-chat-button::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 0;
  bottom: 2px;
  background: #ffffff;
  border-radius: 78px 0 0 78px;
  z-index: -1;
}
.react-chatbot-container .floating-chat-button .button-content {
  display: inline-flex;
  padding: 12px 8px 12px 16px;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  width: 100%;
}
.react-chatbot-container .floating-chat-button img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.react-chatbot-container .floating-chat-button .button-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  padding-left: 8px;
  min-width: 0;
  position: absolute;
  left: 50px;
  width: 0;
  overflow: hidden;
}
.react-chatbot-container .floating-chat-button .button-text .text-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #003652;
  display: flex;
  align-items: center;
  gap: 8px;
}
.react-chatbot-container .floating-chat-button .button-text .text-title .close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
.react-chatbot-container .floating-chat-button .button-text .text-title .close-icon:focus {
  outline: 2px solid #0089CF;
  outline-offset: 2px;
  border-radius: 2px;
}
.react-chatbot-container .floating-chat-button .button-text .text-title .close-icon:focus:not(:focus-visible) {
  outline: none;
}
.react-chatbot-container .floating-chat-button .button-text .text-title .close-icon:focus-visible {
  outline: 2px solid #0089CF;
  outline-offset: 2px;
  border-radius: 2px;
}
.react-chatbot-container .floating-chat-button .button-text .text-title .close-icon .icon-close {
  width: 16px;
  height: 16px;
  fill: #3E3D35;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.react-chatbot-container .floating-chat-button .button-text .text-subtitle {
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  color: #003652;
}
.react-chatbot-container .floating-chat-button .button-text .text-cta {
  font-size: 16px;
  color: #003652;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
  z-index: 10;
}
.react-chatbot-container .floating-chat-button .button-text .text-cta .icon-chevron-right {
  width: 20px;
  height: 20px;
  fill: #003652;
  transition: fill 0.2s ease;
}
.react-chatbot-container .floating-chat-button .button-text .text-cta:hover,
.react-chatbot-container .floating-chat-button .button-text .text-cta:focus {
  text-decoration: underline;
}
.react-chatbot-container .floating-chat-button .button-text .text-cta:focus {
  outline: 2px solid #0089CF;
  outline-offset: 2px;
}
.react-chatbot-container .floating-chat-button .button-text .text-cta:focus:not(:focus-visible) {
  outline: none;
}
.react-chatbot-container .floating-chat-button .button-text .text-cta:focus-visible {
  outline: 2px solid #0089CF;
  outline-offset: 2px;
}
.react-chatbot-container .floating-chat-button.hovered,
.react-chatbot-container .floating-chat-button:has(.text-cta:focus),
.react-chatbot-container .floating-chat-button:has(.close-icon:focus) {
  max-width: 100%;
  padding-right: 16px;
  right: 0;
  box-shadow: 0 6px 20px rgba(0, 137, 207, 0.4);
}
.react-chatbot-container .floating-chat-button.hovered .button-text,
.react-chatbot-container .floating-chat-button:has(.text-cta:focus) .button-text,
.react-chatbot-container .floating-chat-button:has(.close-icon:focus) .button-text {
  opacity: 1;
  position: static;
  transform: translateX(0);
  width: auto;
  overflow: visible;
}
.react-chatbot-container .floating-chat-button.active {
  background: linear-gradient(135deg, #0089cf 0%, #00628e 100%);
  border-color: #00628E;
}
.react-chatbot-container .floating-chat-button.active img {
  transform: none;
}
.react-chatbot-container .floating-chat-button:not(.active) {
  animation: pulse 2s infinite;
}
.react-chatbot-container .floating-chat-window {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  animation: slideUp 0.3s ease-out;
}
.react-chatbot-container .floating-chat-window .chat-window-header {
  background: #ffffff;
  color: #ffffff;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.react-chatbot-container .floating-chat-window .chat-window-header .header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.react-chatbot-container .floating-chat-window .chat-window-header .header-content .header-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.react-chatbot-container .floating-chat-window .chat-window-header .header-content h3 {
  color: #003652;
  /* ML-Co-brand-Product name - Small */
  font-family: 'Inter', 'Roboto', 'Noto Sans', 'Open Sans', 'Arial', 'sans-serif';
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}
.react-chatbot-container .floating-chat-window .chat-window-header .ellipsis-button {
  display: flex;
  position: absolute;
  right: 64px;
  border: none;
  background: none;
  align-items: center;
  justify-content: center;
  padding-right: 8px;
  cursor: pointer;
}
.react-chatbot-container .floating-chat-window .chat-window-header .ellipsis-button svg {
  fill: #003652;
  width: 20px;
  height: 20px;
}
.react-chatbot-container .floating-chat-window .chat-window-header .minimize-button {
  display: flex;
  position: absolute;
  right: 40px;
  border: none;
  background: none;
  align-items: center;
  justify-content: center;
  padding-right: 8px;
  cursor: pointer;
}
.react-chatbot-container .floating-chat-window .chat-window-header .minimize-button svg {
  fill: #003652;
  width: 20px;
  height: 20px;
}
.react-chatbot-container .floating-chat-window .chat-window-header .close-button {
  display: flex;
  position: absolute;
  right: 16px;
  border: none;
  background: none;
  align-items: center;
  justify-content: center;
}
.react-chatbot-container .floating-chat-window .chat-window-header .close-button svg {
  cursor: pointer;
  fill: #003652;
  width: 20px;
  height: 20px;
}
.react-chatbot-container .floating-chat-window .chat-window-content {
  flex: 1;
  overflow: hidden;
  background: #effbff;
  display: flex;
  flex-direction: column;
}
.react-chatbot-container .floating-chat-window .chat-window-content > div {
  height: 100%;
  padding: 0;
  background: transparent;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.react-chatbot-container .chat-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.react-chatbot-container .simple-chat-interface {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #E8F4F8;
}
.react-chatbot-container .chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  width: 100%;
  min-height: 200px;
  padding-left: 0;
  padding-right: 0;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}
.react-chatbot-container .chat-messages::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}
.react-chatbot-container .chat-messages:has(.chat-message--initial):not( :has(.chat-message--user)) {
  justify-content: center;
}
.react-chatbot-container .chat-messages:has(.chat-message--initial):not( :has(.chat-message--user)) .chat-message--initial {
  justify-content: center;
  flex: 1;
}
.react-chatbot-container .chat-messages:has(.chat-message--initial):not( :has(.chat-message--user)) .chat-message--initial .message-content {
  text-align: center;
}
.react-chatbot-container .chat-message {
  display: flex;
  width: 100%;
  margin-bottom: 32px;
}
.react-chatbot-container .chat-message--user {
  justify-content: flex-end;
}
.react-chatbot-container .chat-message--user .message-content {
  background: #ffffff;
  color: #003652;
  padding: 24px;
  font-family: 'Inter', 'Roboto', 'Noto Sans', 'Open Sans', 'Arial', 'sans-serif';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 11.2px;
}
.react-chatbot-container .chat-message--assistant {
  justify-content: flex-start;
  text-align: left;
}
.react-chatbot-container .chat-message--assistant .message-content {
  background: transparent;
  color: #003652;
  border-radius: 0;
  box-shadow: none;
  font-family: 'Inter', 'Roboto', 'Noto Sans', 'Open Sans', 'Arial', 'sans-serif';
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  padding: 0;
}
.react-chatbot-container .chat-message--initial {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.react-chatbot-container .chat-message--initial .message-content {
  text-align: left;
  max-width: 100%;
  color: #003652;
  font-family: 'ivypresto-text', 'Georgia', 'serif';
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
}
.react-chatbot-container .message-content {
  padding: 12px 16px;
  word-wrap: break-word;
  line-height: 1.5;
  font-size: 14px;
}
.react-chatbot-container .message-content p {
  margin-bottom: 0;
}
.react-chatbot-container .message-content a {
  color: #3185a9;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.react-chatbot-container .message-content a:hover {
  color: #003652;
}
.react-chatbot-container .message-content a:focus {
  color: #003652;
  outline: 2px solid #0089CF;
  outline-offset: 2px;
}
.react-chatbot-container .message-content a:focus:not(:focus-visible) {
  outline: none;
}
.react-chatbot-container .message-content a:focus-visible {
  outline: 2px solid #0089CF;
  outline-offset: 2px;
}
.react-chatbot-container .source-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.react-chatbot-container .source-list-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  background: none;
  border: 2px solid #003652;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px 16px;
  color: #003652;
}
.react-chatbot-container .source-list-toggle:hover,
.react-chatbot-container .source-list-toggle:focus {
  background: #003652;
  border-color: #003652;
}
.react-chatbot-container .source-list-toggle:hover .source-list-header,
.react-chatbot-container .source-list-toggle:focus .source-list-header,
.react-chatbot-container .source-list-toggle:hover .source-toggle-icon,
.react-chatbot-container .source-list-toggle:focus .source-toggle-icon {
  color: #fff;
}
.react-chatbot-container .source-list-header {
  font-weight: 600;
  font-size: 16px;
  font-family: 'Inter', 'Roboto', 'Noto Sans', 'Open Sans', 'Arial', 'sans-serif';
  color: #003652;
}
.react-chatbot-container .source-toggle-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.react-chatbot-container .source-toggle-icon.expanded {
  transform: rotate(180deg);
}
.react-chatbot-container .source-list-items {
  margin: 0;
  list-style-type: none;
}
.react-chatbot-container .source-list-item {
  line-height: 1.5;
  color: #003652;
  position: relative;
  text-decoration: underline;
  font-family: 'Inter', 'Roboto', 'Noto Sans', 'Open Sans', 'Arial', 'sans-serif';
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
}
.react-chatbot-container .source-list-item a {
  color: #003652;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.react-chatbot-container .source-list-item a:hover {
  color: #3185a9;
}
.react-chatbot-container .source-list-item a:focus {
  color: #3185a9;
  outline: 2px solid #0089CF;
  outline-offset: 2px;
}
.react-chatbot-container .source-list-item a:focus:not(:focus-visible) {
  outline: none;
}
.react-chatbot-container .source-list-item a:focus-visible {
  outline: 2px solid #0089CF;
  outline-offset: 2px;
}
.react-chatbot-container .source-list-item:last-child {
  margin-bottom: 0;
}
.react-chatbot-container .chat-message--assistant {
  flex-direction: column;
}
.react-chatbot-container .typing-indicator {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  justify-content: flex-start;
  align-items: center;
}
.react-chatbot-container .typing-indicator span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  animation: typing 1.2s ease-in-out infinite;
}
.react-chatbot-container .typing-indicator span:nth-child(1) {
  background: #61C2E5;
  animation-delay: 0s;
}
.react-chatbot-container .typing-indicator span:nth-child(2) {
  background: #3185A9;
  animation-delay: 0.2s;
}
.react-chatbot-container .typing-indicator span:nth-child(3) {
  background: #68DF8F;
  animation-delay: 0.4s;
}
@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
.react-chatbot-container .chat-input-container {
  display: flex;
  align-items: center;
  padding: 32px 0px 44px 0px;
  background: #ffffff;
  gap: 12px;
  max-width: 100%;
  position: relative;
}
.react-chatbot-container .chat-wrapper {
  flex: 1;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.react-chatbot-container .metchat-input {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.react-chatbot-container .input-divider {
  position: absolute;
  right: 152px;
  width: 1px;
  height: 37px;
  background-color: #c4beb5;
}
.react-chatbot-container .clear-button {
  display: flex;
  width: 36px;
  height: 36px;
  background: none;
  position: absolute;
  cursor: pointer;
  right: 176px;
  border: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.react-chatbot-container .clear-button svg {
  fill: #003652;
  width: 20px;
  height: 20px;
  transition: fill 0.3s ease;
}
.react-chatbot-container .clear-button:hover:not(:disabled) {
  transform: scale(1.1);
}
.react-chatbot-container .clear-button:hover:not(:disabled) svg {
  fill: #3185a9;
}
.react-chatbot-container .clear-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.react-chatbot-container .chat-input {
  flex: 1;
  border: 2px solid #3185a9;
  border-radius: 999px;
  padding: 24px 206px 24px 32px;
  font-size: 22px;
  line-height: 28.6px;
  font-family: 'Inter', 'Roboto', 'Noto Sans', 'Open Sans', 'Arial', 'sans-serif';
  height: 84px;
  color: #003652;
  background: #ffffff;
}
.react-chatbot-container .chat-input:focus {
  outline: none;
  border-color: #0089CF;
}
.react-chatbot-container .chat-input:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
}
.react-chatbot-container .chat-input::placeholder {
  opacity: 0.55;
}
.react-chatbot-container .mic-button {
  display: flex;
  width: 36px;
  background: none;
  position: absolute;
  cursor: pointer;
  right: 92px;
  height: 36px;
  border: none;
  z-index: 10;
}
.react-chatbot-container .mic-button svg {
  fill: #003652;
  width: 36px;
  height: 36px;
}
.react-chatbot-container .send-button {
  width: 36px;
  height: 32px;
  position: absolute;
  right: 32px;
  border-radius: 999px;
  background: #003652;
  border: none;
  color: white;
  display: flex;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  padding: 5px 8px;
}
.react-chatbot-container .send-button svg {
  fill: #fff;
  min-width: 16px;
  min-height: 16px;
}
.react-chatbot-container .send-button:hover:not(:disabled),
.react-chatbot-container .send-button:focus:not(:disabled) {
  background: #006FA8;
  transform: scale(1.05);
}
.react-chatbot-container .send-button:disabled {
  background: #003652;
  cursor: not-allowed;
  opacity: 0.6;
}
.react-chatbot-container .chat-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
@media (min-width: 769px) {
  .react-chatbot-container .chat-backdrop {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .react-chatbot-container .chat-messages {
    padding: 48px 0px;
  }
  .react-chatbot-container .chat-input {
    height: 69px;
    font-size: 18px;
    line-height: 23.4px;
    padding: 16px 180px 16px 24px;
  }
  .react-chatbot-container .chat-input-container {
    padding-top: 32px;
  }
  .react-chatbot-container .clear-button {
    right: 144px;
  }
  .react-chatbot-container .metchat-input {
    padding: 0;
  }
  .react-chatbot-container .input-divider {
    right: 128px;
  }
  .react-chatbot-container .mic-button {
    right: 76px;
  }
  .react-chatbot-container .send-button {
    right: 24px;
  }
  .react-chatbot-container .chat-message--initial .message-content {
    font-size: 36px;
    line-height: 43.2px;
  }
}
@media screen and (max-width: 767px) {
  .react-chatbot-container .chat-messages {
    padding: 24px 0px;
  }
  .react-chatbot-container .chat-input {
    height: 69px;
    font-size: 18px;
    line-height: 23.4px;
    padding: 16px 180px 16px 24px;
  }
  .react-chatbot-container .chat-input-container {
    padding-top: 16px;
    padding-bottom: 8px;
  }
  .react-chatbot-container .metchat-input {
    padding: 0;
  }
  .react-chatbot-container .clear-button {
    right: 144px;
  }
  .react-chatbot-container .input-divider {
    right: 128px;
  }
  .react-chatbot-container .mic-button {
    right: 76px;
  }
  .react-chatbot-container .send-button {
    right: 24px;
  }
  .react-chatbot-container .floating-chat-window .chat-window-header {
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .react-chatbot-container .chat-message--initial .message-content {
    font-size: 30px;
    line-height: 36px;
  }
}
.react-chatbot-container .download-modal {
  position: absolute;
  top: 80px;
  right: 46px;
  background: #FBFAF8;
  border-radius: 12px;
  border: 1px solid #003652;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 1001;
  min-width: 280px;
}
.react-chatbot-container .download-modal::before {
  content: '';
  position: absolute;
  top: -14.3031px;
  right: 20px;
  z-index: 1;
  width: 48px;
  height: 15px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='15' viewBox='0 0 48 15' fill='none'%3E%3Cpath d='M48 13.832C38.19 13.832 29.48 9.12203 24 1.83203C18.52 9.12203 9.81 13.832 0 13.832L0 15L48 15L48 13.832Z' fill='%23FBFAF8'/%3E%3Cpath d='M48 13.832C38.19 13.832 29.48 9.12203 24 1.83203C18.52 9.12203 9.81 13.832 0 13.832' stroke='%23003652'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.react-chatbot-container .download-modal::after {
  content: '';
  position: absolute;
  top: -1;
  right: 20px;
  width: 48px;
  height: 1px;
  background-color: #FBFAF8;
}
.react-chatbot-container .download-modal .download-modal-header {
  display: flex;
  margin-bottom: 16px;
}
.react-chatbot-container .download-modal .download-modal-header h4 {
  margin: 0;
  font-family: 'Inter', 'Roboto', 'Noto Sans', 'Open Sans', 'Arial', 'sans-serif';
  font-size: 22px;
  line-height: 33.8px;
  font-weight: 600;
  color: #003652;
}
.react-chatbot-container .download-modal .download-modal-header .modal-close-button {
  background: none;
  border: none;
  right: 24px;
  position: absolute;
  cursor: pointer;
}
.react-chatbot-container .download-modal .download-modal-header .modal-close-button svg {
  width: 16px;
  height: 16px;
  fill: #003652;
}
.react-chatbot-container .download-modal .download-transcript-button {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: none;
  border: none;
  color: #3E3D35;
  font-family: 'Inter', 'Roboto', 'Noto Sans', 'Open Sans', 'Arial', 'sans-serif';
  font-size: 16px;
  cursor: pointer;
  text-align: left;
}
.react-chatbot-container .download-modal .download-transcript-button svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.react-chatbot-container .download-modal .download-transcript-button:hover,
.react-chatbot-container .download-modal .download-transcript-button:focus {
  text-decoration: underline;
}
