.fetch-data-button {
  display: inline-flex;
  flex: 0 1 auto;
  position: relative;
  max-width: 20rem;
}
.fetch-data-button._error.tip-top .message:before, .fetch-data-button._error .message[data-popper-placement=top]:before {
  top: 100%;
  border-width: 12px;
  border-color: #0b233f transparent transparent transparent;
}
.fetch-data-button:is(._loading, ._error, ._completed) .bx--btn:focus {
  box-shadow: none;
}
.fetch-data-button._loading.icon-only {
  width: 40px;
  height: 40px;
}
.fetch-data-button._loading {
  --loading-primary: #2b63d9;
  --loading-primary-tinted: #95b1ec;
}
.fetch-data-button._loading .bx--btn {
  background-color: #ffffff !important;
  color: #ffffff;
  border: 3px solid var(--loading-primary);
  pointer-events: none;
  user-select: none;
  animation: loading-border 2s ease-in-out infinite;
}
.fetch-data-button._loading .bx--btn > span {
  visibility: hidden;
}
.fetch-data-button._loading .dots {
  display: flex;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fetch-data-button._loading .dots ~ svg,
.fetch-data-button._loading .dots ~ button {
  visibility: hidden;
}
.fetch-data-button._loading .dot {
  height: 0.5rem;
  width: 0.5rem;
  background-color: var(--loading-primary);
  border-radius: 100%;
  margin: 0.25rem;
  animation: loading-dots 2s ease-in-out infinite;
}
.fetch-data-button._loading .dot:nth-child(2) {
  animation-delay: 0.4s;
}
.fetch-data-button._loading .dot:nth-child(3) {
  animation-delay: 0.8s;
}
@keyframes loading-dots {
50% {
    opacity: 0;
    transform: scale(0.7) translateY(10px);
}
}
@keyframes loading-border {
0% {
    border-color: var(--loading-primary-tinted) var(--loading-primary-tinted) var(--loading-primary) var(--loading-primary);
}
50% {
    border-color: var(--loading-primary) var(--loading-primary) var(--loading-primary-tinted) var(--loading-primary-tinted);
}
100% {
    border-color: var(--loading-primary-tinted) var(--loading-primary-tinted) var(--loading-primary) var(--loading-primary);
}
}
.fetch-data-button._error .bx--btn, .fetch-data-button._completed .bx--btn {
  pointer-events: none;
}
.fetch-data-button._error .bx--btn--icon-only, .fetch-data-button._completed .bx--btn--icon-only {
  width: 2.5rem;
  height: 2.5rem;
}
.fetch-data-button._error svg, .fetch-data-button._completed svg {
  margin-right: 0.25rem;
}
.fetch-data-button._error svg [stroke], .fetch-data-button._completed svg [stroke] {
  stroke: currentColor;
}
.fetch-data-button._error svg [fill], .fetch-data-button._completed svg [fill] {
  fill: currentColor;
}
.fetch-data-button._error svg ~ svg,
.fetch-data-button._error svg ~ button, .fetch-data-button._completed svg ~ svg,
.fetch-data-button._completed svg ~ button {
  display: none;
}
.fetch-data-button._completed .bx--btn {
  background-color: rgb(212.6, 223.8, 247.4);
  border: 2px solid #2b63d9;
  color: #2b63d9;
}
.fetch-data-button._error .bx--btn,
.fetch-data-button._error .bx--btn.bx--btn--icon-only {
  background-color: rgb(251.9, 245.5, 245.9);
  border: 1px solid rgb(217.8, 141, 145.8);
  color: #c14149;
}
.fetch-data-button._error .bx--btn .sls-icon [fill],
.fetch-data-button._error .bx--btn.bx--btn--icon-only .sls-icon [fill] {
  fill: #c14149;
}
.fetch-data-button._error .message:before {
  content: "";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  border-width: 0px 12px 12px 12px;
  border-style: solid;
  border-color: transparent transparent #0b233f transparent;
  transform: translateX(-50%);
}
.fetch-data-button._error .message {
  position: absolute;
  justify-content: center;
  color: #ffffff;
  background-color: #0b233f;
  border-radius: 10px;
  text-transform: none;
  min-width: 15rem;
  padding: 0.5rem 1rem;
  z-index: 9000;
}
.fetch-data-button._error.tip-left .message {
  width: 12rem;
  min-width: 12rem;
}
.fetch-data-button._error.tip-left .message:before {
  top: 50%;
  left: 98%;
  border-width: 12px;
  border-color: transparent transparent transparent #0b233f;
  transform: translateY(-50%);
}
.fetch-data-button._error.tip-right .message {
  width: 12rem;
  min-width: 12rem;
}
.fetch-data-button._error.tip-right .message:before {
  top: 50%;
  left: -1.25rem;
  border-width: 12px;
  border-color: transparent #0b233f transparent transparent;
  transform: translateY(-50%);
}
.fetch-data-button._error.tip-start .message:before {
  left: 20%;
}
.fetch-data-button._error.tip-end .message:before {
  left: 80%;
}
.fetch-data-button.icon-only {
  width: 40px;
  height: 40px;
}
.fetch-data-button.icon-only._completed svg, .fetch-data-button.icon-only._error svg {
  margin-right: 0;
}
.fetch-data-button.icon-only._completed svg ~ svg,
.fetch-data-button.icon-only._completed svg ~ button, .fetch-data-button.icon-only._error svg ~ svg,
.fetch-data-button.icon-only._error svg ~ button {
  display: none;
}
.fetch-data-button.icon-only._completed .bx--btn.bx--btn--icon-only {
  color: #2b63d9;
}
.fetch-data-button.icon-only._completed path {
  fill: none;
}
.fetch-data-button.icon-only._loading .dot {
  height: 0.25rem;
  width: 0.25rem;
  margin: 0.125rem;
}
.fetch-data-button.icon-only._loading .bx--btn.bx--btn--icon-only {
  border: 1px solid #2b63d9;
}
.fetch-data-button.icon-only .bx--btn {
  width: 40px;
  height: 40px;
  padding: 0;
}
.fetch-data-button.icon-only .bx--btn.bx--btn--icon-only:hover > svg, .fetch-data-button.icon-only .bx--btn.bx--btn--icon-only:focus > svg {
  fill: none;
}
.fetch-data-button.icon-only .bx--btn.bx--btn--icon-only > .bx--tooltip__trigger > svg {
  fill: none;
}
.fetch-data-button button[disabled] {
  opacity: 1;
}
.fetch-data-button .start-chat span {
  text-transform: none;
}