@import "../lib/fontello/css/fontello.css";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,100;1,400&display=swap");
*, ::before, ::after {
  box-sizing: border-box;
}

* {
  background-origin: border-box;
  background-repeat: no-repeat;
  margin: 0;
}
*:where(:not(fieldset)) {
  border-width: 0;
  border-style: solid;
}

:where(html) {
  block-size: 100%;
  font-family: var(--font);
  line-height: var(--font-lineheight-3);
}
@media (--motionOK) {
  :where(html) {
    scroll-behavior: smooth;
  }
}

:where(body) {
  min-block-size: 100%;
  scrollbar-gutter: stable both-edges;
}

:where(h1, h2, h3, h4, h5, h6) {
  line-height: var(--font-relative-lineheight-2);
  font-weight: var(--font-weight-4);
}

:where(h1) {
  font-size: var(--font-size-6);
}

:where(h2) {
  font-size: var(--font-size-5);
}

:where(h3) {
  font-size: var(--font-size-4);
}

:where(h4) {
  font-size: var(--font-size-3);
}

:where(h5) {
  font-size: var(--font-size-2);
}

:where(a, u, ins, abbr) {
  text-underline-offset: 1px;
}

:where(a) {
  opacity: 0.5;
}
:where(a):where([href]) {
  -webkit-text-decoration-color: var(--surface-2);
          text-decoration-color: var(--surface-2);
  opacity: 1;
}
:where(a):where([href]):where(:visited) {
  -webkit-text-decoration-color: var(--surface-3);
          text-decoration-color: var(--surface-3);
}
:where(a):where(:not(:hover)) {
  text-decoration: inherit;
}

:where(button) {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  vertical-align: middle;
}

:where(img, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(input, button, textarea, select) {
  font: inherit;
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
}

:where(input) {
  padding-inline: var(--size-2);
  padding-block: var(--size-1);
}

:where(select) {
  padding-inline: var(--size-2);
  padding-block: var(--size-1);
}

:where(textarea) {
  padding-inline: var(--size-2);
  padding-block: var(--size-1);
  resize: block;
}

:where(input[type=checkbox], input[type=radio]) {
  block-size: var(--size-3);
  inline-size: var(--size-3);
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}
:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
:where(svg):where(:not([width])) {
  inline-size: var(--size-10);
}

:where(code, kbd, samp, pre) {
  font-family: var(--font-mono);
}

:where(:not(pre) > code, kbd) {
  white-space: nowrap;
}

:where(pre) {
  white-space: pre;
  min-inline-size: 0;
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
}

:where(:not(pre) > code) {
  padding: var(--size-0) var(--size-1);
  background: var(--surface-3);
  border-radius: var(--radius-2);
}

:where(kbd, var) {
  padding: var(--size-1) var(--size-2);
  border-width: var(--border-size-1);
  border-color: var(--surface-4);
  border-radius: var(--radius-2);
}

:where(mark) {
  border-radius: var(--radius-2);
  padding-inline: var(--size-1);
}

:where(ol, ul) {
  -webkit-padding-start: var(--size-3);
          padding-inline-start: var(--size-3);
}

:where(p:not(:last-of-type)) {
  -webkit-margin-after: var(--size-2);
          margin-block-end: var(--size-2);
}

:where(dt, summary) {
  font-weight: var(--font-weight-7);
}

:where(dt:not(:first-of-type)) {
  -webkit-margin-before: var(--size-5);
          margin-block-start: var(--size-5);
}

:where(small) {
  font-size: max(0.5em, var(--font-size-0));
}

:where(hr) {
  height: var(--border-size-2);
  background-color: var(--surface-3);
}

:where(figure) {
  display: grid;
  gap: var(--size-2);
  place-items: center;
}
:where(figure) > :where(figcaption) {
  font-size: var(--font-size-1);
}

:where(blockquote, :not(blockquote) > cite) {
  border-inline-start-width: var(--border-size-3);
}

:where(blockquote) {
  display: grid;
  gap: var(--size-3);
  padding-block: var(--size-3);
  padding-inline: var(--size-4);
}

:where(:not(blockquote) > cite) {
  -webkit-padding-start: var(--size-2);
          padding-inline-start: var(--size-2);
}

:where(summary) {
  background: var(--surface-3);
  padding: var(--size-2) var(--size-3);
  margin: calc(var(--size-2) * -1) calc(var(--size-3) * -1);
  border-radius: var(--radius-2);
}

:where(details) {
  padding-inline: var(--size-3);
  padding-block: var(--size-2);
  background: var(--surface-2);
  border-radius: var(--radius-2);
}

:where(details[open] > summary) {
  margin-bottom: var(--size-2);
  border-end-start-radius: 0;
  border-end-end-radius: 0;
}

:where(fieldset) {
  border-radius: var(--radius-2);
}

:where(del) {
  background: var(--red-9);
  color: var(--red-2);
}

:where(ins) {
  background: var(--green-9);
  color: var(--green-1);
}

:where(abbr) {
  -webkit-text-decoration-color: var(--blue-5);
          text-decoration-color: var(--blue-5);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
}

:where(html) {
  --red-5: #742c37;
  --red-4: #9e2c30;
  --red-3: #d03830;
  --red-2: #e48f84;
  --red-1: #f1d9d6;
  --orange-5: #68371f;
  --orange-4: #a14c20;
  --orange-3: #d5642c;
  --orange-2: #dc7e50;
  --orange-1: #eac2ae;
  --yellow-5: #6b5311;
  --yellow-4: #a2811b;
  --yellow-3: #e7b91c;
  --yellow-2: #fbdc78;
  --yellow-1: #f9e8a8;
  --green-5: #324a28;
  --green-4: #467634;
  --green-3: #57cb33;
  --green-2: #8dfe6b;
  --green-1: #d3fcc7;
  --teal-5: #2b4854;
  --teal-4: #407a79;
  --teal-3: #43c7a9;
  --teal-2: #2eefbe;
  --teal-1: #ccfbe8;
  --blue-5: #234472;
  --blue-4: #2d75af;
  --blue-3: #279ee5;
  --blue-2: #a4cfef;
  --blue-1: #dbeaf4;
  --purple-5: #56279a;
  --purple-4: #7328c6;
  --purple-3: #983af6;
  --purple-2: #bdaadf;
  --purple-1: #e2dcec;
  --magenta-5: #5f2c7b;
  --magenta-4: #80339a;
  --magenta-3: #b434c9;
  --magenta-2: #e995ea;
  --magenta-1: #f0d7ef;
  --pink-5: #682e5b;
  --pink-4: #8f346a;
  --pink-3: #cb317c;
  --pink-2: #fb93b5;
  --pink-1: #f8d6e0;
  --warm-9: #312626;
  --warm-8: #3e3333;
  --warm-7: #473d3d;
  --warm-6: #574d4d;
  --warm-5: #5d5454;
  --warm-4: #6b6263;
  --warm-3: #a8a4a5;
  --warm-2: #ccc9c9;
  --warm-1: #e0dede;
  --cool-10: #1d1d1d;
  --cool-9: #2c2c2c;
  --cool-8: #373636;
  --cool-7: #474747;
  --cool-6: #4e4d4d;
  --cool-5: #656565;
  --cool-4: #9b9a9a;
  --cool-3: #bebdbd;
  --cool-2: #d0d0d0;
  --cool-1: #FFFFFF;
}

:where(.light-mode) {
  --red-5: #742c37;
  --red-4: #9e2c30;
  --red-3: #d03830;
  --red-2: #e48f84;
  --red-1: #f1d9d6;
  --orange-5: #68371f;
  --orange-4: #a14c20;
  --orange-3: #d5642c;
  --orange-2: #dc7e50;
  --orange-1: #eac2ae;
  --yellow-5: #6b5311;
  --yellow-4: #a2811b;
  --yellow-3: #e7b91c;
  --yellow-2: #fbdc78;
  --yellow-1: #f9e8a8;
  --green-5: #324a28;
  --green-4: #467634;
  --green-3: #57cb33;
  --green-2: #8dfe6b;
  --green-1: #d3fcc7;
  --teal-5: #2b4854;
  --teal-4: #407a79;
  --teal-3: #43c7a9;
  --teal-2: #2eefbe;
  --teal-1: #ccfbe8;
  --blue-5: #234472;
  --blue-4: #2d75af;
  --blue-3: #279ee5;
  --blue-2: #a4cfef;
  --blue-1: #dbeaf4;
  --purple-5: #56279a;
  --purple-4: #7328c6;
  --purple-3: #983af6;
  --purple-2: #bdaadf;
  --purple-1: #e2dcec;
  --magenta-5: #5f2c7b;
  --magenta-4: #80339a;
  --magenta-3: #b434c9;
  --magenta-2: #e995ea;
  --magenta-1: #f0d7ef;
  --pink-5: #682e5b;
  --pink-4: #8f346a;
  --pink-3: #cb317c;
  --pink-2: #fb93b5;
  --pink-1: #f8d6e0;
  --warm-9: #312626;
  --warm-8: #3e3333;
  --warm-7: #473d3d;
  --warm-6: #574d4d;
  --warm-5: #5d5454;
  --warm-4: #6b6263;
  --warm-3: #a8a4a5;
  --warm-2: #ccc9c9;
  --warm-1: #e0dede;
  --cool-10: #1d1d1d;
  --cool-9: #2c2c2c;
  --cool-8: #373636;
  --cool-7: #474747;
  --cool-6: #4e4d4d;
  --cool-5: #656565;
  --cool-4: #9b9a9a;
  --cool-3: #bebdbd;
  --cool-2: #d0d0d0;
  --cool-1: #FFFFFF;
}

:where(.dark-mode) {
  --red-1: #742c37;
  --red-2: #9e2c30;
  --red-3: #d03830;
  --red-4: #e48f84;
  --red-5: #f1d9d6;
  --orange-1: #68371f;
  --orange-2: #a14c20;
  --orange-3: #d5642c;
  --orange-4: #dc7e50;
  --orange-5: #eac2ae;
  --yellow-1: #6b5311;
  --yellow-2: #a2811b;
  --yellow-3: #e7b91c;
  --yellow-4: #fbdc78;
  --yellow-5: #f9e8a8;
  --green-1: #324a28;
  --green-2: #467634;
  --green-3: #57cb33;
  --green-4: #8dfe6b;
  --green-5: #d3fcc7;
  --teal-1: #2b4854;
  --teal-2: #407a79;
  --teal-3: #43c7a9;
  --teal-4: #2eefbe;
  --teal-5: #ccfbe8;
  --blue-1: #234472;
  --blue-2: #2d75af;
  --blue-3: #279ee5;
  --blue-4: #a4cfef;
  --blue-5: #dbeaf4;
  --purple-1: #56279a;
  --purple-2: #7328c6;
  --purple-3: #983af6;
  --purple-4: #bdaadf;
  --purple-5: #e2dcec;
  --magenta-1: #5f2c7b;
  --magenta-2: #80339a;
  --magenta-3: #b434c9;
  --magenta-4: #e995ea;
  --magenta-5: #f0d7ef;
  --pink-1: #682e5b;
  --pink-2: #8f346a;
  --pink-3: #cb317c;
  --pink-4: #fb93b5;
  --pink-5: #f8d6e0;
  --warm-1: #312626;
  --warm-2: #3e3333;
  --warm-3: #473d3d;
  --warm-4: #574d4d;
  --warm-5: #5d5454;
  --warm-6: #6b6263;
  --warm-7: #a8a4a5;
  --warm-8: #ccc9c9;
  --warm-9: #e0dede;
  --cool-1: #1d1d1d;
  --cool-2: #2c2c2c;
  --cool-3: #373636;
  --cool-4: #474747;
  --cool-5: #4e4d4d;
  --cool-6: #656565;
  --cool-7: #9b9a9a;
  --cool-8: #bebdbd;
  --cool-9: #d0d0d0;
  --cool-10: #FFFFFF;
}

:where(html) {
  --font-sans: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  --font-serif: ui-serif,serif;
  --font-mono: Dank Mono,Operator Mono,Inconsolata,Fira Mono,ui-monospace,SF Mono,Monaco,Droid Sans Mono,Source Code Pro,monospace;
  --font-weight-1: 100;
  --font-weight-2: 200;
  --font-weight-3: 300;
  --font-weight-4: 400;
  --font-weight-5: 500;
  --font-weight-6: 600;
  --font-weight-7: 700;
  --font-weight-8: 800;
  --font-weight-9: 900;
  --font-lineheight-00: .95;
  --font-lineheight-0: 1.1;
  --font-lineheight-1: 1.25;
  --font-lineheight-2: 1.375;
  --font-lineheight-3: 1.5;
  --font-lineheight-4: 1.75;
  --font-lineheight-5: 2;
  --font-letterspacing-0: -.05em;
  --font-letterspacing-1: .025em;
  --font-letterspacing-2: .050em;
  --font-letterspacing-3: .075em;
  --font-letterspacing-4: .150em;
  --font-letterspacing-5: .500em;
  --font-letterspacing-6: .750em;
  --font-letterspacing-7: 1em;
  --font-size-00: .5rem;
  --font-size-0: .8rem;
  --font-size-1: 1rem;
  --font-size-2: 1.1rem;
  --font-size-3: 1.25rem;
  --font-size-4: 1.5rem;
  --font-size-5: 2rem;
  --font-size-6: 2.5rem;
  --font-size-7: 3rem;
  --font-size-8: 3.5rem;
  --font-size-fluid-0: clamp(.75rem, 2vw, 1rem);
  --font-size-fluid-1: clamp(1rem, 4vw, 1.5rem);
  --font-size-fluid-2: clamp(1.5rem, 6vw, 2.5rem);
  --font-size-fluid-3: clamp(2rem, 9vw, 3.5rem);
}

:where(html) {
  --size-000: -.5rem;
  --size-00: -.25rem;
  --size-0: .125rem;
  --size-1: .25rem;
  --size-2: .5rem;
  --size-3: 1rem;
  --size-4: 1.25rem;
  --size-5: 1.5rem;
  --size-6: 1.75rem;
  --size-7: 2rem;
  --size-8: 3rem;
  --size-9: 4rem;
  --size-10: 5rem;
  --size-11: 7.5rem;
  --size-12: 10rem;
  --size-13: 15rem;
  --size-14: 20rem;
  --size-15: 30rem;
  --size-fluid-1: clamp(.5rem, 1vw, 1rem);
  --size-fluid-2: clamp(1rem, 2vw, 1.5rem);
  --size-fluid-3: clamp(1.5rem, 3vw, 2rem);
  --size-fluid-4: clamp(2rem, 4vw, 3rem);
  --size-fluid-5: clamp(4rem, 5vw, 5rem);
  --size-fluid-6: clamp(5rem, 7vw, 7.5rem);
  --size-fluid-7: clamp(7.5rem, 10vw, 10rem);
  --size-fluid-8: clamp(10rem, 20vw, 15rem);
  --size-fluid-9: clamp(15rem, 30vw, 20rem);
  --size-fluid-10: clamp(20rem, 40vw, 30rem);
  --size-content-1: 20ch;
  --size-content-2: 45ch;
  --size-content-3: 60ch;
  --size-header-1: 20ch;
  --size-header-2: 25ch;
  --size-header-3: 45rem;
  --layout-size-small: 22rem;
  --layout-size-medium: 40rem;
  --layout-size-large: 80rem;
  --layout-size-larger: 100rem;
  --layout-size: 120rem;
  --form-element-size: 2.5rem ;
}

:where(html) {
  --shadow-strength: 25%;
  --shadow-color: 220 40% 2%;
  --shadow-1: 0 1px 2px -1px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%));
  --shadow-2: 0 3px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)), 0 7px 14px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%));
  --shadow-3: 0 -1px 3px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)), 0 1px 2px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)), 0 2px 5px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)), 0 4px 12px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)), 0 12px 15px -5px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%));
  --shadow-4: 0 -2px 5px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)), 0 1px 1px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)), 0 2px 2px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)), 0 5px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)), 0 9px 9px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)), 0 16px 16px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 6%));
  --shadow-5: 0 -1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)), 0 2px 1px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)), 0 5px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)), 0 10px 10px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)), 0 20px 20px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)), 0 40px 40px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%));
  --shadow-6: 0 -1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 2%)), 0 3px 2px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)), 0 7px 5px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 3%)), 0 12px 10px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 4%)), 0 22px 18px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 5%)), 0 41px 33px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 6%)), 0 100px 80px -2px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 7%));
  --inner-shadow-0: inset 0 0 0 1px hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%));
  --inner-shadow-1: inset 0 1px 2px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%));
  --inner-shadow-2: inset 0 1px 4px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%));
  --inner-shadow-3: inset 0 2px 8px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%));
  --inner-shadow-4: inset 0 2px 14px 0 hsl(var(--shadow-color) / calc(var(--shadow-strength) + 9%));
}

