:root {
  --color-black: hsla(0, 0%, 0%, 1);
  --color-white: hsla(0, 0%, 100%, 1);
  --color-transparent: hsla(0, 0%, 100%, 0);

  --color-primary-50: #f9fbfc;
  --color-primary-100: #eaf3f8;
  --color-primary-200: #d2e1ef;
  --color-primary-300: #b6cde3;
  --color-primary-400: #98bad8;
  --color-primary-500: #5773bd;
  --color-primary-600: #425ea7;
  --color-primary-700: #364d88;
  --color-primary-800: #293b69;
  --color-primary-900: #233259;
  --color-primary-950: #11192c;

  --color-record-500: hsla(330, 53%, 48%, 1);
  --color-record-700: hsla(330, 53%, 58%, 1);

  --color-gray-0: hsla(0, 0%, 100%, 1);
  --color-gray-50: hsla(0, 0%, 97%, 1);
  --color-gray-100: hsla(0, 0%, 88%, 1);
  --color-gray-200: hsla(0, 0%, 80%, 1);
  --color-gray-300: hsla(0, 0%, 71%, 1);
  --color-gray-400: hsla(0, 0%, 60%, 1);
  --color-gray-500: hsla(0, 0%, 53%, 1);
  --color-gray-600: hsla(0, 0%, 45%, 1);
  --color-gray-700: hsla(0, 0%, 36%, 1);
  --color-gray-800: hsla(0, 0%, 27%, 1);
  --color-gray-900: hsla(0, 0%, 19%, 1);
  --color-gray-950: hsla(0, 0%, 10%, 1);

  --font-color: var(--color-gray-900);
  --background-color: var(--color-gray-0);
  --border-color: var(--color-gray-500);
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  font-family: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: inherit;
}
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  min-height: 100dvh;
}
body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    'Helvetica Neue',
    Arial,
    'Noto Sans',
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji';

  color: var(--font-color);
  background-color: var(--background-color);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
body {
  line-height: 1.25;
}
h1,
.h1 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  h1,
.h1 {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
@media (min-width: 1024px) {
  h1,
.h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
h1,
.h1 {
  line-height: 1.25;
  font-weight: 700;
}
h2,
.h2 {
  margin-bottom: 1.25rem;
  margin-top: 2rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  h2,
.h2 {
    margin-top: 2.5rem;
  }
}
@media (min-width: 1024px) {
  h2,
.h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 1210px) {
  h2,
.h2 {
    margin-top: 3rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media print {
  h2,
.h2 {
    font-size: 1.25rem !important;
    line-height: 1.75rem !important;
  }
}
h2,
.h2 {
  line-height: 1.25;
  font-weight: 700;
}
h3,
.h3 {
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.25;
  text-wrap: balance;
  font-weight: 700;
}
h4,
.h4 {
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.25;
  text-wrap: balance;
  font-weight: 700;
}
h5,
.h5 {
  font-size: 1em;
  line-height: inherit;
  text-wrap: balance;
  font-weight: 700;
}
main a {
  color: var(--color-primary-700);
  text-decoration: inherit;
  transition:
    color 300ms linear,
    border-bottom 100ms linear;
}
main a:hover {
  color: var(--color-primary-600);
}
hr {
  height: 1px;
  margin: 1em 0;
  background-color: var(--border-color);
  border: 0;
}
ol {
  list-style: decimal;
  margin: 1em 0 2em 1.2em;
}
ul {
  list-style: initial;
  margin: 1em 0 1em 1em;
}
ul ol {
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 2em;
}
li {
  margin-bottom: 0.1em;
  text-wrap: wrap;
}
main a:hover,
main a:focus,
main a:focus-visible,
.button:focus,
.button:focus-visible,
input:focus,
input:focus-visible,
textarea:focus,
textarea:focus-visible {
  outline: none;
  border-bottom: 1px solid var(--color-primary-600);
}
.slogan {
  padding-top: 1.5em;

  transition: opacity 300ms ease-in-out;
  font-size: 16px;
}
.slogan a:hover,
.slogan a:focus {
  border-bottom-width: 3px;
}
.answer-is-loading .slogan {
  opacity: 1;
}
.select {
  display: flex;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--color-primary-700);
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  position: relative;
  color: var(--color-white);

  transition:
    background-color 300ms ease-in-out,
    color 300ms ease-in-out;
}
.select:hover,
.select:focus,
.select:focus-within,
.select:focus-within .button {
  background-color: var(--color-primary-600);
}
.button:focus-within,
.select:focus-within {
  outline: 2px solid var(--color-primary-300);
  outline-offset: 2px;
}
.select:focus-within .button {
  outline: none;
}
.select::after {
  content: '';
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 0.15em solid currentColor;
  border-right: 0.15em solid currentColor;
  transform: rotate(135deg);
  margin-left: 0.5em;

  position: relative;
  top: 0.75em;
  right: 1em;
}
select::-ms-expand {
  display: none;
}
select {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.button {
  border-radius: 0px;
  border: 1px solid transparent;
  padding: 0.5em 1em;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-white);
  background-color: var(--color-primary-700);

  transition:
    background-color 300ms ease-in-out,
    color 300ms ease-in-out;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
textarea,
input {
  padding: 0.799em 1em;
  border: 1px solid var(--color-gray-400);
  background-color: var(--color-gray-0);
  color: var(--color-gray-900);
}
label {
  display: block;
  font-size: 0.9em;
  padding: 1.2em 0 0.5em 0;
}
.layout {
  --tw-bg-opacity: 1;
  background-color: rgb(247 247 247 / var(--tw-bg-opacity));
}
.wrapper{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100dvh - 30px);
}
/* Avoid Chrome to see Safari hack */
@supports (-webkit-touch-callout: none) {
  .wrapper {
    /* The hack for Safari */
    min-height: -webkit-fill-available;
  }
}
.main {
  position: relative;
  z-index: 2;
  padding: 1.25rem;
  padding-bottom: 25vh;
}
.back_button{
  position: sticky;
  top: 0;
  margin: 0;
  z-index: 10;
  padding: 5px;
  color: #fff;
  --tw-bg-opacity: 1;
  background-color: rgb(0 34 76 / var(--tw-bg-opacity));
}
.resultBoxContainer {
  display: flex;
  flex-direction: column;
}
.resultBox {
  margin-bottom: 1em;
  word-wrap: break-word;
  min-height: 1.3em;
}
.resultBox.chatbot {
  margin-bottom: 0em;
}
.resultBox.chatbot p img {
  display: inline;
}
.resultBox p,
.resultBoxInfo p,
.resultBoxLinks p {
  margin-bottom: 1em;
}
.resultBoxInfo {
  margin-bottom: 1em;
  word-wrap: break-word;
}
.resultBoxLinks {
  margin: 0 auto;
  max-width: 1200px;
  margin-top: 1em;
  word-wrap: break-word;
}
.resultBoxLinks li img,
.zueriSearchResult img {
  float: right;
  max-height: 100px;
  max-width: 120px;
  margin-bottom: 15px;
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 3px;
}
.resultBoxLinks td {
  height: 150px;
  word-wrap: break-word;
}
.resultBoxLinks td img {
  max-height: 100px;
  max-width: 120px;
  margin-top: 5px;
  margin-left: 5px;
}
.resultBoxLinks td img:hover {
  position: absolute !important;
}
.resultBoxLinks a {
  font-weight: 500;
}
.resultBoxLinks li img {
  float: right;
  transition: transform 0.3s ease;
}
.visionImage {
  background-color: white;
  padding: 2px;
  box-shadow: #dcdcdc 0 0 2px 0;
  position: fixed;
  bottom: 100px;
  right: 0;
  z-index: 900;
  max-width: 300px;
  max-height: 300px;
}
.resultBoxLinks li img:hover,
.resultBoxLinks td img:hover,
.zueriSearchResult img:hover {
  transform: scale(3);
  transform-origin: right; /* Adjust the origin of transformation */
  position: relative; /* Change to absolute positioning */
  right: 0;
  z-index: 20;
  cursor: pointer;
  background-color: white;
  padding: 2px;
  box-shadow: #dcdcdc 0 0 2px 0;
}
.resultBoxLinks .similarity {
  opacity: 0.7;
  padding-left: 0.4em;
  font-size: 0.9em;
}
.resultBoxLinks .description {
  font-style: italic;
}
.tooltip-content {
  border-radius: 8px !important;
}
.tooltip-content .summary {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tooltip-content .summary:after {
  content: '*';
}
.tooltip-title {
  font-size: 1.1em;
  line-height: 1.3;
  font-weight: bold;
  color: var(--color-primary-900);
}
.tooltip-title:hover {
  color: var(--color-primary-700);
}
.tooltip-content br + br {
  display: none;
}
.tooltip-date {
  white-space: nowrap;
  display: none;
}
.resultBoxLinks li {
  clear: both;
  padding-bottom: 0.5em;
  min-height: 3em;
}
.resultBox h5 {
  margin-top: 1em;
}
@media (min-width: 700px) {
  .maybeBadRating {
    display: flex;
    align-items: center;
  }
  .pagerSearch {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .pagerSearch input {
    margin-top: 0.5em;
  }
}
code {
  font-family:
    Söhne Mono,
    Monaco,
    Andale Mono,
    Ubuntu Mono,
    monospace !important;
  font-size: 14px;
  /*color: white;
    background-color: #000;
  */
  font-weight: 400;
  padding: 4px 4px;

  border: 1px solid #ddd;
  margin: 1em 0;
  overflow-x: auto; /* for long lines of code */
  white-space: pre; /* to respect whitespace and line breaks */
}
/* Table base styling */
table {
  width: 100%; /* Use the full width of its container */
  margin-top: 1em;
  margin-bottom: 1em;
  border-collapse: collapse; /* Collapse cell borders */
  table-layout: fixed; /* Makes sure column widths remain consistent */
}
pre code {
  display: block;
  border-radius: 5px;
  padding: 10px 15px;
}
/* Headers styling */
th {
  font-weight: bold; /* Bold text for headers */
  padding: 10px 15px; /* Some padding for readability */
  border: 1px solid #ddd; /* Light grey border */
  text-align: left; /* Align text to the left */
}
@media (min-width: 700px) {

  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
    .layout td:first-child,
    .layout th:first-child {
      width: 23em;
    }
      .layout .resultBoxLinks td,
      .layout .resultBoxLinks th {
        vertical-align: top;
      }

      .layout .resultBoxLinks td:first-child,
      .layout .resultBoxLinks th:first-child {
        width: 7em;
      }

      .layout .resultBoxLinks td:nth-child(3),
      .layout .resultBoxLinks th:nth-child(3) {
        width: 13em;
      }

      .layout .resultBoxLinks td:nth-child(4),
      .layout .resultBoxLinks th:nth-child(4) {
        width: 7em;
      }

      .layout .resultBoxLinks td:nth-child(5),
      .layout .resultBoxLinks th:nth-child(5) {
        width: 7em;
      }
}
/* Cells styling */
td {
  padding: 10px 15px; /* Consistent padding with header cells */
  border: 1px solid #ddd; /* Light grey border */
  text-overflow: ellipsis; /* Add ellipsis for overflow content */
  overflow: hidden; /* Hide overflow content */
  /* white-space: nowrap;*/ /* Keep content in single line */
}
/* Zebra stripe for odd rows */
@media (prefers-color-scheme: light) {
  tr:nth-child(odd) {
    background-color: #f9f9f9; /* Very light grey background */
  }

  th {
    background-color: #f2f2f2; /* Light grey background */
  }

  /* Hover effect to highlight the row */
  tr:hover {
    background-color: #e6e6e6; /* Lighter grey background */
  }

  code {
    background-color: #fafafa;
  }
}
.combined-button {
  padding: 10px 20px;
  border: none;
  border-radius: 9999px; /* This gives a fully rounded shape */
  font-weight: bold;
  cursor: pointer;
  outline: none;
  display: inline-flex;
  margin-bottom: 0.5em;
  text-align: left;
  align-items: center;
  justify-content: left;
  transition: background-color 0.3s ease; /* Smooth background color transition */
}
.classification .combined-button {
  width: 100%;
}
.combined-button:hover svg circle {
    transition:
      fill 300ms ease-in-out,
      color 300ms ease-in-out;

    fill: var(--color-primary-50);
  }
.combined-button svg {
  width: 30px;
  height: 30px;

  display: flex; /* Align SVG properly with the text */
}
.combined-button svg circle {
  fill: transparent; /* Transparent fill for the circle */
  stroke: #ffffff; /* White stroke for the circle */
  stroke-width: 3; /* Stroke width */
  opacity: 0.5; /* Half opacity for the stroke */
}
.combined-button.selected {
  background-color: var(--color-primary-400) !important;
}
.combined-button.selected svg circle {
    fill: var(--color-primary-50);
  }
.classification h4 {
    margin-bottom: 0.5em;
  }
.classification div {
    width: 100%;
  }
.classification {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 1em;
}
.footer {
  margin: 0 0.6em;
}
/* There are several button types: weak, strong, action, and super. For the sake of simplicity, "weak" is the default. */
/* For each button type (except "action" and "super"), there are two size variations: base and sm. base is the default. */
/* For each button type and each size, there are different states. Each state is implemented with pseudo classes. */
/* Buttons may have icons on their left, right, be icon only or have no icon at all. These icons are placed both in the DOM via markup and with classes. */
.button {
  /* Basics */
  display: flex;
  align-items: center;
  border-radius: 0.125rem;
  border-width: 1px;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .button {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.button {
  font-weight: 700;
  --tw-border-opacity: 1;
  border-color: rgb(35 50 89 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(41 59 105 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));

  /* State variants */
}
.button:disabled {
  --tw-border-opacity: 1;
  border-color: rgb(181 181 181 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(181 181 181 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(70 70 70 / var(--tw-text-opacity));
}
.button:hover {
  --tw-border-opacity: 1;
  border-color: rgb(35 50 89 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(0 34 76 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.button.is-loading {
  background-position: center;
  background-repeat: no-repeat;
    color: transparent !important;
}
.button svg {
  margin-top: 0.1em;
  height: 1.25rem;
  width: 1.25rem;
}
.button path {
  stroke: currentColor;
  stroke-width: 0.125em;
  stroke-linecap: square;
}
.button.button.button--bare {
  background-color: transparent;
  color: var(--color-primary-700);
  border: none;
  padding: 0.25em 0;
  gap: 0.1em;
  font-weight: 700;
  align-items: flex-start;
}
.button.button--bare:hover,
.button.button--bare:focus {
  outline-color: transparent;
  border: none;
  background-color: transparent;
  color: var(--color-primary-900);
}
.button.button--bare svg {
  transition-property: transform;
  transition-duration: 200ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.button.button--bare:hover svg {
  --tw-translate-x: 3px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.button--microphone {
  flex: 1 0 auto;
  flex-grow: 0;
  display: block;
  width: 2.8em;
  height: 2.8em;
  align-self: center;
  padding: 0.2em;

  border-radius: 50%;
  background-color: var(--color-record-500);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (min-width: 768px) {
.button--microphone {
    display: block
}
  }
.button--microphone svg {
  width: 2em;
  height: 2em;
}
.button--microphone path {
  stroke-linecap: square;
  stroke-linejoin: round;
  stroke-width: 2.2px;
}
.button--microphone.vision path {
  stroke-width: 1px;
}
.button--microphone:hover {
  background-color: var(--color-record-700);
}
.button--microphone:focus {
  outline-color: var(--color-record-700);
  border-bottom-color: transparent;
}
.button--microphone::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--color-record-700);
  opacity: 0;
}
.button--microphone:active {
  outline-color: transparent;
}
.button--microphone:active::after {
  animation: pulse 1s infinite ease-in-out;
  outline-color: transparent;
  opacity: 1;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.button__hint {
  position: absolute;
  top: -1.5em;
  left: 50%;
  opacity: 0;

  font-size: 0.8em;
  font-weight: 400;

  background-color: var(--color-record-500);
  padding: 0.5em;
  width: 10em;
  text-wrap: wrap;

  transform: translate(-50%, -50%) scale(0.3);
  transition:
    transform 200ms 0ms ease-in-out,
    opacity 200ms 0ms ease-in-out;
}
.button__hint::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 80%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--color-record-500);
}
.button--microphone:hover .button__hint,
.button--microphone:focus .button__hint {
  opacity: 1;
  transform: translate(-80%, -100%) scale(1);
  transition:
    transform 200ms 800ms ease-in-out,
    opacity 200ms 800ms ease-in-out;
}
.box {
  margin: 1em 0;
}
.box__content {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.box--quick-feedback {
  margin: 0;
  position: relative;
  top: -1em;
}
.box__drawer {
  width: 100%;
  max-height: 0;
  overflow: hidden;
}
.box__drawer--is-open {
  max-height: 100vh;
  transition: max-height 0.5s ease-in-out;
}
.box__drawer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 1em;
  margin: 1em 0 0 0;
  border-radius: 0.125rem;
  --tw-bg-opacity: 1;
  background-color: rgb(247 247 247 / var(--tw-bg-opacity));
}
.clickable {
  position: relative;
  cursor: pointer;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.clickable__link::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: transparent;
}
.question-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
  padding: 0.5em 0 0 0;
}
.question {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  padding: 4px;
  margin: 0 0.5em;
  gap: 0.5em;
  position: relative;
  align-items: center;
}
@media (min-width: 768px) {
  .question {
    align-items: stretch;
  }
}
.question::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: -1px;
  background-color: var(--color-primary-900);
  border-radius: 2px;

  transition:
    inset 200ms ease-in-out,
    background-color 200ms ease-in-out;
}
.question::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0px;
  border-radius: 0.125rem;
  --tw-bg-opacity: 1;
  background-color: rgb(247 247 247 / var(--tw-bg-opacity));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.question:hover::before {
  inset: -2px;
}
.question:focus-within::before {
  --tw-bg-opacity: 1;
  background-color: rgb(249 223 27 / var(--tw-bg-opacity));
  --tw-shadow-color: #f9df1b;
  --tw-shadow: var(--tw-shadow-colored);
  inset: -2px;
}
.question:focus-within::after {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.question__input {
  width: 100%;
  height: 100%;
  resize: none;

  transition: height 200ms ease-in-out;
}
.question__input:focus {
  outline: none;
  border-color: transparent;
  color: var(--color-gray-900);
}
.question__button span {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
@media (min-width: 768px) {
.question__button span {
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    position: static;
    overflow: visible;
    clip: auto
}
  }
.question textarea {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@media (min-width: 1024px) {
  .question textarea {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.szh-accordion {
  margin-bottom: 1em;
}
.szh-accordion__item {
  --tw-bg-opacity: 1;
  background-color: rgb(234 243 248 / var(--tw-bg-opacity));
  border: none;
  border-radius: 0.125rem;
}
.szh-accordion__item-btn {
  width: 100%;
  border-radius: 0.125rem;
  background-color: rgb(210 225 239 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.25;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 0.5rem;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(35 50 89 / var(--tw-text-opacity));

  transition:
    background-color 300ms ease-in-out,
    color 300ms ease-in-out;
}
.szh-accordion__item-btn:hover {
  cursor: pointer;
  --tw-bg-opacity: 1;
  background-color: rgb(210 225 239 / var(--tw-bg-opacity));
}
.szh-accordion__item-btn:focus {
  outline: none;
  --tw-bg-opacity: 1;
  background-color: rgb(210 225 239 / var(--tw-bg-opacity));
}
.szh-accordion__item-btn::after {
  content: '';
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 0.1em solid currentColor;
  border-right: 0.1em solid currentColor;
  transform: rotate(135deg);
  margin-left: 0.5em;

  position: absolute;
  top: 1em;
  right: 1em;

  transition: transform 400ms cubic-bezier(0, 0, 0, 1);
}
.szh-accordion__item--expanded .szh-accordion__item-btn::after {
  transform: rotate(315deg) translate(-0.2em, 0.2em);
}
.szh-accordion__item--status-entered {
}
.szh-accordion__item--expanded {
}
.szh-accordion__item-heading {
  position: relative;
  font-size: 1em;
}
.szh-accordion__item-content {
  background-color: rgb(210 225 239 / var(--tw-bg-opacity));
  --tw-bg-opacity: 0.5;
}
@media (min-width: 1210px) {
  .szh-accordion__item-content {
    padding-right: 14rem;
  }
}
.szh-accordion__item-content {
  transition: height 550ms ease-in-out;
}
.szh-accordion__item-panel {
  padding: 1em 1em 3em 1em;
}
.szh-accordion__item-content .h5 {
  margin-bottom: 1em;
}
.illustration { 
  position: relative; 
  width:  clamp(100px, 20vw, 180px);
  height: auto;
}
.illustration__background { 
  width:  clamp(100px, 20vw, 180px);
  height: auto;
  overflow: visible;
}
.illustration__logo { 
  width:  45%; /* weird numbers, related to the svg aspect ratio */
  height: 72%;
  overflow: visible;
  position: absolute;
  z-index: 1;
  transform-origin: 50% 50%;
  transform: translate(61%,-2%) rotateX(-55deg) rotateY(0deg) rotateZ(45deg);
  cursor: pointer;
}
.fancy-chip { 
  overflow: visible;
}
.wires,
.wires--active,
.bubbles,
.files,
.person { 
  fill: none;
  stroke: var(--border-color);
  stroke-width: 2;
}
.answer-is-loading .bubbles, 
.answer-is-loading .files, 
.answer-is-loading .person { 
  stroke: var(--color-primary-400);
  stroke-dasharray: 4 4;
  stroke-dashoffset: 0;

  animation: dash--mini 2s infinite linear;
}
@keyframes dash--mini {
  to {
    stroke-dashoffset: 200;
  }
}
.answer-is-loading .wires--active { 
  /* filter:url(#glow); */

  stroke-width: 1;
  stroke: var(--color-primary-400);  
  stroke-dasharray: 100 200;
  stroke-dashoffset: 0;
}
.wires--active *:nth-of-type(6n) {   
  animation: dash1 4s infinite linear;
}
.wires--active *:nth-of-type(6n+1) {   
  animation: dash1 3s infinite linear;
}
.wires--active *:nth-of-type(6n+2) {   
  animation: dash2 2s infinite linear;
}
.wires--active *:nth-of-type(6n+3) {   
  animation: dash2 2s infinite linear;
}
.wires--active *:nth-of-type(6n+4) {
  stroke-dasharray: 50 100;   
  animation: dash2 4s infinite linear;
}
.wires--active *:nth-of-type(6n+5) { 
  stroke-dasharray: 200 400;  
  animation: dash1 3s infinite linear;
}
@keyframes dash1 {
  to {
    stroke-dashoffset: 2200;
  }
}
@keyframes dash2 {
  to {
    stroke-dashoffset: -2200;
  }
}
.leg-color-1{ 
  fill:#DCDCDC;
}
.leg-color-2{ 
  fill:#C5C5C5;
}
.leg-color-3{ 
  fill:#898989;
}
.chip-middle-color-1{ 
  fill:var(--color-primary-600);
  transition: fill 0.3s ease-in-out;
}
.chip-middle-color-2{ 
  fill:var(--color-primary-700);
  transition: fill 0.3s ease-in-out;
}
.chip-middle-color-3{ 
  fill:var(--color-primary-800);
  transition: fill 0.3s ease-in-out;
}
.answer-is-loading .chip-middle-color-1{ 
  fill:var(--color-primary-400);
}
.answer-is-loading .chip-middle-color-2{ 
  fill:var(--color-primary-500);
}
.answer-is-loading .chip-middle-color-3{ 
  fill:var(--color-primary-500);
}
.chip-top-color-1{ 
  fill:#E4E4E4;
}
.chip-top-color-2{ 
  fill:#E5E5E5;
}
.chip-top-color-3{ 
  fill:#F3F4F7;
}
body .tooltip {
  max-width: 400px;
  padding: 1.25em;
  z-index: 100;
  background-color: var(--color-gray-0);
  color: var(--color-gray-900);
  border: 1px solid var(--color-gray-200);

  word-wrap: break-word;

  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 30px 35px -10px,
    rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
@media (prefers-color-scheme: dark) {
body .tooltip {
    background-color: var(--color-gray-200)
}
  }
.tooltip .arrow {
  width: 3em;
  height: 3em;
  z-index: -1;
}
.tooltip .arrow::before {
  content: '';
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  right: -1px;
  bottom: -1px;
  border-right: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}
.my-anchor-element {
  white-space: nowrap;
}
.minitip {
  position: relative;
  display: inline-block;
}
.minitip__text {
  visibility: hidden;
  width: 100px;
  color: #fff;
  text-align: center;
  font-size: 11px;
  line-height: 1.1;
  border-radius: 6px;
  padding: 0.4em;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -0.8em;
  opacity: 0;
  transition: opacity 0.3s;
  --tw-bg-opacity: 1;
  background-color: rgb(66 94 167 / var(--tw-bg-opacity));
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 768px) {
.minitip__text {
    margin-left: -50px
}
  }
.minitip:hover .minitip__text {
  visibility: visible;
  opacity: 1;
}
.bubble-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.bubble {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1em;
  align-items: center;
  min-height: 4em;

  overflow: auto;

  padding: 1em;
  border-radius: 0.125em;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.bubble > .avatar {
  grid-column: 1;
  align-self: flex-start;
  position: sticky;
  top: 0;
}
.bubble > *,
.bubble__content {
  grid-column: 2;
}
.bubble__actions {
  grid-column: 3;
}
.bubble--user {
  background-color: var(--color-white);
}
.bubble--bot {
  background-color: var(--color-white);
}
.bubble--sticky {
  position: sticky;
  top: 150px;
  z-index: 100;

  box-shadow:
    0 5px 20px rgba(215, 220, 220, 0.4),
    0 -20px 0 10px var(--color-gray-0);
}
.bubble--fixed-footer {
  position: sticky;
  bottom: 0;
  z-index: 100;
  overflow: visible;

  box-shadow:
    0 5px 20px rgba(215, 220, 220, 0.4),
    0 -10px 20px 10px var(--color-gray-0);
}
@media (max-width: 768px) {
.bubble--fixed-footer {
    gap: 1em;
    border-radius: 0;
    margin-left: -5.6%;
    margin-right: -5.6%
}
  }
.bubble--fixed-footer::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 40px;
  top: -41px;
  background-image: linear-gradient(to bottom, transparent, var(--color-gray-0));
}
@media (max-width: 768px) {
.bubble--fixed-footer .question {
    grid-column: 1 / 3
}
.bubble--fixed-footer .avatar {
    display: none
}
  }
.bubble--fixed-footer .button--mobile-menu {
  display: none;
}
@media (max-width: 1170px) {
.bubble--fixed-footer .button--mobile-menu {
    grid-column: 3;
    display: block
}
  }
.avatar {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  overflow: hidden;

  background: var(--color-primary-500);
  border: 1px solid var(--color-white);
  stroke-width: 1.2px;
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 768px) {
.avatar {
    width: 35px;
    height: 35px
}
  }
@media (min-width: 1280px) {
.avatar {
    width: 40px;
    height: 40px
}
  }
.avatar--user {
  background: var(--color-primary-400);
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(182 205 227 / var(--tw-bg-opacity));
  stroke: #ffffff;
}
.avatar--bot {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABHCAMAAACNrMETAAACUlBMVEUAAAAEBQYMFx0OGR8QERMTFBcWFxoaHB8cHiIfISQlJysmMDcpKy8qLTEsLzMuMDUvMjcvNz8xNDkzNjo0Nzw1QEg2QUo3O0A5PEE7Rk88P0U9QUY/QkhAREpCRUtDR01DUFpESE5EUFpFUVtGSlBJTVNLUFZOU1lOW2ZPVFtRVVxRX2pSV15TYGxUYm1VWmFXXGRbYGhdYmleY2tebXlfZGxfbnpgb3xhZm5iZ29jaHFnbXVobnZoeIVpb3hrcHlrfIpscnttc3xudH1wdn91e4R2fIZ2iJd3fod3h5Z4f4l4iZl4i5l6gIp7gYt9hI6Ah5GAkqKBiJKCiZSDipWDlqeDl6iFjJaFlKOGmqqHjpmIkJqKkZyLkp2Ln7CNlaCOlqGPo7SPpLWQl6OQpLWQpbaRmKSRpbaTm6eTqLqTqLuUnKiUqbqWnamXn6uYoKyao6+bscSbssWcpLCcssWcssadpbGdssWds8aeprOetcifqLSiqreit8qkrbmmr7ymvtOnv9SosL2pwdWqs8CqwtertMGstcOsxNmvuMWwucexusiyzOG1vsy2v823wM+4wtC5w9G50ui8zN29x9W+yNfAytnA2O7CzNvEzt3Fz9/G0eDI0uHJ0+PM1+fN2OjO5fvP2enR3OzW4fHW7P/X4vLY4/TZ5PXc8v/d6Pnf6vzg7P3h7f7j7v/j+f/l8f/l9v/m8v/n8//o9P/r9//r///s+P/t+f/u+v/v/P/x/f/y/v/y///z///1///2///5///6///7///8///9///////giLfWAAADgUlEQVRYw+3X6V9MURgH8J+GSMo+ZStSqLFkC4Wyp6hQWQqRJTshW5axFiNklxJCKHuISPj9X17cmenOnXNmzlWvfDxvpvk05/s59znnPPc8cHRK4D/zbzC5Vluuw2Ev7gBjTwmGO2zFf8ecscIzLDbrNvOMUQGA4NzNJpliiMNiN8VYIAu7CcYqVWBVZ9K1EdEvsiq+8gfJLyRbC+TTETJ27fcXaYgH2tqrMtojVdMrwmXTETEHJQjJUZLpQDKZp0KFPwEAB1SYowB2UxIAgCgVJgHoKVMYCQBQYSxAVScwwYBUYaAyMw7D5AyUmWUY0BnMRh8P9VY75irMVl+5CVGezQZEy5nlyswsFJFkW5uIKVFmonCrMHzEzIzMGYGhKxpIko2FY4P0NUeF6QusJUlWDQOA5D2pnnUr81IXv0xt06vriCDJY6NHx8gqYLo/hiVpXFpI8jTmZ2pj+B0A4JxTPESn04vh60dPVmrpvDqbV+7uySIBhPzKC5sIIOS5MD3eDMk498JUM/Ux2R3A6c8f84D1PKHOuA7Ds0IylmQ8GngnOzG5nOTYripMC0nenOyeztmzJEvxzfU9Y6/zBeqbqdOWOuKhNqo8VjuQSU7lzjznM23ws2+cvy8aEp+2cMKQHdq3NMTMXVO0ZcWcpJniDShjSH5odv+5FoZKkeCPqdefoFbnZ9CkHZ7MOX9MpU5p20/2jrtW3hvo+q6CJPlFlGDRmdIx+STJWAAYzJr7JHkSALDEP9PC+vbNR5KcDgxtJktJMlH1hFfWOeRVi90Ay6oxaleBeu/hNdlTXRlerHy/cQ2+vDysvTqQZCOAncqMazoLdDUvnyTPixIjv7S1P83T0ox5CwsqXt74TZLJ5hhjdt5H5rtSM8gEc9tTadzl/ARw3MyFVrzcM0RvTNPMJwCbOs70kCTYHBMtu1xLmVqB0k92KZYzdV7IEW0TTjPFNDkHX7nwnSQ/Zrv28jpTzBtdsQvqqXvtlplgyoLdZbjB8PY20ZZt11+3Wvt7dGXqzDggVJ/c3X6bMgFzyAIg0WORqnRMlBJTNh4AkCVcbABAik9mn2Pj6nSbq/HeYtg0veCnI4fDcSrHFmBYj0xjJTa0m+nGFGG46FLWR3w51y9ZwmEPRhwvDUyWsAdOGTlwSo4vpouBuSdvqBFgWyRjjN3HLfiMAOl/wgVtlDz+AMP3ZdfdWyOeAAAAAElFTkSuQmCC);
  background-size: cover;
}
.avatar--bot svg {
  display: none;
}
.notification {
  padding: 1rem;
  background-color: #fbebda;
  color: #9a3412;
  border-radius: 0.375rem;
  border: 1px solid #fed0aa;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  z-index: 2;
  transition: all 0.5s ease-in-out;
  transform: translateY(-75%);
  text-wrap: balance;
  opacity: 0;
  box-shadow: 0 5px 20px rgba(215, 220, 220, 0.3);
  pointer-events: none;
}
.notification--is-visible {
  transform: translateY(calc(-100% - 24px));
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 1170px) {
.notification--is-visible {
    transform: translateY(calc(-100% - 16px))
}
  }
.notification button {
  display: inline;
  background-color: transparent;
  border: none;
  color: #9a3412;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.notification button:hover {
  color: #6d260e;
}
/* ! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #cbcbcb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #989898; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #989898; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.container {
  width: 100%;
}
@media (min-width: 480px) {
  .container {
    max-width: 480px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1210px) {
  .container {
    max-width: 1210px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 836px;
  }
}
@media (min-width: 1210px) {
  .container {
    max-width: 1120px;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media print {
  .container {
    max-width: 100% !important;
  }
}
.input {
  width: 100%;
  cursor: pointer;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(35 50 89 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(48 48 48 / var(--tw-text-opacity));
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.input:hover {
  --tw-border-opacity: 1;
  border-color: rgb(87 115 189 / var(--tw-border-opacity));
}
.input:focus {
  --tw-border-opacity: 1;
  border-color: rgb(249 223 27 / var(--tw-border-opacity));
  --tw-shadow-color: #f9df1b;
  --tw-shadow: var(--tw-shadow-colored);
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.input:focus-within {
  --tw-border-opacity: 1;
  border-color: rgb(249 223 27 / var(--tw-border-opacity));
  --tw-shadow-color: #f9df1b;
  --tw-shadow: var(--tw-shadow-colored);
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.input:disabled {
  cursor: default;
  --tw-border-opacity: 1;
  border-color: rgb(181 181 181 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(181 181 181 / var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgb(70 70 70 / var(--tw-text-opacity));
}
.input::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(136 136 136 / var(--tw-text-opacity));
}
.input::placeholder {
  --tw-text-opacity: 1;
  color: rgb(136 136 136 / var(--tw-text-opacity));
}
.input:disabled::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(70 70 70 / var(--tw-text-opacity));
}
.input:disabled::placeholder {
  --tw-text-opacity: 1;
  color: rgb(70 70 70 / var(--tw-text-opacity));
}
.label {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(92 92 92 / var(--tw-text-opacity));
  font-weight: 700;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visible {
  visibility: visible;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-\[48px\] {
  margin-top: 48px;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.h-12 {
  height: 3rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.max-w-full {
  max-width: 100%;
}
.shrink-0 {
  flex-shrink: 0;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.list-decimal {
  list-style-type: decimal;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-start {
  justify-content: flex-start;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.self-start {
  align-self: flex-start;
}
.text-balance {
  text-wrap: balance;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-t {
  border-top-width: 1px;
}
.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(152 152 152 / var(--tw-border-opacity));
}
.bg-primary-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 243 248 / var(--tw-bg-opacity));
}
.bg-primary-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(0 34 76 / var(--tw-bg-opacity));
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pl-\[1\.5em\] {
  padding-left: 1.5em;
}
.pr-0 {
  padding-right: 0px;
}
.pt-0 {
  padding-top: 0px;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}
.text-green-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity));
}
.text-primary-600 {
  --tw-text-opacity: 1;
  color: rgb(66 94 167 / var(--tw-text-opacity));
}
.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.line-through {
  text-decoration-line: line-through;
}
.decoration-primary-600 {
  text-decoration-color: #425ea7;
}
.decoration-solid {
  text-decoration-style: solid;
}
.decoration-dashed {
  text-decoration-style: dashed;
}
.underline-offset-4 {
  text-underline-offset: 4px;
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hover\:\!bg-primary-300:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(182 205 227 / var(--tw-bg-opacity)) !important;
}
.hover\:\!text-primary-800:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(41 59 105 / var(--tw-text-opacity)) !important;
}
.hover\:text-primary-800:hover {
  --tw-text-opacity: 1;
  color: rgb(41 59 105 / var(--tw-text-opacity));
}
.hover\:decoration-primary-800:hover {
  text-decoration-color: #293b69;
}
.hover\:shadow-none:hover {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 480px) {
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:items-center {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (min-width: 1024px) {
  .lg\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1210px) {
  .xl\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.\[\&\>li\>p\]\:mb-0>li>p {
  margin-bottom: 0px;
}
.\[\&\>li\>p\]\:pr-0>li>p {
  padding-right: 0px;
}

ul.MuiAutocomplete-groupUl {
    margin: 0;
}

li.MuiAutocomplete-option {
    padding-left: 16px!important;
}

.MuiAutocomplete-groupLabel {
    line-height: 36px!important;
}
.layout {
  --tw-bg-opacity: 1;
  background-color: rgb(247 247 247 / var(--tw-bg-opacity));
}

.wrapper{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100dvh - 30px);
}

/* Avoid Chrome to see Safari hack */

@supports (-webkit-touch-callout: none) {
  .wrapper {
    /* The hack for Safari */
    min-height: -webkit-fill-available;
  }
}

.main {
  position: relative;
  z-index: 2;
  padding: 1.25rem;
  padding-bottom: 25vh;
}

.back_button{
  position: sticky;
  top: 0;
  margin: 0;
  z-index: 10;
  padding: 5px;
  color: #fff;
  --tw-bg-opacity: 1;
  background-color: rgb(0 34 76 / var(--tw-bg-opacity));
}

.resultBoxContainer {
  display: flex;
  flex-direction: column;
}

.resultBox {
  margin-bottom: 1em;
  word-wrap: break-word;
  min-height: 1.3em;
}

.resultBox.chatbot {
  margin-bottom: 0em;
}

.resultBox.chatbot p img {
  display: inline;
}

.resultBox p,
.resultBoxInfo p,
.resultBoxLinks p {
  margin-bottom: 1em;
}

.resultBoxInfo {
  margin-bottom: 1em;
  word-wrap: break-word;
}

.resultBoxLinks {
  margin: 0 auto;
  max-width: 1200px;
  margin-top: 1em;
  word-wrap: break-word;
}

.resultBoxLinks li img,
.zueriSearchResult img {
  float: right;
  max-height: 100px;
  max-width: 120px;
  margin-bottom: 15px;
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 3px;
}

.resultBoxLinks td {
  height: 150px;
  word-wrap: break-word;
}

.resultBoxLinks td img {
  max-height: 100px;
  max-width: 120px;
  margin-top: 5px;
  margin-left: 5px;
}

.resultBoxLinks td img:hover {
  position: absolute !important;
}

.resultBoxLinks a {
  font-weight: 500;
}

.resultBoxLinks li img {
  float: right;
  transition: transform 0.3s ease;
}

.visionImage {
  background-color: white;
  padding: 2px;
  box-shadow: #dcdcdc 0 0 2px 0;
  position: fixed;
  bottom: 100px;
  right: 0;
  z-index: 900;
  max-width: 300px;
  max-height: 300px;
}

.resultBoxLinks li img:hover,
.resultBoxLinks td img:hover,
.zueriSearchResult img:hover {
  transform: scale(3);
  transform-origin: right; /* Adjust the origin of transformation */
  position: relative; /* Change to absolute positioning */
  right: 0;
  z-index: 20;
  cursor: pointer;
  background-color: white;
  padding: 2px;
  box-shadow: #dcdcdc 0 0 2px 0;
}

.resultBoxLinks .similarity {
  opacity: 0.7;
  padding-left: 0.4em;
  font-size: 0.9em;
}

.resultBoxLinks .description {
  font-style: italic;
}

.tooltip-content {
  border-radius: 8px !important;
}

.tooltip-content .summary {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tooltip-content .summary:after {
  content: '*';
}

.tooltip-title {
  font-size: 1.1em;
  line-height: 1.3;
  font-weight: bold;
  color: var(--color-primary-900);
}

.tooltip-title:hover {
  color: var(--color-primary-700);
}

.tooltip-content br + br {
  display: none;
}

.tooltip-date {
  white-space: nowrap;
  display: none;
}

.resultBoxLinks li {
  clear: both;
  padding-bottom: 0.5em;
  min-height: 3em;
}

.resultBox h5 {
  margin-top: 1em;
}

@media (min-width: 700px) {
  .maybeBadRating {
    display: flex;
    align-items: center;
  }
  .pagerSearch {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 700px) {
  .pagerSearch input {
    margin-top: 0.5em;
  }
}

code {
  font-family:
    Söhne Mono,
    Monaco,
    Andale Mono,
    Ubuntu Mono,
    monospace !important;
  font-size: 14px;
  /*color: white;
    background-color: #000;
  */
  font-weight: 400;
  padding: 4px 4px;

  border: 1px solid #ddd;
  margin: 1em 0;
  overflow-x: auto; /* for long lines of code */
  white-space: pre; /* to respect whitespace and line breaks */
}

/* Table base styling */

table {
  width: 100%; /* Use the full width of its container */
  margin-top: 1em;
  margin-bottom: 1em;
  border-collapse: collapse; /* Collapse cell borders */
  table-layout: fixed; /* Makes sure column widths remain consistent */
}

pre code {
  display: block;
  border-radius: 5px;
  padding: 10px 15px;
}

/* Headers styling */

th {
  font-weight: bold; /* Bold text for headers */
  padding: 10px 15px; /* Some padding for readability */
  border: 1px solid #ddd; /* Light grey border */
  text-align: left; /* Align text to the left */
}

@media (min-width: 700px) {

  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
    .layout td:first-child,
    .layout th:first-child {
      width: 23em;
    }
      .layout .resultBoxLinks td,
      .layout .resultBoxLinks th {
        vertical-align: top;
      }

      .layout .resultBoxLinks td:first-child,
      .layout .resultBoxLinks th:first-child {
        width: 7em;
      }

      .layout .resultBoxLinks td:nth-child(3),
      .layout .resultBoxLinks th:nth-child(3) {
        width: 13em;
      }

      .layout .resultBoxLinks td:nth-child(4),
      .layout .resultBoxLinks th:nth-child(4) {
        width: 7em;
      }

      .layout .resultBoxLinks td:nth-child(5),
      .layout .resultBoxLinks th:nth-child(5) {
        width: 7em;
      }
}

/* Cells styling */

td {
  padding: 10px 15px; /* Consistent padding with header cells */
  border: 1px solid #ddd; /* Light grey border */
  text-overflow: ellipsis; /* Add ellipsis for overflow content */
  overflow: hidden; /* Hide overflow content */
  /* white-space: nowrap;*/ /* Keep content in single line */
}

/* Zebra stripe for odd rows */

@media (prefers-color-scheme: light) {
  tr:nth-child(odd) {
    background-color: #f9f9f9; /* Very light grey background */
  }

  th {
    background-color: #f2f2f2; /* Light grey background */
  }

  /* Hover effect to highlight the row */
  tr:hover {
    background-color: #e6e6e6; /* Lighter grey background */
  }

  code {
    background-color: #fafafa;
  }
}

.combined-button {
  padding: 10px 20px;
  border: none;
  border-radius: 9999px; /* This gives a fully rounded shape */
  font-weight: bold;
  cursor: pointer;
  outline: none;
  display: inline-flex;
  margin-bottom: 0.5em;
  text-align: left;
  align-items: center;
  justify-content: left;
  transition: background-color 0.3s ease; /* Smooth background color transition */
}

.classification .combined-button {
  width: 100%;
}

.combined-button:hover svg circle {
    transition:
      fill 300ms ease-in-out,
      color 300ms ease-in-out;

    fill: var(--color-primary-50);
  }

.combined-button svg {
  width: 30px;
  height: 30px;

  display: flex; /* Align SVG properly with the text */
}

.combined-button svg circle {
  fill: transparent; /* Transparent fill for the circle */
  stroke: #ffffff; /* White stroke for the circle */
  stroke-width: 3; /* Stroke width */
  opacity: 0.5; /* Half opacity for the stroke */
}

.combined-button.selected {
  background-color: var(--color-primary-400) !important;
}

.combined-button.selected svg circle {
    fill: var(--color-primary-50);
  }

.classification h4 {
    margin-bottom: 0.5em;
  }

.classification div {
    width: 100%;
  }

.classification {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 1em;
}

.footer {
  margin: 0 0.6em;
}

.illustration { 
  position: relative; 
  width:  clamp(100px, 20vw, 180px);
  height: auto;
}

.illustration__background { 
  width:  clamp(100px, 20vw, 180px);
  height: auto;
  overflow: visible;
}

.illustration__logo { 
  width:  45%; /* weird numbers, related to the svg aspect ratio */
  height: 72%;
  overflow: visible;
  position: absolute;
  z-index: 1;
  transform-origin: 50% 50%;
  transform: translate(61%,-2%) rotateX(-55deg) rotateY(0deg) rotateZ(45deg);
  cursor: pointer;
}

.fancy-chip { 
  overflow: visible;
}

.wires,
.wires--active,
.bubbles,
.files,
.person { 
  fill: none;
  stroke: var(--border-color);
  stroke-width: 2;
}

.answer-is-loading .bubbles, 
.answer-is-loading .files, 
.answer-is-loading .person { 
  stroke: var(--color-primary-400);
  stroke-dasharray: 4 4;
  stroke-dashoffset: 0;

  animation: dash--mini 2s infinite linear;
}

@keyframes dash--mini {
  to {
    stroke-dashoffset: 200;
  }
}

.answer-is-loading .wires--active { 
  /* filter:url(#glow); */

  stroke-width: 1;
  stroke: var(--color-primary-400);  
  stroke-dasharray: 100 200;
  stroke-dashoffset: 0;
}

.wires--active *:nth-of-type(6n) {   
  animation: dash1 4s infinite linear;
}

.wires--active *:nth-of-type(6n+1) {   
  animation: dash1 3s infinite linear;
}

.wires--active *:nth-of-type(6n+2) {   
  animation: dash2 2s infinite linear;
}

.wires--active *:nth-of-type(6n+3) {   
  animation: dash2 2s infinite linear;
}

.wires--active *:nth-of-type(6n+4) {
  stroke-dasharray: 50 100;   
  animation: dash2 4s infinite linear;
}

.wires--active *:nth-of-type(6n+5) { 
  stroke-dasharray: 200 400;  
  animation: dash1 3s infinite linear;
}

@keyframes dash1 {
  to {
    stroke-dashoffset: 2200;
  }
}

@keyframes dash2 {
  to {
    stroke-dashoffset: -2200;
  }
}

.leg-color-1{ 
  fill:#DCDCDC;
}

.leg-color-2{ 
  fill:#C5C5C5;
}

.leg-color-3{ 
  fill:#898989;
}

.chip-middle-color-1{ 
  fill:var(--color-primary-600);
  transition: fill 0.3s ease-in-out;
}

.chip-middle-color-2{ 
  fill:var(--color-primary-700);
  transition: fill 0.3s ease-in-out;
}

.chip-middle-color-3{ 
  fill:var(--color-primary-800);
  transition: fill 0.3s ease-in-out;
}

.answer-is-loading .chip-middle-color-1{ 
  fill:var(--color-primary-400);
}

.answer-is-loading .chip-middle-color-2{ 
  fill:var(--color-primary-500);
}

.answer-is-loading .chip-middle-color-3{ 
  fill:var(--color-primary-500);
}

.chip-top-color-1{ 
  fill:#E4E4E4;
}

.chip-top-color-2{ 
  fill:#E5E5E5;
}

.chip-top-color-3{ 
  fill:#F3F4F7;
}