@media (--OSdark) {
  :where(html) {
    --shadow-strength: 25%;
    --shadow-color: 220 40% 2%;
  }
}
:where(html) {
  --border-size-1: 1px;
  --border-size-2: 2px;
  --border-size-3: 5px;
  --border-size-4: 10px;
  --border-size-5: 25px;
  --radius-1: 2px;
  --radius-2: 5px;
  --radius-3: 1rem;
  --radius-4: 2rem;
  --radius-5: 4rem;
  --radius-6: 8rem;
  --radius-round: 1e5px;
  --radius-blob-1: 30% 70% 70% 30% / 53% 30% 70% 47%;
  --radius-blob-2: 53% 47% 34% 66% / 63% 46% 54% 37%;
  --radius-blob-3: 37% 63% 56% 44% / 49% 56% 44% 51%;
  --radius-blob-4: 63% 37% 37% 63% / 43% 37% 63% 57%;
  --radius-blob-5: 49% 51% 48% 52% / 57% 44% 56% 43%;
  --radius-conditional-1: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-1));
  --radius-conditional-2: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-2));
  --radius-conditional-3: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-3));
  --radius-conditional-4: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-4));
  --radius-conditional-5: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-5));
  --radius-conditional-6: clamp(0px, calc(100vw - 100%) * 1e5, var(--radius-6));
}

.app-container.red {
  --brand: var(--red-3);
  --brand-1: var(--red-1);
  --brand-2: var(--red-2);
  --brand-3: var(--red-3);
  --brand-4: var(--red-4);
  --brand-5: var(--red-5);
}

.app-container.orange {
  --brand: var(--orange-3);
  --brand-1: var(--orange-1);
  --brand-2: var(--orange-2);
  --brand-3: var(--orange-3);
  --brand-4: var(--orange-4);
  --brand-5: var(--orange-5);
}

.app-container.yellow {
  --brand: var(--yellow-3);
  --brand-1: var(--yellow-1);
  --brand-2: var(--yellow-2);
  --brand-3: var(--yellow-3);
  --brand-4: var(--yellow-4);
  --brand-5: var(--yellow-5);
}

.app-container.green {
  --brand: var(--green-3);
  --brand-1: var(--green-1);
  --brand-2: var(--green-2);
  --brand-3: var(--green-3);
  --brand-4: var(--green-4);
  --brand-5: var(--green-5);
}

.app-container.teal {
  --brand: var(--teal-3);
  --brand-1: var(--teal-1);
  --brand-2: var(--teal-2);
  --brand-3: var(--teal-3);
  --brand-4: var(--teal-4);
  --brand-5: var(--teal-5);
}

.app-container.blue {
  --brand: var(--blue-3);
  --brand-1: var(--blue-1);
  --brand-2: var(--blue-2);
  --brand-3: var(--blue-3);
  --brand-4: var(--blue-4);
  --brand-5: var(--blue-5);
}

.app-container.purple {
  --brand: var(--purple-3);
  --brand-1: var(--purple-1);
  --brand-2: var(--purple-2);
  --brand-3: var(--purple-3);
  --brand-4: var(--purple-4);
  --brand-5: var(--purple-5);
}

.app-container.magenta {
  --brand: var(--magenta-3);
  --brand-1: var(--magenta-1);
  --brand-2: var(--magenta-2);
  --brand-3: var(--magenta-3);
  --brand-4: var(--magenta-4);
  --brand-5: var(--magenta-5);
}

.app-container.pink {
  --brand: var(--pink-3);
  --brand-1: var(--pink-1);
  --brand-2: var(--pink-2);
  --brand-3: var(--pink-3);
  --brand-4: var(--pink-4);
  --brand-5: var(--pink-5);
}

.app-container.warm {
  --brand: var(--warm-3);
  --brand-1: var(--warm-1);
  --brand-2: var(--warm-2);
  --brand-3: var(--warm-3);
  --brand-4: var(--warm-4);
  --brand-5: var(--warm-5);
  --brand-6: var(--warm-6);
  --brand-7: var(--warm-7);
  --brand-8: var(--warm-8);
  --brand-9: var(--warm-9);
}

.app-container.cool {
  --brand: var(--cool-3);
  --brand-1: var(--cool-1);
  --brand-2: var(--cool-2);
  --brand-3: var(--cool-3);
  --brand-4: var(--cool-4);
  --brand-5: var(--cool-5);
  --brand-6: var(--cool-6);
  --brand-7: var(--cool-7);
  --brand-8: var(--cool-8);
  --brand-9: var(--cool-9);
  --brand-10: var(--cool-10);
}

:where(html) {
  --font: Montserrat, var(--font-sans);
  --alt-font: Montserrat, var(--font-sans);
  --theme-radius: var(--radius-2);
}

:where(.dark-mode) {
  --text-1: rgba(255,255,255,0.8);
  --text-2: rgba(255,255,255,0.7);
  --text-3: rgba(255,255,255,0.6);
  --text-4: rgba(255,255,255,0.5);
  --text-5: rgba(255,255,255,0.4);
  --btn-text: rgba(255,255,255,0.8);
  --link: var(--brand-3);
  --link-visited: var(--brand-3);
  --link-hover: var(--brand-2);
  --dropdown-background: var(--brand-1);
  --theme-value: 0,0,0;
  --theme-contrast-value: 255,255,255;
  --surface-1: var(--cool-1);
  --surface-2: var(--cool-2);
  --surface-3: var(--cool-3);
  --surface-4: var(--cool-4);
  --surface-5: var(--cool-5);
  --success: var(--green-2);
  --success-dark: var(--green-2);
  --info: var(--teal-2);
  --info-dark: var(--teal-2);
  --warning: var(--orange-2);
  --warning-dark: var(--orange-2);
  --danger: var(--red-2);
  --danger-dark: var(--red-2);
}

:where(.light-mode) {
  --text-1: rgba(0,0,0,0.9);
  --text-2: rgba(0,0,0,0.8);
  --text-3: rgba(0,0,0,0.7);
  --text-4: rgba(0,0,0,0.6);
  --text-5: rgba(0,0,0,0.5);
  --btn-text: rgba(255,255,255,1);
  --link: var(--brand-4);
  --link-visited: var(--brand-4);
  --link-hover: var(--brand-3);
  --dropdown-background: var(--surface-1);
  --theme-value: 255,255,255;
  --theme-contrast-value: 0,0,0;
  --surface-1: var(--cool-1);
  --surface-2: var(--cool-2);
  --surface-3: var(--cool-3);
  --surface-4: var(--cool-4);
  --surface-5: var(--cool-5);
  --success: var(--green-3);
  --success-dark: var(--green-4);
  --info: var(--teal-3);
  --info-dark: var(--teal-4);
  --warning: var(--orange-3);
  --warning-dark: var(--orange-4);
  --danger: var(--red-3);
  --danger-dark: var(--red-4);
}

:where(html) {
  --transition: all .3s;
}

:where(html) {
  color: var(--text-2);
  background-color: var(--surface-2);
  background-size: cover;
}

:where(.app-container) {
  color: var(--text-2);
  background-color: var(--surface-2);
  background-size: cover;
  transition: all 1.25s;
}

:where(h1, h2, h3, h4, h5, h6, dt) {
  color: var(--text-2);
  font-family: var(--alt-font);
}

:where(.bg-black) {
  color: rgba(255, 255, 255, 0.7);
}
:where(.bg-black) :where(h1, h2, h3, h4, h5, h6, dt) {
  color: rgba(255, 255, 255, 0.7);
}

:where(a[href]), :where(.link) {
  color: var(--link);
  text-decoration: none;
}
:where(a[href]):visited, :where(.link):visited {
  color: var(--link-visited);
}
:where(a[href]):hover, :where(.link):hover {
  color: var(--link-hover);
}

:focus-visible {
  outline-color: var(--surface-1);
}

/*@import '_props.gradients.scss';
@import '_props.animations.scss';*/
/*@import '_props.aspects.scss';*/
#blazor-error-ui {
  background: var(--surface-3);
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

#components-reconnect-modal {
  display: none;
  position: fixed;
  inset: 0px;
  z-index: 1050;
  overflow: hidden;
  color: var(---gray-4) !important;
  background: rgba(0, 0, 0, 0.8) !important;
  text-align: center;
  font-weight: bold;
  transition: visibility 0s linear 500ms;
  visibility: visible;
}

#components-reconnect-modal.components-reconnect-show {
  display: block;
}

#components-reconnect-modal.components-reconnect-hide {
  display: none;
}

#components-reconnect-modal.components-reconnect-failed {
  display: block;
}

#components-reconnect-modal.components-reconnect-rejected {
  display: block;
}

html,
body,
#app,
.app-container {
  min-height: 100vh;
}

.app-container {
  display: flex;
  flex-direction: column;
}
.app-container .app-main {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.app-container .app-main main {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

.app-main.main-layout > header {
  -webkit-margin-after: var(--size-2);
          margin-block-end: var(--size-2);
}

.small-container > .logo {
  text-align: center;
}
.small-container > .logo .brand {
  font-size: 5rem;
}

.logo .brand {
  position: relative;
  font-size: 3rem;
  color: var(--text-1);
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
.logo .brand:after {
  position: absolute;
  width: 90%;
  height: 10%;
  left: 50%;
  top: 85%;
  transform: translate(-50%, -50%);
  content: "";
  background: black;
  border-radius: 50%;
  filter: blur(0.25rem);
  z-index: -1;
  opacity: 0.5;
}
.logo .brand span {
  z-index: 999;
  font-family: "Montserrat", sans-serif;
}
.logo .brand span:nth-child(1) {
  font-weight: var(--font-weight-1);
  color: var(--brand);
  font-style: italic;
}
.logo .brand span:nth-child(2) {
  font-weight: var(--font-weight-4);
}
.logo .brand span:nth-child(3) {
  font-weight: var(--font-weight-1);
  font-size: 1rem;
}
.logo .brand sup {
  font-size: 1rem;
  color: var(--text-3);
}

.nav-menu {
  flex: 1;
  -webkit-margin-start: 1rem;
          margin-inline-start: 1rem;
}

.nav-link {
  font-size: var(--font-size-2);
  margin: 0;
  font-family: var(--alt-font);
  display: block;
  padding: var(--size-5) var(--size-2) 0;
  color: var(--text-3);
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
.nav-link:hover {
  color: var(--text-1);
  transform: translateY(-0.1rem);
  text-shadow: var(--shadow-3);
}
.nav-link:active {
  transform: translateY(0.125rem);
}
.nav-link.active {
  color: var(--text-1);
}

.app-main > footer .copyright {
  color: var(--text-3);
}
.app-main > footer .ausmeat-logo {
  fill: rgba(var(--theme-contrast-value), 0.2);
  width: auto;
  max-height: 50px;
}

div.die {
  width: var(--die-size);
  height: var(--die-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: calc(var(--die-size) * 0.2);
  transition: all 0.15s ease-in-out;
}
div.die:hover {
  filter: brightness(120%);
}
div.die.d6, div.die.block {
  border-radius: calc(var(--die-size) / 5);
  background: var(--dice-color);
  border: solid calc(var(--die-size) / 17) var(--brown-1);
  box-shadow: 0 0 0.25rem 0.25rem var(--brown-9);
}
div.die.d8 {
  --die-size: 4.5rem;
  background: url("/images/d8/bg.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
div.die.d8 img {
  margin-top: -16px;
}
div.die.d16 {
  --die-size: 4.5rem;
  background: url("/images/d16/bg.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
div.die.d16 img {
  margin-top: -10px;
}
div.die:hover {
  transform: scale(1.1, 1.1);
}
div.die img {
  width: calc(var(--die-size) * 0.7);
}

.roll {
  --animation-speed: .4s;
  display: inline-flex;
  -webkit-animation: roll var(--animation-speed) ease-out;
          animation: roll var(--animation-speed) ease-out;
  -webkit-animation-iteration-count: initial;
          animation-iteration-count: initial;
  transition: all var(--animation-speed);
}

.spinner {
  -webkit-animation: spinner 1s infinite linear;
          animation: spinner 1s infinite linear;
}

.spinner-reversed {
  -webkit-animation: spinner 1s infinite linear;
          animation: spinner 1s infinite linear;
  animation-direction: reverse;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes roll {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(var(--random-rotate));
    opacity: 1;
  }
}

@keyframes roll {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(var(--random-rotate));
    opacity: 1;
  }
}
@-webkit-keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes spinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.blinker {
  -webkit-animation: blinker 2s ease 0s infinite alternate forwards;
          animation: blinker 2s ease 0s infinite alternate forwards;
}

@-webkit-keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
/*This is a fade in example.*/
@-webkit-keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
/*This is a fade out example. */
@-webkit-keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: none;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    display: block;
    opacity: 1;
  }
  1% {
    display: none;
    opacity: 1;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
#animate {
  /*put animation attributes here. Here's a list.
  (https://www.w3schools.com/css/css3_animations.asp)*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  /*put the default display and opacity here, the same as "0%"*/
  display: none;
  opacity: 0;
}

.fadeout {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 2s, opacity 2s linear;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.loading .dot-flashing {
  display: flex;
  gap: 0.5rem;
}

.loading .dot-flashing span {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--brand);
  -webkit-animation: dotFlashing 0.75s infinite alternate;
          animation: dotFlashing 0.75s infinite alternate;
}

.loading .dot-flashing span:nth-child(2) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

.loading .dot-flashing span:nth-child(3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.loading .dot-flashing span:nth-child(4) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

@-webkit-keyframes dotFlashing {
  0% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0.2;
  }
}

@keyframes dotFlashing {
  0% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0.2;
  }
}
@-webkit-keyframes slideInFromLeft {
  0% {
    left: -2880px;
    top: -1420px;
  }
  100% {
    left: -3350px;
    top: -1450px;
  }
}
@keyframes slideInFromLeft {
  0% {
    left: -2880px;
    top: -1420px;
  }
  100% {
    left: -3350px;
    top: -1450px;
  }
}
input[type=file]::-webkit-file-upload-button {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-user-select: none;
          user-select: none;
  border-radius: var(--theme-radius);
  background: var(--surface-1);
  border: var(--border-size-1) solid transparent;
  box-shadow: var(--shadow-1);
  text-decoration: none;
}
.btn-base, .toggle-button, .btn, input[type=file]::file-selector-button {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  cursor: pointer;
  transition: var(--transition);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: var(--theme-radius);
  background: var(--surface-1);
  border: var(--border-size-1) solid transparent;
  box-shadow: var(--shadow-1);
  text-decoration: none;
}
input[type=file]:active:where([href], button)::-webkit-file-upload-button {
  transform: scale(0.95);
}
.btn-base:active:where([href], button), .toggle-button:active:where([href], button), .btn:active:where([href], button), input[type=file]:active:where([href], button)::file-selector-button {
  transform: scale(0.95);
}
input[type=file]:hover:where([href], button)::-webkit-file-upload-button {
  border: var(--border-size-1) solid var(--brand-4);
  box-shadow: var(--shadow-2);
}
.btn-base:hover:where([href], button), .toggle-button:hover:where([href], button), .btn:hover:where([href], button), input[type=file]:hover:where([href], button)::file-selector-button {
  border: var(--border-size-1) solid var(--brand-4);
  box-shadow: var(--shadow-2);
}
input[type=file]:where(a:not([href]))::-webkit-file-upload-button {
  cursor: not-allowed;
}
.btn-base:where(a:not([href])), .toggle-button:where(a:not([href])), .btn:where(a:not([href])), input[type=file]:where(a:not([href]))::file-selector-button {
  cursor: not-allowed;
}

input[type=file]::-webkit-file-upload-button {
  line-height: var(--font-lineheight-1);
  color: var(--btn-text);
  font-weight: bold;
  padding-inline: var(--size-3);
  padding-block: var(--size-2);
  box-shadow: var(--shadow-1);
  background-color: var(--brand-3);
  min-height: var(--form-element-size);
}

.btn, input[type=file]::file-selector-button {
  line-height: var(--font-lineheight-1);
  color: var(--btn-text);
  font-weight: bold;
  padding-inline: var(--size-3);
  padding-block: var(--size-2);
  box-shadow: var(--shadow-1);
  background-color: var(--brand-3);
  min-height: var(--form-element-size);
}
input[type=file]:hover:where([href], button)::-webkit-file-upload-button {
  background-color: var(--brand-3);
}
.btn:hover:where([href], button), input[type=file]:hover:where([href], button)::file-selector-button {
  background-color: var(--brand-3);
}

.btn-surface {
  background-color: var(--surface-4);
}
input.btn-surface[type=file]:hover::-webkit-file-upload-button {
  background-color: var(--brand-3);
  box-shadow: var(--shadow-2);
  border: var(--border-size-1) solid transparent;
}
.btn-surface.btn:hover, input.btn-surface[type=file]:hover::file-selector-button {
  background-color: var(--brand-3);
  box-shadow: var(--shadow-2);
  border: var(--border-size-1) solid transparent;
}
.btn-surface.selected {
  border: var(--border-size-1) solid var(--surface-1);
  background-color: var(--surface-2);
}

.btn-large {
  padding-inline: var(--size-3);
  padding-block: var(--size-2);
}

input[type=file]::-webkit-file-upload-button {
  padding-inline: var(--size-3);
  padding-block: var(--size-2);
  font-size: var(--font-size-0);
  min-height: initial;
}

.btn-small, input[type=file]::file-selector-button {
  padding-inline: var(--size-3);
  padding-block: var(--size-2);
  font-size: var(--font-size-0);
  min-height: initial;
}

.btn-mini {
  padding: var(--size-0) var(--size-2);
  font-size: var(--font-size-0);
  min-height: initial;
}

.toggle-button {
  padding: var(--size-0) var(--size-2);
  font-size: var(--font-size-0);
  font-weight: var(--font-weight-7);
  line-height: var(--font-lineheight-1);
  border: var(--border-size-1) solid transparent;
  background: var(--surface-1);
  color: var(--text-1);
}
.toggle-button.selected {
  background: var(--brand-3);
  color: white;
  box-shadow: var(--inner-shadow-1);
}
.toggle-button.selected:hover {
  box-shadow: var(--inner-shadow-4);
}

.btn-modal {
  color: var(--btn-text);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  cursor: pointer;
  transition: var(--transition);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: var(--surface-5);
  padding: var(--size-2) var(--size-2);
}
.btn-modal:first-child {
  border-end-start-radius: var(--theme-radius);
}
.btn-modal:last-child {
  border-end-end-radius: var(--theme-radius);
}
.btn-modal:hover {
  box-shadow: var(--inner-shadow-1);
  background: var(--brand-1);
  color: var(--btn-text);
}

.btn-list {
  display: flex;
  flex-direction: column;
  gap: var(--size-0);
}
.btn-list .btn-list-btn {
  padding-block: var(--size-2);
  padding-inline: var(--size-4);
  background: rgba(var(--theme-contrast-value), 0.05);
  color: rgba(var(--theme-contrast-value), 1);
  border-left: 4px solid transparent;
  transition: var(--transition);
}
.btn-list .btn-list-btn:first-of-type {
  border-start-start-radius: var(--theme-radius);
  border-start-end-radius: var(--theme-radius);
}
.btn-list .btn-list-btn:last-of-type {
  border-end-end-radius: var(--theme-radius);
  border-end-start-radius: var(--theme-radius);
}
.btn-list .btn-list-btn:hover {
  color: var(--link);
  background: rgba(var(--theme-contrast-value), 0.1);
  border-left: 4px solid var(--brand);
}
.btn-list .btn-list-btn.selected {
  color: var(--btn-text);
  background: rgba(var(--theme-contrast-value), 0.25);
  border-left: 4px solid var(--brand);
  cursor: default;
}

.btn-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-5);
  font-weight: bold;
  padding-inline: var(--size-3);
  padding-block: var(--size-2);
  background-color: var(--surface-3);
  transition: var(--transition);
  min-height: var(--form-element-size);
}
.btn-tab:hover:where([href], button) {
  color: var(--cool-1);
  background-color: var(--brand-3);
}
.btn-tab.active {
  color: var(--cool-1);
  background-color: var(--brand-4);
  cursor: default;
}
.btn-tab:first-of-type {
  -webkit-margin-start: 1rem;
          margin-inline-start: 1rem;
  border-top-left-radius: var(--radius-2);
}
.btn-tab:last-of-type {
  border-top-right-radius: var(--radius-2);
}

.dropdown {
  position: relative;
}
.dropdown .btn-dropdown {
  cursor: pointer;
  padding-inline: var(--size-2);
  padding-block: var(--size-1);
  transition: all 0.15s ease-in-out;
  border-radius: var(--theme-radius);
  background: var(--surface-1);
}
.dropdown .btn-dropdown:hover {
  color: var(--text-1);
  transform: translateY(calc(var(--size-0) * -1));
  text-shadow: var(--shadow-3);
  background-color: rgba(0, 0, 0, 0.2);
}
.dropdown .btn-dropdown:focus {
  background-color: rgba(0, 0, 0, 0.2);
}
.dropdown .active .nav-link {
  color: var(--text-1);
}
.dropdown .dropdown-menu {
  pointer-events: none;
  position: absolute;
  left: 0;
  z-index: 99;
  display: none;
  min-width: 10rem;
  max-width: 20rem;
  margin: 0;
  text-align: left;
  list-style: none;
  background-color: var(--dropdown-background);
  background-clip: padding-box;
  border: var(--border-size-1) solid transparent;
  border-radius: var(--theme-radius);
  padding-block: var(--size-2);
  box-shadow: var(--shadow-2);
  transition: all 0.15s ease-in-out;
  white-space: nowrap;
}
.dropdown .dropdown-menu.menu-position-right {
  right: 0;
  left: initial;
}
.dropdown .dropdown-menu > * {
  pointer-events: initial;
}
.dropdown .dropdown-menu.show {
  display: block;
}
.dropdown .dropdown-menu hr {
  margin-block: var(--size-2);
  background-color: rgba(0, 0, 0, 0.3);
}
.dropdown .dropdown-menu .dropdown-item {
  text-decoration: none;
  color: var(--text-2);
  display: block;
  padding-inline: var(--size-3);
  padding-block: var(--size-1);
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}
.dropdown .dropdown-menu .dropdown-item.hidden {
  display: none;
}
.dropdown .dropdown-menu .dropdown-item :where(a[href]) {
  color: var(--text-2);
  text-decoration: none;
}
.dropdown .dropdown-menu .dropdown-item:hover {
  color: var(--text-1);
  transform: translateY(calc(var(--size-0) * -1));
  text-shadow: var(--shadow-3);
  background-color: rgba(0, 0, 0, 0.2);
}
.dropdown .dropdown-menu .dropdown-item.active {
  color: var(--text-1);
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
}
.dropdown .dropdown-menu .dropdown-text {
  text-decoration: none;
  color: var(--text-1);
  font-size: var(--font-size-0);
  opacity: 0.7;
  display: block;
  padding-inline: var(--size-3);
  -webkit-margin-before: var(--size-1);
          margin-block-start: var(--size-1);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
  grid-auto-rows: 1fr;
}

.grid-three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
}

.grid-four-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
}

.grid-two-col-auto {
  display: grid;
  grid-template-columns: -webkit-max-content auto;
  grid-template-columns: max-content auto;
}

.grid-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
}

.input-range-grid {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr -webkit-max-content;
  grid-template-columns: max-content 1fr max-content;
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-row-stretch {
  display: flex;
  flex-direction: row;
}
.flex-row-stretch > * {
  flex: 1;
}

.flex-row-centered, .flex-row-centered-between {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-row-centered-between {
  justify-content: space-between;
}

.flex-sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-3);
}
.flex-sidebar > *:nth-child(1) {
  flex: 1;
  min-width: 20rem;
}
.flex-sidebar > *:nth-child(2) {
  flex: 3;
  min-width: 20rem;
}

.flex-sidebar-end {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--size-3);
}
.flex-sidebar-end > *:nth-child(1) {
  flex: 3;
  min-width: 20rem;
}
.flex-sidebar-end > *:nth-child(2) {
  flex: 1;
  min-width: 20rem;
}

.flex-two-col, .flex-cols {
  display: flex;
  flex-wrap: wrap;
  gap: var(--size-3);
}
.flex-two-col > *, .flex-cols > * {
  flex: 1;
  min-width: 20rem;
}

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

.flex-stretch {
  flex: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.align-stretch {
  align-items: stretch;
}

.align-self-center {
  align-self: center;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-stretch {
  align-self: stretch;
}

.justify-end {
  justify-content: flex-end;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-stretch > * {
  flex: 1;
}

.container {
  display: flex;
  flex-direction: column;
  max-inline-size: var(--layout-size);
  width: 100%;
  padding-right: var(--size-3);
  padding-left: var(--size-3);
  margin-right: auto;
  margin-left: auto;
}

.small-container {
  display: flex;
  flex-direction: column;
  max-inline-size: var(--layout-size-small);
  width: 100%;
  padding-right: var(--size-3);
  padding-left: var(--size-3);
  margin-right: auto;
  margin-left: auto;
}

.medium-container {
  display: flex;
  flex-direction: column;
  max-inline-size: var(--layout-size-medium);
  width: 100%;
  padding-right: var(--size-3);
  padding-left: var(--size-3);
  margin-right: auto;
  margin-left: auto;
}

.large-container {
  display: flex;
  flex-direction: column;
  max-inline-size: var(--layout-size-large);
  width: 100%;
  padding-right: var(--size-3);
  padding-left: var(--size-3);
  margin-right: auto;
  margin-left: auto;
}

.larger-container {
  display: flex;
  flex-direction: column;
  max-inline-size: var(--layout-size-larger);
  width: 100%;
  padding-right: var(--size-3);
  padding-left: var(--size-3);
  margin-right: auto;
  margin-left: auto;
}

.small-width {
  max-inline-size: var(--layout-size-small);
  width: 100%;
}

.medium-width {
  max-inline-size: var(--layout-size-medium);
  width: 100%;
}

.large-width {
  max-inline-size: var(--layout-size-large);
  width: 100%;
}

.fill-height {
  min-height: 100%;
  max-height: 100%;
  flex: 1;
}

.on-surface, .blazored-modal, .list-group, .mini-card, .card, .alert {
  background: var(--surface-1);
  border-radius: var(--theme-radius);
  border-top: 2px solid var(--brand);
}

.alert {
  padding: var(--size-2);
  color: rgba(var(--theme-contrast-value), 0.6);
  font-weight: var(--font-weight-7);
  align-items: center;
}
.alert .alert-header {
  font-size: var(--font-size-2);
  -webkit-margin-after: var(--size-2);
          margin-block-end: var(--size-2);
}
.alert .alert-body {
  display: flex;
  flex-direction: row;
  align-content: center;
}
.alert .alert-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.alert .alert-content a {
  transition: var(--transition);
}
.alert .alert-content a:hover {
  color: rgba(var(--theme-value), 0.7);
}
.alert.alert-success {
  border-color: var(--green-3);
  background-color: var(--green-1);
}
.alert.alert-success :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)) {
  color: var(--green-4);
}
.alert.alert-success :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)) {
  color: var(--green-4);
}
.alert.alert-success :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)):visited {
  color: var(--green-3);
}
.alert.alert-success :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)):visited {
  color: var(--green-3);
}
.alert.alert-info {
  color: var(--teal-4);
  border-color: var(--teal-3);
  background-color: var(--teal-1);
}
.alert.alert-info :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)) {
  color: var(--teal-3);
}
.alert.alert-info :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)) {
  color: var(--teal-3);
}
.alert.alert-info :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)):visited {
  color: var(--teal-3);
}
.alert.alert-info :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)):visited {
  color: var(--teal-3);
}
.alert.alert-warning {
  color: var(--orange-4);
  border-color: var(--orange-3);
  background-color: var(--orange-1);
}
.alert.alert-warning :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)) {
  color: var(--orange-3);
}
.alert.alert-warning :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)) {
  color: var(--orange-3);
}
.alert.alert-warning :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)):visited {
  color: var(--orange-3);
}
.alert.alert-warning :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)):visited {
  color: var(--orange-3);
}
.alert.alert-danger {
  color: var(--red-4);
  border-color: var(--red-3);
  background-color: var(--red-1);
}
.alert.alert-danger :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)) {
  color: var(--red-3);
}
.alert.alert-danger :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)) {
  color: var(--red-3);
}
.alert.alert-danger :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)):visited {
  color: var(--red-3);
}
.alert.alert-danger :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)):visited {
  color: var(--red-3);
}
.alert.alert-muted, .alert.alert-empty {
  color: rgba(var(--theme-contrast-value), 0.5);
  border-color: rgba(var(--theme-contrast-value), 0.2);
  background: rgba(var(--theme-contrast-value), 0.1);
}
.alert.alert-muted :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)), .alert.alert-empty :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)) {
  color: var(--text-3);
}
.alert.alert-muted :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)), .alert.alert-empty :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)) {
  color: var(--text-3);
}
.alert.alert-muted :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)):visited, .alert.alert-empty :where(a[href]:not(.btn):not(input[type=file]::-webkit-file-upload-button)):visited {
  color: var(--text-3);
}
.alert.alert-muted :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)):visited, .alert.alert-empty :where(a[href]:not(.btn):not(input[type=file]::file-selector-button)):visited {
  color: var(--text-3);
}

.alert-icon {
  --icon-size: var(--font-size-4);
  min-width: var(--icon-size);
  margin-right: calc(var(--icon-size) * 0.5);
  font-size: var(--icon-size);
  display: flex;
  justify-content: center;
}

.card {
  display: flex;
  flex-direction: column;
  padding: var(--size-3);
  box-shadow: var(--shadow-1);
}
.card .card-header {
  font-size: var(--font-size-2);
  -webkit-margin-after: var(--size-2);
          margin-block-end: var(--size-2);
}
.card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.card .card {
  background: rgba(var(--theme-contrast-value), 0.04);
  border-top: 2px solid var(--brand-4);
}

.mini-card {
  padding: var(--size-2);
  border-top: none;
  background: rgba(var(--theme-contrast-value), 0.04);
}

.list-group {
  display: flex;
  flex-direction: column;
}

.list-group-item {
  padding: 0.5rem 1rem;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-clickable .list-group-item {
  line-height: 1;
}
.list-group-clickable .list-group-item.selected {
  background: var(--surface-3);
}

.blazored-modal {
  background-color: var(--surface-1);
  max-inline-size: var(--layout-size-large);
  display: flex;
  z-index: 102;
  flex-direction: column;
  border: none;
  padding: var(--size-3);
  color: var(--text-1);
}
.blazored-modal .btn-row {
  margin-left: calc(var(--size-3) * -1);
  margin-right: calc(var(--size-3) * -1);
  margin-bottom: calc(var(--size-3) * -1);
}

.blazored-modal-header {
  padding: 0 0 1rem 0;
}

.blazored-modal-title {
  font-size: var(--font-size-3);
}

.blazored-modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.blazored-modal-scrollable {
  overflow-y: auto;
}

.blazored-modal-overlay {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 101;
  top: 0;
  left: 0;
}

.blazored-modal-container {
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.blazored-modal-center {
  align-items: center;
  justify-content: center;
}

.blazored-modal-topleft .blazored-modal {
  position: absolute;
  top: 32px;
  left: 32px;
}

.blazored-modal-topright .blazored-modal {
  position: absolute;
  top: 32px;
  right: 32px;
}

.blazored-modal-bottomleft .blazored-modal {
  position: absolute;
  bottom: 32px;
  left: 32px;
}

.blazored-modal-bottomright .blazored-modal {
  position: absolute;
  bottom: 32px;
  right: 32px;
}

.blazored-modal-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.blazored-modal-scrollable .blazored-modal-content {
  overflow-y: auto;
}

.blazored-modal-scrollable .blazored-modal-footer, .blazored-modal-scrollable .blazored-modal-header {
  flex-shrink: 0;
}

.blazored-toast-container {
  display: flex;
  flex-direction: column;
  gap: var(--size-3);
  position: fixed;
  z-index: 1;
}

.blazored-toast-component {
  display: initial;
  padding: 0 0 0 0;
}

.position-topleft,
.position-topright,
.position-topcenter {
  top: 0;
}

.position-bottomleft,
.position-bottomright,
.position-bottomcenter {
  bottom: 0;
}

.blazored-toast-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blazored-toast-body .blazored-toast-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.blazored-toast-body .blazored-toast-header .blazored-toast-close {
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  color: inherit;
  font-size: 1.25rem;
}

.blazored-toast-body p {
  margin-bottom: 0;
  font-size: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.blazored-toast-progressbar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.blazored-toast-progressbar > span {
  position: absolute;
  filter: brightness(75%);
  height: 8px;
  border-bottom-left-radius: 0.25rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 0 0);
  transition: all 0.5s linear;
}

.blazored-toast-action {
  cursor: pointer;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 576px) {
  .position-topleft {
    top: 2rem;
    left: 2rem;
  }
  .position-topright {
    top: 2rem;
    right: 2rem;
  }
  .position-topcenter {
    top: 2rem;
    left: 50%;
    margin-left: -15rem;
  }
  .position-bottomleft {
    bottom: 2rem;
    left: 2rem;
  }
  .position-bottomright {
    bottom: 2rem;
    right: 2rem;
  }
  .position-bottomcenter {
    bottom: 2rem;
    left: 50%;
    margin-left: -15rem;
  }
  .blazored-toast {
    width: 30rem;
  }
}
.blazored-toast-container {
  z-index: 102;
}

.blazored-toast {
  display: flex;
  position: relative;
  flex-direction: row;
  -webkit-animation: fadein 0.5s;
          animation: fadein 0.5s;
  padding: var(--size-3) var(--size-3);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--theme-radius);
  box-shadow: var(--shadow-3);
  gap: var(--size-2);
}

.blazored-toast-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 2.5rem;
}

.blazored-toast-header h5 {
  color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
  font-size: var(--font-size-3);
  margin-bottom: 0;
  line-height: var(--font-lineheight-3);
}

.blazored-toast-info {
  background-color: var(--info-dark);
}

.blazored-toast-success {
  background-color: var(--success-dark);
}

.blazored-toast-warning {
  background-color: var(--warning-dark);
}

.blazored-toast-error {
  background-color: var(--danger-dark);
}

.tag {
  padding: var(--size-0) var(--size-2);
  font-size: 0.8rem;
  font-weight: var(--font-weight-7);
  line-height: var(--font-lineheight-1);
  border: var(--border-size-1) solid transparent;
  background: var(--surface-4);
  color: var(--surface-1);
  border-radius: var(--theme-radius);
}

.fontello-demo i {
  visibility: hidden;
}
.fontello-demo i:before {
  visibility: visible;
}
.fontello-demo [class^=icon-]:before, .fontello-demo [class*=" icon-"]:before {
  font-size: var(--font-size-4);
}
.fontello-demo .container.header, .fontello-demo .i-code, .fontello-demo .container.footer {
  display: none;
}
.fontello-demo .container#icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-auto-flow: column;
}
.fontello-demo .row > div {
  line-height: var(--font-lineheight-5);
}

.color-swatch {
  font-size: var(--font-size-0);
  text-align: center;
  padding: var(--size-1) var(--size-2);
  border-radius: var(--size-2);
}
.color-swatch.color-swatch-bg {
  color: var(--surface-1);
  font-weight: var(--font-weight-7);
}
.color-swatch.color-swatch-text {
  font-weight: var(--font-weight-7);
}

:where(textarea, select, input):not(input[type=checkbox], input[type=radio], input[type=range], input[type=file]) {
  font-size: 1rem;
  background-color: var(--surface-2);
  color: var(--text-1);
  border-radius: var(--theme-radius);
  border: var(--border-size-2) solid transparent;
  border-left: 4px solid var(--brand);
  width: 100%;
  min-width: 12rem;
  min-height: var(--form-element-size);
  box-shadow: var(--shadow-1);
}
:where(textarea, select, input):not(input[type=checkbox], input[type=radio], input[type=range], input[type=file]):focus, :where(textarea, select, input):not(input[type=checkbox], input[type=radio], input[type=range], input[type=file]):active {
  border-left: 4px solid var(--brand-2);
  outline: none;
  box-shadow: var(--shadow-2);
}
:where(textarea, select, input):not(input[type=checkbox], input[type=radio], input[type=range], input[type=file]).input-narrow {
  width: 8rem;
  min-width: 8rem;
}
:where(textarea, select, input):not(input[type=checkbox], input[type=radio], input[type=range], input[type=file]).input-small {
  width: 4rem;
  min-width: 4rem;
}
:where(textarea, select, input):not(input[type=checkbox], input[type=radio], input[type=range], input[type=file]).no-interaction {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: not-allowed;
  pointer-events: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: var(--text-1);
  -webkit-box-shadow: 0 0 0px 1000px var(--surface-3) inset;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
  border: var(--border-size-1) solid var(--green-3);
  border-left: 4px solid var(--brand);
}

label {
  cursor: pointer;
}

::-moz-placeholder {
  color: var(--text-3);
}

:-ms-input-placeholder {
  color: var(--text-3);
}

::placeholder {
  color: var(--text-3);
}

input:disabled {
  opacity: 0.5;
}

:where(textarea) {
  resize: vertical;
}

input[type=search] {
  box-sizing: border-box;
}

input[type=image] {
  vertical-align: bottom;
}

.required::after {
  content: "*";
  color: red;
  font-weight: bold;
  margin-left: 0.4rem;
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid var(--success);
}

.invalid {
  outline: 1px solid var(--warning);
}

.validation-message {
  color: var(--warning);
}

.check-radio {
  --slider-size: 1.8;
  --slider-spacing: .125rem;
  --toggle-size: 1.2rem;
  display: flex;
  align-items: center;
  position: relative;
}
.check-radio input[type=radio],
.check-radio input[type=checkbox] {
  display: none;
}
.check-radio label {
  -webkit-margin-start: calc((var(--toggle-size) * var(--slider-size) + var(--slider-spacing) * 2) * -1);
          margin-inline-start: calc((var(--toggle-size) * var(--slider-size) + var(--slider-spacing) * 2) * -1);
  display: flex;
  align-items: center;
  transition: margin 0.25s ease-out;
}
.check-radio label:hover {
  cursor: pointer;
}
.check-radio:before {
  content: "";
  width: calc(var(--toggle-size) * var(--slider-size) + var(--slider-spacing) * 2);
  height: calc(var(--toggle-size) + var(--slider-spacing) * 2);
  border-radius: calc(var(--toggle-size) + var(--slider-spacing) * 2 / 2);
  background-color: var(--surface-1);
}
.check-radio label:before {
  -webkit-margin-start: var(--slider-spacing);
          margin-inline-start: var(--slider-spacing);
  -webkit-margin-end: calc(var(--toggle-size) * var(--slider-size) + var(--slider-spacing) * 4 - var(--toggle-size));
          margin-inline-end: calc(var(--toggle-size) * var(--slider-size) + var(--slider-spacing) * 4 - var(--toggle-size));
  content: "";
  width: var(--toggle-size);
  height: var(--toggle-size);
  border-radius: calc(var(--toggle-size) / 2);
  background-color: var(--surface-3);
  transition: margin 0.25s ease-out;
}
.check-radio input[type=radio]:checked + label::before,
.check-radio input[type=checkbox]:checked + label::before {
  -webkit-margin-start: calc(var(--toggle-size) * var(--slider-size) + var(--slider-spacing) - var(--toggle-size));
          margin-inline-start: calc(var(--toggle-size) * var(--slider-size) + var(--slider-spacing) - var(--toggle-size));
  -webkit-margin-end: calc(var(--slider-spacing) * 4);
          margin-inline-end: calc(var(--slider-spacing) * 4);
  background: var(--brand-1);
  border: calc(var(--toggle-size) / 4) solid var(--brand-4);
}
.check-radio input[type=radio]:checked + label,
.check-radio input[type=checkbox]:checked + label {
  color: var(--brand);
}

input[type=range] {
  -webkit-appearance: none; /* Override default CSS styles */
  -moz-appearance: none;
       appearance: none;
  width: 100%; /* Full-width */
  height: 1rem;
  background: var(--surface-2);
  border: none;
  outline: none; /* Remove outline */
  transition: var(--transition);
  border-radius: var(--theme-radius);
  box-shadow: var(--shadow-1);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 1rem;
  height: 1rem;
  background: var(--brand-3);
  border-radius: var(--theme-radius);
  cursor: ew-resize;
  box-shadow: -999rem 0 0 998.5rem var(--brand-2);
}
input[type=range]:hover {
  box-shadow: var(--shadow-2);
}
input[type=range]:hover::-webkit-slider-thumb {
  background: var(--brand-4);
  box-shadow: -999rem 0 0 998.5rem var(--brand-3);
}

input[type=file]::-webkit-file-upload-button:hover {
  background-color: var(--brand-4);
}

input[type=file]::file-selector-button:hover {
  background-color: var(--brand-4);
}

.table {
  background: rgba(var(--theme-contrast-value), 0.025);
  border-radius: var(--theme-radius);
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
.table tbody tr td {
  z-index: 1;
  transition: var(--transition);
}
.table tbody tr td:first-of-type {
  border-left: 3px solid transparent;
  font-weight: bold;
}
.table tbody tr.clickable:hover {
  position: relative;
  background: rgba(var(--theme-value), 0.2);
  color: var(--text-1);
  box-shadow: 0 3px 5px -2px hsl(var(--shadow-color)/calc(var(--shadow-strength))), 0 0px 17px -3px hsl(var(--shadow-color)/calc(var(--shadow-strength)));
}
.table tbody tr.clickable:hover td:first-of-type {
  border-left: 3px solid var(--brand-4);
  color: var(--brand-4);
}
.table tbody tr:nth-child(odd) {
  background: rgba(var(--theme-contrast-value), 0.05);
}
.table th:first-of-type {
  padding-inline: var(--size-3);
  text-align: left;
}
.table th:last-of-type {
  padding-inline: var(--size-3);
}
.table th:not(:first-of-type):not(.text-left):not(.text-right) {
  text-align: center;
}
.table td.condensed {
  width: 1%;
  white-space: nowrap;
}
.table td:first-of-type {
  padding-inline: var(--size-3);
  text-align: left;
}
.table td:last-of-type {
  padding-inline: var(--size-3);
}
.table td:not(:first-of-type):not(.text-left):not(.text-right) {
  text-align: center;
}
.table td,
.table th {
  padding-inline: var(--size-1);
  padding-block: var(--size-2);
}
.table .table-divider-above td {
  border-top: 2px solid rgba(var(--theme-contrast-value), 0.4);
}

.columns-2 {
  -moz-column-count: 2;
       column-count: 2;
}

.columns-3 {
  -moz-column-count: 3;
       column-count: 3;
}

.columns-4 {
  -moz-column-count: 4;
       column-count: 4;
}

.no-select {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fs-0 {
  font-size: var(--font-size-0);
}

.text-bold {
  font-weight: bold;
}

.text-center {
  text-align: center;
}
.text-center input {
  text-align: center;
}

.text-right {
  text-align: right;
}
.text-right input {
  text-align: right;
}

.text-left {
  text-align: left;
}
.text-left input {
  text-align: left;
}

.text-muted, .btn-list.tests-list .btn-list-btn div:nth-child(2), .btn-list.tests-list .btn-list-btn div:nth-child(3), .card .card-header {
  color: var(--text-4);
}

.disabled {
  opacity: 0.5;
}

.hidden {
  display: none;
}

.text-small {
  font-size: var(--font-size-0);
}

.text-medium {
  font-size: 0.8rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs > div:not(:last-of-type):after {
  content: ">";
  margin-inline: 0.25rem;
}

.no-wrap {
  white-space: nowrap;
}

.wrap {
  white-space: break-spaces;
}

.selected .text-muted, .selected .btn-list.tests-list .btn-list-btn div:nth-child(2), .btn-list.tests-list .btn-list-btn .selected div:nth-child(2), .selected .btn-list.tests-list .btn-list-btn div:nth-child(3), .btn-list.tests-list .btn-list-btn .selected div:nth-child(3), .selected .card .card-header, .card .selected .card-header {
  color: var(--text-3);
}

.not-allowed {
  cursor: not-allowed;
}

.clickable {
  cursor: pointer;
  transition: var(--transition);
}

.link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.scroll-overflow {
  max-height: 80vh;
  overflow-y: scroll;
}

.auto-overflow {
  overflow: auto;
}

.success {
  background: var(--success);
  color: var(--btn-text);
}

.danger {
  background: var(--danger);
  color: var(--btn-text);
}

.warning {
  background: var(--warning);
  color: var(--btn-text);
}

.info {
  background: var(--info);
  color: var(--btn-text);
}

.comma-separated > *:not(:last-child):after {
  content: ",";
}

.m-1 {
  margin: var(--size-1);
}

.p-1 {
  padding: var(--size-1);
}

.px-1 {
  padding-inline: var(--size-1);
}

.py-1 {
  padding-block: var(--size-1);
}

.mi-1 {
  -webkit-margin-end: var(--size-1);
          margin-inline-end: var(--size-1);
}

.mb-1 {
  -webkit-margin-after: var(--size-1);
          margin-block-end: var(--size-1);
}

.mx-1 {
  margin-inline: var(--size-1);
}

.my-1 {
  margin-block: var(--size-1);
}

.g-1 {
  gap: var(--size-1);
}

.gy-1 {
  row-gap: var(--size-1);
}

.gx-1 {
  -moz-column-gap: var(--size-1);
       column-gap: var(--size-1);
}

.m-2 {
  margin: var(--size-2);
}

.p-2 {
  padding: var(--size-2);
}

.px-2 {
  padding-inline: var(--size-2);
}

.py-2 {
  padding-block: var(--size-2);
}

.mi-2 {
  -webkit-margin-end: var(--size-2);
          margin-inline-end: var(--size-2);
}

.mb-2 {
  -webkit-margin-after: var(--size-2);
          margin-block-end: var(--size-2);
}

.mx-2 {
  margin-inline: var(--size-2);
}

.my-2 {
  margin-block: var(--size-2);
}

.g-2 {
  gap: var(--size-2);
}

.gy-2 {
  row-gap: var(--size-2);
}

.gx-2 {
  -moz-column-gap: var(--size-2);
       column-gap: var(--size-2);
}

.m-3 {
  margin: var(--size-3);
}

.p-3 {
  padding: var(--size-3);
}

.px-3 {
  padding-inline: var(--size-3);
}

.py-3 {
  padding-block: var(--size-3);
}

.mi-3 {
  -webkit-margin-end: var(--size-3);
          margin-inline-end: var(--size-3);
}

.mb-3 {
  -webkit-margin-after: var(--size-3);
          margin-block-end: var(--size-3);
}

.mx-3 {
  margin-inline: var(--size-3);
}

.my-3 {
  margin-block: var(--size-3);
}

.g-3 {
  gap: var(--size-3);
}

.gy-3 {
  row-gap: var(--size-3);
}

.gx-3 {
  -moz-column-gap: var(--size-3);
       column-gap: var(--size-3);
}

.m-4 {
  margin: var(--size-7);
}

.p-4 {
  padding: var(--size-7);
}

.px-4 {
  padding-inline: var(--size-7);
}

.py-4 {
  padding-block: var(--size-7);
}

.mi-4 {
  -webkit-margin-end: var(--size-7);
          margin-inline-end: var(--size-7);
}

.mb-4 {
  -webkit-margin-after: var(--size-7);
          margin-block-end: var(--size-7);
}

.mx-4 {
  margin-inline: var(--size-7);
}

.my-4 {
  margin-block: var(--size-7);
}

.g-4 {
  gap: var(--size-7);
}

.gy-4 {
  row-gap: var(--size-7);
}

.gx-4 {
  -moz-column-gap: var(--size-7);
       column-gap: var(--size-7);
}

.fs-00 {
  font-size: var(--font-size-00);
}

.fs-0 {
  font-size: var(--font-size-0);
}

.fs-1 {
  font-size: var(--font-size-1);
}

.fs-2 {
  font-size: var(--font-size-2);
}

.fs-3 {
  font-size: var(--font-size-3);
}

.fs-4 {
  font-size: var(--font-size-4);
}

.fs-5 {
  font-size: var(--font-size-5);
}

.fs-6 {
  font-size: var(--font-size-6);
}

.fs-7 {
  font-size: var(--font-size-7);
}

.fs-8 {
  font-size: var(--font-size-8);
}

.bg-brand {
  background: var(--brand-3);
}

.text-brand {
  color: var(--brand-1);
}

.bg-brand-1 {
  background: var(--brand-1);
}

.text-brand-1 {
  color: var(--brand-1);
}

.bg-brand-2 {
  background: var(--brand-2);
}

.text-brand-2 {
  color: var(--brand-2);
}

.bg-brand-3 {
  background: var(--brand-3);
}

.text-brand-3 {
  color: var(--brand-3);
}

.bg-brand-4 {
  background: var(--brand-4);
}

.text-brand-4 {
  color: var(--brand-4);
}

.bg-brand-5 {
  background: var(--brand-5);
}

.text-brand-5 {
  color: var(--brand-5);
}

.bg-red {
  background: var(--red-3);
}

.text-red {
  color: var(--red-1);
}

.bg-red-1 {
  background: var(--red-1);
}

.text-red-1 {
  color: var(--red-1);
}

.bg-red-2 {
  background: var(--red-2);
}

.text-red-2 {
  color: var(--red-2);
}

.bg-red-3 {
  background: var(--red-3);
}

.text-red-3 {
  color: var(--red-3);
}

.bg-red-4 {
  background: var(--red-4);
}

.text-red-4 {
  color: var(--red-4);
}

.bg-red-5 {
  background: var(--red-5);
}

.text-red-5 {
  color: var(--red-5);
}

.bg-orange {
  background: var(--orange-3);
}

.text-orange {
  color: var(--orange-1);
}

.bg-orange-1 {
  background: var(--orange-1);
}

.text-orange-1 {
  color: var(--orange-1);
}

.bg-orange-2 {
  background: var(--orange-2);
}

.text-orange-2 {
  color: var(--orange-2);
}

.bg-orange-3 {
  background: var(--orange-3);
}

.text-orange-3 {
  color: var(--orange-3);
}

.bg-orange-4 {
  background: var(--orange-4);
}

.text-orange-4 {
  color: var(--orange-4);
}

.bg-orange-5 {
  background: var(--orange-5);
}

.text-orange-5 {
  color: var(--orange-5);
}

.bg-yellow {
  background: var(--yellow-3);
}

.text-yellow {
  color: var(--yellow-1);
}

.bg-yellow-1 {
  background: var(--yellow-1);
}

.text-yellow-1 {
  color: var(--yellow-1);
}

.bg-yellow-2 {
  background: var(--yellow-2);
}

.text-yellow-2 {
  color: var(--yellow-2);
}

.bg-yellow-3 {
  background: var(--yellow-3);
}

.text-yellow-3 {
  color: var(--yellow-3);
}

.bg-yellow-4 {
  background: var(--yellow-4);
}

.text-yellow-4 {
  color: var(--yellow-4);
}

.bg-yellow-5 {
  background: var(--yellow-5);
}

.text-yellow-5 {
  color: var(--yellow-5);
}

.bg-green {
  background: var(--green-3);
}

.text-green {
  color: var(--green-1);
}

.bg-green-1 {
  background: var(--green-1);
}

.text-green-1 {
  color: var(--green-1);
}

.bg-green-2 {
  background: var(--green-2);
}

.text-green-2 {
  color: var(--green-2);
}

.bg-green-3 {
  background: var(--green-3);
}

.text-green-3 {
  color: var(--green-3);
}

.bg-green-4 {
  background: var(--green-4);
}

.text-green-4 {
  color: var(--green-4);
}

.bg-green-5 {
  background: var(--green-5);
}

.text-green-5 {
  color: var(--green-5);
}

.bg-teal {
  background: var(--teal-3);
}

.text-teal {
  color: var(--teal-1);
}

.bg-teal-1 {
  background: var(--teal-1);
}

.text-teal-1 {
  color: var(--teal-1);
}

.bg-teal-2 {
  background: var(--teal-2);
}

.text-teal-2 {
  color: var(--teal-2);
}

.bg-teal-3 {
  background: var(--teal-3);
}

.text-teal-3 {
  color: var(--teal-3);
}

.bg-teal-4 {
  background: var(--teal-4);
}

.text-teal-4 {
  color: var(--teal-4);
}

.bg-teal-5 {
  background: var(--teal-5);
}

.text-teal-5 {
  color: var(--teal-5);
}

.bg-blue {
  background: var(--blue-3);
}

.text-blue {
  color: var(--blue-1);
}

.bg-blue-1 {
  background: var(--blue-1);
}

.text-blue-1 {
  color: var(--blue-1);
}

.bg-blue-2 {
  background: var(--blue-2);
}

.text-blue-2 {
  color: var(--blue-2);
}

.bg-blue-3 {
  background: var(--blue-3);
}

.text-blue-3 {
  color: var(--blue-3);
}

.bg-blue-4 {
  background: var(--blue-4);
}

.text-blue-4 {
  color: var(--blue-4);
}

.bg-blue-5 {
  background: var(--blue-5);
}

.text-blue-5 {
  color: var(--blue-5);
}

.bg-purple {
  background: var(--purple-3);
}

.text-purple {
  color: var(--purple-1);
}

.bg-purple-1 {
  background: var(--purple-1);
}

.text-purple-1 {
  color: var(--purple-1);
}

.bg-purple-2 {
  background: var(--purple-2);
}

.text-purple-2 {
  color: var(--purple-2);
}

.bg-purple-3 {
  background: var(--purple-3);
}

.text-purple-3 {
  color: var(--purple-3);
}

.bg-purple-4 {
  background: var(--purple-4);
}

.text-purple-4 {
  color: var(--purple-4);
}

.bg-purple-5 {
  background: var(--purple-5);
}

.text-purple-5 {
  color: var(--purple-5);
}

.bg-magenta {
  background: var(--magenta-3);
}

.text-magenta {
  color: var(--magenta-1);
}

.bg-magenta-1 {
  background: var(--magenta-1);
}

.text-magenta-1 {
  color: var(--magenta-1);
}

.bg-magenta-2 {
  background: var(--magenta-2);
}

.text-magenta-2 {
  color: var(--magenta-2);
}

.bg-magenta-3 {
  background: var(--magenta-3);
}

.text-magenta-3 {
  color: var(--magenta-3);
}

.bg-magenta-4 {
  background: var(--magenta-4);
}

.text-magenta-4 {
  color: var(--magenta-4);
}

.bg-magenta-5 {
  background: var(--magenta-5);
}

.text-magenta-5 {
  color: var(--magenta-5);
}

.bg-pink {
  background: var(--pink-3);
}

.text-pink {
  color: var(--pink-1);
}

.bg-pink-1 {
  background: var(--pink-1);
}

.text-pink-1 {
  color: var(--pink-1);
}

.bg-pink-2 {
  background: var(--pink-2);
}

.text-pink-2 {
  color: var(--pink-2);
}

.bg-pink-3 {
  background: var(--pink-3);
}

.text-pink-3 {
  color: var(--pink-3);
}

.bg-pink-4 {
  background: var(--pink-4);
}

.text-pink-4 {
  color: var(--pink-4);
}

.bg-pink-5 {
  background: var(--pink-5);
}

.text-pink-5 {
  color: var(--pink-5);
}

.bg-warm {
  background: var(--warm-3);
}

.text-warm {
  color: var(--warm-1);
}

.bg-warm-1 {
  background: var(--warm-1);
}

.text-warm-1 {
  color: var(--warm-1);
}

.bg-warm-2 {
  background: var(--warm-2);
}

.text-warm-2 {
  color: var(--warm-2);
}

.bg-warm-3 {
  background: var(--warm-3);
}

.text-warm-3 {
  color: var(--warm-3);
}

.bg-warm-4 {
  background: var(--warm-4);
}

.text-warm-4 {
  color: var(--warm-4);
}

.bg-warm-5 {
  background: var(--warm-5);
}

.text-warm-5 {
  color: var(--warm-5);
}

.bg-warm-6 {
  background: var(--warm-6);
}

.text-warm-6 {
  color: var(--warm-6);
}

.bg-warm-7 {
  background: var(--warm-7);
}

.text-warm-7 {
  color: var(--warm-7);
}

.bg-warm-8 {
  background: var(--warm-8);
}

.text-warm-8 {
  color: var(--warm-8);
}

.bg-warm-9 {
  background: var(--warm-9);
}

.text-warm-9 {
  color: var(--warm-9);
}

.bg-cool {
  background: var(--cool-3);
}

.text-cool {
  color: var(--cool-1);
}

.bg-cool-1 {
  background: var(--cool-1);
}

.text-cool-1 {
  color: var(--cool-1);
}

.bg-cool-2 {
  background: var(--cool-2);
}

.text-cool-2 {
  color: var(--cool-2);
}

.bg-cool-3 {
  background: var(--cool-3);
}

.text-cool-3 {
  color: var(--cool-3);
}

.bg-cool-4 {
  background: var(--cool-4);
}

.text-cool-4 {
  color: var(--cool-4);
}

.bg-cool-5 {
  background: var(--cool-5);
}

.text-cool-5 {
  color: var(--cool-5);
}

.bg-cool-6 {
  background: var(--cool-6);
}

.text-cool-6 {
  color: var(--cool-6);
}

.bg-cool-7 {
  background: var(--cool-7);
}

.text-cool-7 {
  color: var(--cool-7);
}

.bg-cool-8 {
  background: var(--cool-8);
}

.text-cool-8 {
  color: var(--cool-8);
}

.bg-cool-9 {
  background: var(--cool-9);
}

.text-cool-9 {
  color: var(--cool-9);
}

.bg-cool-10 {
  background: var(--cool-10);
}

.text-cool-10 {
  color: var(--cool-10);
}

.text-brand {
  color: var(--brand-3);
}

.bg-black {
  background: #000000;
}

.chiller-assessment .question {
  overflow: hidden;
}
.chiller-assessment .question .swatch-container:hover .ui-rotatable-handle:before {
  position: absolute;
  top: 0;
  content: "";
  display: block;
  height: 40px;
  width: 40px;
  background: url(/images/ui/rotate-arrow.svg);
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  transform: rotate(-45deg);
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}
.chiller-assessment .question .swatch-container:hover .ui-rotatable-handle:before:hover {
  opacity: 1;
}
.chiller-assessment .question .reference .swatch {
  width: auto;
  transition: transform 0.5s;
  transform-origin: 50% 100%;
}
.chiller-assessment .reference-standard input[type=file]::-webkit-file-upload-button, .chiller-assessment .reference-standard-tens input[type=file]::-webkit-file-upload-button {
  background: var(--cool-4);
  color: var(--text-1);
}
.chiller-assessment .reference-standard .btn, .chiller-assessment .reference-standard input[type=file]::file-selector-button, .chiller-assessment .reference-standard-tens .btn, .chiller-assessment .reference-standard-tens input[type=file]::file-selector-button {
  background: var(--cool-4);
  color: var(--text-1);
}
.chiller-assessment .reference-standard input[type=file]:hover::-webkit-file-upload-button, .chiller-assessment .reference-standard-tens input[type=file]:hover::-webkit-file-upload-button {
  color: var(--text-1) !important;
  background: var(--brand-4) !important;
}
.chiller-assessment .reference-standard .btn:hover, .chiller-assessment .reference-standard input[type=file]:hover::file-selector-button, .chiller-assessment .reference-standard-tens .btn:hover, .chiller-assessment .reference-standard-tens input[type=file]:hover::file-selector-button {
  color: var(--text-1) !important;
  background: var(--brand-4) !important;
}
.chiller-assessment .reference-standard input.active[type=file]::-webkit-file-upload-button, .chiller-assessment .reference-standard-tens input.active[type=file]::-webkit-file-upload-button {
  color: var(--text-1) !important;
  background: var(--brand) !important;
}
.chiller-assessment .reference-standard .btn.active, .chiller-assessment .reference-standard input.active[type=file]::file-selector-button, .chiller-assessment .reference-standard-tens .btn.active, .chiller-assessment .reference-standard-tens input.active[type=file]::file-selector-button {
  color: var(--text-1) !important;
  background: var(--brand) !important;
}
.chiller-assessment.fat-colour .reference-standard input[type=file]::-webkit-file-upload-button {
  color: var(--cool-2);
}
.chiller-assessment.fat-colour .reference-standard .btn, .chiller-assessment.fat-colour .reference-standard input[type=file]::file-selector-button {
  color: var(--cool-2);
}
.chiller-assessment.fat-colour .reference-standard input[data-id="0"][type=file]::-webkit-file-upload-button {
  background: #FFF9EB;
}
.chiller-assessment.fat-colour .reference-standard .btn[data-id="0"], .chiller-assessment.fat-colour .reference-standard input[data-id="0"][type=file]::file-selector-button {
  background: #FFF9EB;
}
.chiller-assessment.fat-colour .reference-standard input[data-id="1"][type=file]::-webkit-file-upload-button {
  background: #FFF5DA;
}
.chiller-assessment.fat-colour .reference-standard .btn[data-id="1"], .chiller-assessment.fat-colour .reference-standard input[data-id="1"][type=file]::file-selector-button {
  background: #FFF5DA;
}
.chiller-assessment.fat-colour .reference-standard input[data-id="2"][type=file]::-webkit-file-upload-button {
  background: #FEF2C8;
}
.chiller-assessment.fat-colour .reference-standard .btn[data-id="2"], .chiller-assessment.fat-colour .reference-standard input[data-id="2"][type=file]::file-selector-button {
  background: #FEF2C8;
}
.chiller-assessment.fat-colour .reference-standard input[data-id="3"][type=file]::-webkit-file-upload-button {
  background: #FFEAB4;
}
.chiller-assessment.fat-colour .reference-standard .btn[data-id="3"], .chiller-assessment.fat-colour .reference-standard input[data-id="3"][type=file]::file-selector-button {
  background: #FFEAB4;
}
.chiller-assessment.fat-colour .reference-standard input[data-id="4"][type=file]::-webkit-file-upload-button {
  background: #FDE59B;
}
.chiller-assessment.fat-colour .reference-standard .btn[data-id="4"], .chiller-assessment.fat-colour .reference-standard input[data-id="4"][type=file]::file-selector-button {
  background: #FDE59B;
}
.chiller-assessment.fat-colour .reference-standard input[data-id="5"][type=file]::-webkit-file-upload-button {
  background: #FFDD83;
}
.chiller-assessment.fat-colour .reference-standard .btn[data-id="5"], .chiller-assessment.fat-colour .reference-standard input[data-id="5"][type=file]::file-selector-button {
  background: #FFDD83;
}
.chiller-assessment.fat-colour .reference-standard input[data-id="6"][type=file]::-webkit-file-upload-button {
  background: #FFD571;
}
.chiller-assessment.fat-colour .reference-standard .btn[data-id="6"], .chiller-assessment.fat-colour .reference-standard input[data-id="6"][type=file]::file-selector-button {
  background: #FFD571;
}
.chiller-assessment.fat-colour .reference-standard input[data-id="7"][type=file]::-webkit-file-upload-button {
  background: #FFCE58;
}
.chiller-assessment.fat-colour .reference-standard .btn[data-id="7"], .chiller-assessment.fat-colour .reference-standard input[data-id="7"][type=file]::file-selector-button {
  background: #FFCE58;
}
.chiller-assessment.fat-colour .reference-standard input[data-id="8"][type=file]::-webkit-file-upload-button {
  background: #FDCD47;
}
.chiller-assessment.fat-colour .reference-standard .btn[data-id="8"], .chiller-assessment.fat-colour .reference-standard input[data-id="8"][type=file]::file-selector-button {
  background: #FDCD47;
}
.chiller-assessment.fat-colour .reference-standard input[data-id="9"][type=file]::-webkit-file-upload-button {
  background: #666666;
  color: var(--text-1);
}
.chiller-assessment.fat-colour .reference-standard .btn[data-id="9"], .chiller-assessment.fat-colour .reference-standard input[data-id="9"][type=file]::file-selector-button {
  background: #666666;
  color: var(--text-1);
}
.chiller-assessment.meat-colour .reference-standard input[data-id="1A"][type=file]::-webkit-file-upload-button {
  background: #D37458;
}
.chiller-assessment.meat-colour .reference-standard .btn[data-id="1A"], .chiller-assessment.meat-colour .reference-standard input[data-id="1A"][type=file]::file-selector-button {
  background: #D37458;
}
.chiller-assessment.meat-colour .reference-standard input[data-id="1B"][type=file]::-webkit-file-upload-button {
  background: #BD4C3C;
}
.chiller-assessment.meat-colour .reference-standard .btn[data-id="1B"], .chiller-assessment.meat-colour .reference-standard input[data-id="1B"][type=file]::file-selector-button {
  background: #BD4C3C;
}
.chiller-assessment.meat-colour .reference-standard input[data-id="1C"][type=file]::-webkit-file-upload-button {
  background: #A6391C;
}
.chiller-assessment.meat-colour .reference-standard .btn[data-id="1C"], .chiller-assessment.meat-colour .reference-standard input[data-id="1C"][type=file]::file-selector-button {
  background: #A6391C;
}
.chiller-assessment.meat-colour .reference-standard input[data-id="2"][type=file]::-webkit-file-upload-button {
  background: #922E16;
}
.chiller-assessment.meat-colour .reference-standard .btn[data-id="2"], .chiller-assessment.meat-colour .reference-standard input[data-id="2"][type=file]::file-selector-button {
  background: #922E16;
}
.chiller-assessment.meat-colour .reference-standard input[data-id="3"][type=file]::-webkit-file-upload-button {
  background: #852A17;
}
.chiller-assessment.meat-colour .reference-standard .btn[data-id="3"], .chiller-assessment.meat-colour .reference-standard input[data-id="3"][type=file]::file-selector-button {
  background: #852A17;
}
.chiller-assessment.meat-colour .reference-standard input[data-id="4"][type=file]::-webkit-file-upload-button {
  background: #71221E;
}
.chiller-assessment.meat-colour .reference-standard .btn[data-id="4"], .chiller-assessment.meat-colour .reference-standard input[data-id="4"][type=file]::file-selector-button {
  background: #71221E;
}
.chiller-assessment.meat-colour .reference-standard input[data-id="5"][type=file]::-webkit-file-upload-button {
  background: #652420;
}
.chiller-assessment.meat-colour .reference-standard .btn[data-id="5"], .chiller-assessment.meat-colour .reference-standard input[data-id="5"][type=file]::file-selector-button {
  background: #652420;
}
.chiller-assessment.meat-colour .reference-standard input[data-id="6"][type=file]::-webkit-file-upload-button {
  background: #562224;
}
.chiller-assessment.meat-colour .reference-standard .btn[data-id="6"], .chiller-assessment.meat-colour .reference-standard input[data-id="6"][type=file]::file-selector-button {
  background: #562224;
}
.chiller-assessment.meat-colour .reference-standard input[data-id="7"][type=file]::-webkit-file-upload-button {
  background: #666666;
}
.chiller-assessment.meat-colour .reference-standard .btn[data-id="7"], .chiller-assessment.meat-colour .reference-standard input[data-id="7"][type=file]::file-selector-button {
  background: #666666;
}
.chiller-assessment .ui-rotatable-handle {
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 100%;
  cursor: e-resize;
}
.chiller-assessment .ui-draggable-handle {
  cursor: move;
}

.chiller-assessment.marbling img.swatch {
  position: relative;
}
.chiller-assessment.marbling img.torch {
  -webkit-animation: 2s ease-out 0s 1 slideInFromLeft;
          animation: 2s ease-out 0s 1 slideInFromLeft;
  position: absolute;
  opacity: 0.7;
  left: -3350px;
  top: -1450px;
}

.chiller-assessment.meat-colour img.torch {
  transform: scale(2.25);
}

.maturity .notation {
  pointer-events: none;
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  width: 355px;
  height: 644px;
  background: linear-gradient(90deg, rgb(0, 0, 0) 25%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 74%);
}
.maturity .notation div {
  display: flex;
  border-bottom: 3px solid var(--brand);
  align-items: center;
}
.maturity .notation div:nth-child(1) {
  height: 84px;
}
.maturity .notation div:nth-child(2) {
  height: 147px;
}
.maturity .notation div:nth-child(3) {
  height: 295px;
}
.maturity .notation div:nth-child(4) {
  border-bottom: none;
}
.maturity .sample {
  position: relative;
  flex: 1;
}
.maturity .sample > img {
  display: block;
  margin-left: auto;
}
.maturity .sample .hover-areas {
  position: absolute;
  top: 0;
  right: -6px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.maturity .sample .hover-areas .hover-area {
  border: solid 2px #fff;
  border-radius: 2px;
  display: block;
  height: 15px;
  width: 40px;
  opacity: 0.6;
  cursor: zoom-in;
}
.maturity .sample .hover-areas .hover-area:hover, .maturity .sample .hover-areas .hover-area.hover {
  background: white;
  border: none;
}
.maturity .sample .hover-areas .hover-area:nth-child(1) {
  margin-top: 6px;
}
.maturity .sample .hover-areas .hover-area:nth-child(3) {
  margin-right: 10px;
}
.maturity .sample .hover-areas .hover-area:nth-child(4) {
  margin-right: 18px;
}
.maturity .sample .hover-areas .hover-area:nth-child(5) {
  margin-right: 28px;
}
.maturity .sample .hover-areas .hover-area:nth-child(6) {
  margin-right: 46px;
  height: 50px;
  width: 46px;
}
.maturity .sample .hover-areas .hover-area:nth-child(7) {
  margin-right: 50px;
  height: 50px;
  width: 46px;
}
.maturity .sample .hover-areas .hover-area:nth-child(8) {
  margin-right: 46px;
  height: 50px;
  width: 46px;
}
.maturity .sample .hover-areas .hover-area:nth-child(9) {
  margin-right: 40px;
  height: 50px;
  width: 46px;
}
.maturity .sample .hover-areas .hover-area:nth-child(10) {
  margin-right: 36px;
  height: 50px;
  width: 46px;
}
.maturity .sample .hover-areas .hover-area:nth-child(11) {
  margin-right: 30px;
  height: 50px;
  width: 46px;
}
.maturity .sample .hover-areas .hover-area:nth-child(12) {
  margin-right: 24px;
  height: 50px;
  width: 46px;
}
.maturity .sample .hover-areas .hover-area:nth-child(13) {
  margin-right: 26px;
  height: 50px;
  width: 46px;
}
.maturity .sample .hover-areas .hover-area:nth-child(14) {
  margin-right: 32px;
  height: 50px;
  width: 46px;
}
.maturity .sample .hover-areas .hover-area:nth-child(15) {
  position: absolute;
  top: 259px;
  left: -135px;
  height: 254px;
  width: 136px;
}
.maturity .details {
  flex: 2;
}
.maturity .details .zoom-zone {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.maturity .rating-descriptions {
  display: flex;
  font-size: 0.8rem;
  text-align: center;
  background: var(--surface-3);
}
.maturity .rating-descriptions > div {
  flex: 1;
  margin: 0 0.1rem;
  display: flex;
  flex-direction: column;
  min-height: 100px;
}
.maturity .rating-descriptions .heading {
  background: var(--brand);
  color: #fff;
  padding: 0.2rem 0.4rem;
}
.maturity .rating-descriptions .description {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0.2rem;
}
.maturity .maturity-rating input[type=file]::-webkit-file-upload-button {
  color: #fff;
}
.maturity .maturity-rating .btn, .maturity .maturity-rating input[type=file]::file-selector-button {
  color: #fff;
}
.maturity .zoom-zone img {
  max-block-size: 500px;
}

.rib-fat .activity-container {
  overflow: inherit;
}
.rib-fat .reference {
  z-index: 97;
  position: relative;
  top: 160px;
  left: -30px;
}
.rib-fat .reference .swatch-container.flipped-ruler .rotatable {
  transform-origin: 100% 0%;
}
.rib-fat .reference .swatch-container .rotatable {
  transform-origin: 0% 0%;
}
.rib-fat .reference .ruler {
  width: 747px;
}
.rib-fat .reference-arrows i {
  position: absolute;
  font-size: 2.5rem;
  z-index: 98;
}
.rib-fat .reference-arrows i:nth-of-type(1) {
  color: var(--brand);
  left: 580px;
  top: 56px;
}
.rib-fat .reference-arrows i:nth-of-type(2) {
  color: var(--teal-3);
  left: 630px;
  top: 56px;
}
.rib-fat .flipped-ruler .ui-rotatable-handle {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40px;
  cursor: e-resize;
}
.rib-fat .ui-rotatable-handle {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  cursor: e-resize;
}
.rib-fat .ui-draggable-handle {
  cursor: move;
}

.eye-muscle-area .activity-container {
  overflow: inherit;
}
.eye-muscle-area .reference .rotatable {
  transform-origin: 25% 83.3%;
}
.eye-muscle-area .reference .rotatable:hover .ui-rotatable-handle {
  background: url(/images/ui/rotate-arrow.svg);
  background-size: contain;
}
.eye-muscle-area .reference .rotatable:hover .ui-rotatable-handle:hover {
  opacity: 1;
}
.eye-muscle-area .reference .ruler {
  width: 440px;
  height: 659px;
}
.eye-muscle-area .reference .swatch-bg {
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.eye-muscle-area .ui-rotatable-handle {
  position: absolute;
  opacity: 0.5;
  top: 16.6%;
  left: 75%;
  transform: translate(-50%, -50%);
  height: 3rem;
  width: 3rem;
  cursor: e-resize;
  transition: var(--transition);
}
.eye-muscle-area .ui-draggable-handle {
  cursor: move;
}

.fat-distribution .sample {
  position: relative;
}
.fat-distribution .sample .hang-label {
  z-index: 1;
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  pointer-events: none;
}
.fat-distribution .at-hang, .fat-distribution .ts-hang {
  position: relative;
}
.fat-distribution .at-hang .hover-zones, .fat-distribution .ts-hang .hover-zones {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fat-distribution .at-hang .hover-zones > div:not(.selected), .fat-distribution .ts-hang .hover-zones > div:not(.selected) {
  cursor: pointer;
}
.fat-distribution .at-hang .hover-zones > div:before, .fat-distribution .ts-hang .hover-zones > div:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
}
.fat-distribution .at-hang .hover-zones > div.selected:before, .fat-distribution .ts-hang .hover-zones > div.selected:before {
  opacity: 0.5;
}
.fat-distribution .at-hang .hover-zones > div:nth-of-type(1) {
  flex: 1.2;
}
.fat-distribution .at-hang .hover-zones > div:nth-of-type(1).selected:before, .fat-distribution .at-hang .hover-zones > div:nth-of-type(1):hover:before {
  background: url("/images/ui/at-top-hover.svg");
}
.fat-distribution .at-hang .hover-zones > div:nth-of-type(2) {
  flex: 0.5;
}
.fat-distribution .at-hang .hover-zones > div:nth-of-type(2).selected:before, .fat-distribution .at-hang .hover-zones > div:nth-of-type(2):hover:before {
  background: url("/images/ui/at-mid-hover.svg");
}
.fat-distribution .at-hang .hover-zones > div:nth-of-type(3) {
  flex: 1;
}
.fat-distribution .at-hang .hover-zones > div:nth-of-type(3).selected:before, .fat-distribution .at-hang .hover-zones > div:nth-of-type(3):hover:before {
  background: url("/images/ui/at-bottom-hover.svg");
}
.fat-distribution .ts-hang .hover-zones > div:nth-of-type(1) {
  flex: 0.9;
}
.fat-distribution .ts-hang .hover-zones > div:nth-of-type(1):hover:before {
  background: url("/images/ui/ts-top-hover.svg");
}
.fat-distribution .ts-hang .hover-zones > div:nth-of-type(2) {
  flex: 1;
}
.fat-distribution .ts-hang .hover-zones > div:nth-of-type(2):hover:before {
  background: url("/images/ui/ts-bottom-hover.svg");
}
.fat-distribution .view-zone {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  block-size: 788px;
  width: 100%;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.fat-distribution .view-zone .view-zone-image {
  block-size: 100%;
}
.fat-distribution .view-zone .view-zone-image img {
  max-block-size: 100%;
  transform: scale(1);
}
.fat-distribution .view-zone.zoomed img {
  z-index: 98;
  position: absolute;
  max-block-size: inherit;
  max-inline-size: inherit;
}
.fat-distribution .view-zone.zoomed img.top {
  transform: scale(1.4);
}
.fat-distribution .view-zone.zoomed img.mid {
  transform: scale(1.896);
}
.fat-distribution .view-zone.zoomed img.bottom {
  transform: scale(2.1);
}
.fat-distribution .view-zone .view-zone-buttons {
  z-index: 999;
  position: absolute;
  top: 0.8rem;
  left: 1rem;
}
.fat-distribution .swatch-container .rotatable {
  transform-origin: 0% 0%;
}
.fat-distribution .swatch-container,
.fat-distribution .square-swatch-container {
  position: absolute;
  z-index: 998;
}
.fat-distribution .ruler {
  width: 747px;
}
.fat-distribution .square {
  background: rgba(255, 255, 255, 0.4);
  width: 373px;
  height: 373px;
  cursor: move;
  color: var(--cool-6);
  font-weight: bold;
}
.fat-distribution .ui-rotatable-handle {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  cursor: e-resize;
}
.fat-distribution .ui-draggable-handle {
  cursor: move;
}
.fat-distribution .answers {
  background: var(--surface-1);
}
.fat-distribution .answers table td:not(:first-of-type) {
  text-align: center;
}

.hump-height .activity-container {
  position: relative;
  overflow: inherit;
}
.hump-height .reference {
  position: absolute;
  top: 427px;
  left: 588px;
}
.hump-height .reference .swatch-container .rotatable {
  transform-origin: 0% 0%;
}
.hump-height .reference .ruler {
  width: 683px;
}
.hump-height .reference-arrows {
  height: 100px;
  position: relative;
}
.hump-height .reference-arrows i {
  position: absolute;
  font-size: 2.5rem;
}
.hump-height .reference-arrows i:nth-of-type(1) {
  color: var(--brand);
  left: 50px;
  top: 24px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
}
.hump-height .ui-rotatable-handle {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  cursor: e-resize;
}
.hump-height .ui-draggable-handle {
  cursor: move;
}
.hump-height .sample {
  overflow: hidden;
  height: 790px;
}
.hump-height .reference-container {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.hump-height .guide-line {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  border-left: 3px solid rgba(0, 0, 0, 0.7);
}
.hump-height .guide-line .handle {
  z-index: 9899;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.25rem 0.5rem;
  color: var(--brand-3);
  background: var(--cool-1);
  border-top-right-radius: var(--theme-radius);
  font-weight: bold;
  cursor: e-resize;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.hump-height .guide-line .handle:hover {
  opacity: 1;
}

.theory-exam .activity-container {
  min-height: 800px;
  margin-inline: 8rem;
}
.theory-exam .activity-container > div {
  transition: var(--transition);
}
.theory-exam .question-container .question {
  font-size: var(--font-size-4);
  color: var(--brand-3);
}
.theory-exam .answers-container input.option[type=file]::-webkit-file-upload-button {
  background: var(--cool-4);
  color: var(--text-1);
}
.theory-exam .answers-container .option.btn, .theory-exam .answers-container input.option[type=file]::file-selector-button {
  background: var(--cool-4);
  color: var(--text-1);
}
.theory-exam .answers-container input.option[type=file]:hover::-webkit-file-upload-button {
  color: var(--text-1) !important;
  background: var(--brand-4) !important;
}
.theory-exam .answers-container .option.btn:hover, .theory-exam .answers-container input.option[type=file]:hover::file-selector-button {
  color: var(--text-1) !important;
  background: var(--brand-4) !important;
}
.theory-exam .answers-container input.option.active[type=file]::-webkit-file-upload-button {
  color: var(--text-1) !important;
  background: var(--brand) !important;
}
.theory-exam .answers-container .option.btn.active, .theory-exam .answers-container input.option.active[type=file]::file-selector-button {
  color: var(--text-1) !important;
  background: var(--brand) !important;
}
.theory-exam .given-answer {
  padding-inline: var(--size-2);
  padding-block: var(--size-1);
  background-color: var(--surface-3);
  color: var(--text-1);
  border-radius: var(--theme-radius);
  border: var(--border-size-2) solid transparent;
  border-left: 4px solid var(--brand);
}

.report .pass {
  color: var(--green-4);
}
.report .c1 {
  color: var(--yellow-4);
}
.report .c23 {
  color: var(--orange-4);
}
.report .fail {
  color: var(--red-4);
}
.report .correct {
  color: var(--green-4);
}
.report .incorrect {
  color: var(--red-4);
}
.report .graph-results {
  font-weight: bold;
}
.report .graph-results .sideways {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  transform: rotate(180deg);
  flex: 0;
}
.report .graph-results .graph-bar {
  background: rgba(var(--theme-contrast-value), 0.05);
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cool-1);
}
.report .graph-results .graph-bar > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1.6rem;
}
.report .graph-results .graph-bar > div:first-child {
  background: rgba(var(--theme-contrast-value), 0.05);
  border-bottom: 2px solid var(--cool-9);
}
.report .graph-results .pass {
  background: var(--green-1);
}
.report .graph-results .c1 {
  background: var(--yellow-1);
}
.report .graph-results .c23 {
  background: var(--orange-1);
}
.report .graph-results .fail {
  background: var(--red-1);
}
.report .graph-results .correct {
  background: var(--green-1);
}
.report .graph-results .incorrect {
  background: var(--red-1);
}

html:has(.activity-drag-container) {
  background: #2c2c2c;
}

.btn-list.tests-list .btn-list-btn {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0.5rem;
}
.btn-list.tests-list .btn-list-btn div {
  transition: var(--transition);
}
.btn-list.tests-list .btn-list-btn div:nth-child(2), .btn-list.tests-list .btn-list-btn div:nth-child(3) {
  font-size: var(--font-size-0);
}
.btn-list.tests-list .btn-list-btn div:nth-child(2) {
  flex: 2;
}
.btn-list.tests-list .btn-list-btn.lapsed div:nth-child(2), .btn-list.tests-list .btn-list-btn.lapsed div:nth-child(3) {
  color: var(--orange-5);
}
.btn-list.tests-list .btn-list-btn:hover div:nth-child(2), .btn-list.tests-list .btn-list-btn:hover div:nth-child(3) {
  font-size: var(--font-size-1);
}
.btn-list.tests-list .btn-list-btn.selected div:nth-child(2), .btn-list.tests-list .btn-list-btn.selected div:nth-child(3) {
  font-size: var(--font-size-1);
}

.test-type-select {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  gap: 0.5rem;
}
.test-type-select .thumbnails {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.test-type-select .trainee {
  background: var(--surface-3);
  width: 100%;
}
.test-type-select .trainee .progress {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.test-type-select .trainee .progress .progress-bar {
  flex: 1;
  display: flex;
  flex-direction: row;
}
.test-type-select .trainee .progress .progress-bar .progress-step {
  flex: 1;
  min-width: 2rem;
  height: 1.5rem;
  font-size: 0.6rem;
  font-weight: bold;
  color: var(--text-5);
  background: var(--surface-5);
  border: 2px solid var(--text-5);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.test-type-select .trainee .progress .progress-bar .progress-step.passed {
  color: var(--green-5);
  background: var(--green-3);
  border: 2px solid var(--green-3);
}
.test-type-select .trainee .progress .progress-bar .progress-step.failed {
  color: var(--red-5);
  background: var(--red-3);
  border: 2px solid var(--red-3);
}
.test-type-select .trainee .progress .progress-bar .progress-step:not(:first-child) {
  border-left: none;
}
.test-type-select .trainee .progress .progress-bar .progress-step:first-child {
  border-top-left-radius: var(--theme-radius);
  border-bottom-left-radius: var(--theme-radius);
}
.test-type-select .trainee .progress .progress-bar .progress-step:last-child {
  border-top-right-radius: var(--theme-radius);
  border-bottom-right-radius: var(--theme-radius);
}

.thumbnails img {
  overflow: hidden;
  height: auto;
  border-radius: 4px;
  margin: 15px;
}

.activity-container {
  position: relative;
}
.activity-container .reference .rotatable {
  position: absolute;
}

img.torch {
  position: absolute;
  left: -2880px;
  top: -1420px;
  opacity: 0.7;
  max-inline-size: initial;
  transform: scale(1.5);
}

.ruler,
.sample img {
  max-inline-size: inherit;
}

.reference {
  z-index: 1;
}

.ruler-controls,
.controls > *,
.answers > * > *,
.question > h4 > * {
  z-index: 99;
}

.flipped {
  transform: scaleX(-1);
}

.flipped-ruler .ruler {
  transform: rotate(180deg);
}

.correct-answer {
  padding-block: 0.25rem;
  padding-inline: 1rem;
  border-radius: var(--theme-radius);
}

.practice-report {
  border-radius: var(--theme-radius);
  line-height: var(--font-lineheight-1);
  font-weight: bold;
  padding-inline: var(--size-2);
  padding-block: var(--size-2);
  box-shadow: var(--shadow-1);
}
.practice-report.pass {
  background: var(--green-2);
}
.practice-report.c1 {
  background: var(--yellow-2);
}
.practice-report.c23 {
  background: var(--orange-2);
}
.practice-report.fail {
  background: var(--red-2);
}
.practice-report.correct {
  background: var(--green-2);
}
.practice-report.incorrect {
  background: var(--red-2);
}

.outline-correct {
  outline: var(--green-3) solid 3px;
}

.outline-incorrect {
  outline: var(--red-3) solid 3px;
}

.confirm-button {
  min-inline-size: 170px;
}
.confirm-button.submitted {
  transition: all 0s;
  font-size: 0;
}
.confirm-button.submitted:before {
  content: "Sending...";
  font-size: 1rem;
}

.border-top-primary {
  border-top: 2px solid var(--brand) !important;
}

.oscap-key div {
  padding: var(--size-1) var(--size-3);
}
.oscap-key div:last-of-type {
  background: var(--surface-2);
}

.status-calendar {
  display: flex;
  justify-content: center;
}
.status-calendar tbody td:first-child {
  white-space: nowrap;
}

.correlation-history {
  display: flex;
  justify-content: center;
  min-block-size: 80px;
}

::-moz-selection {
  background: #f7a494;
}

::selection {
  background: #f7a494;
}

.full-width {
  width: 100%;
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  padding-inline: var(--size-4);
  padding-block: var(--size-1);
  transition: all 0.15s ease-in-out;
  border-radius: var(--theme-radius);
  background: var(--surface-1);
  min-height: var(--form-element-size);
}

[class^=icon-]:before, [class*=" icon-"]:before {
  width: initial;
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.5);
  text-shadow: none;
}

::selection {
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.5);
  text-shadow: none;
}

.theme-switcher {
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
  display: flex;
  border-radius: var(--theme-radius);
  cursor: pointer;
}
.theme-switcher .theme-color {
  flex: 1;
  height: 1rem;
  transition: all 0.25s;
}
.theme-switcher .theme-color:hover {
  transform: scale(1.5);
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  margin-right: 0;
  margin-left: 0;
}

.help-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: top right;
}
.help-button button {
  border-start-end-radius: 0;
  border-start-start-radius: 0;
}/*# sourceMappingURL=app.css.map */