.quiz-page {
  --green: #0c9c54;
  --green-d: #0a7e43;
  --lime: #7ed957;
  --coral: #eb5c24;
  --coral-d: #d0470f;
  --pink: #f3bad0;
  --pink-l: #fbe6ef;
  --accent: #eb5c24;
  --ink: #23202a;
  --muted: #8a7f8a;
  --line: #f0e5ec;
  --bg: #f7f4f6;
  --card: #fff;
  --shadow: 0 18px 50px -20px #eb5c2447;
  --radius: 24px;
  color: var(--ink);
  background: radial-gradient(1100px 560px at 92% -12%, #ffd9c6 0%, transparent 55%), radial-gradient(900px 520px at -12% 8%, #fbe6ef 0%, transparent 50%), radial-gradient(800px 500px at 50% 118%, #ffe3d3 0%, transparent 55%), var(--bg);
  -webkit-font-smoothing: antialiased;
  flex-direction: column;
  min-height: 100vh;
  font-family: Nunito, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  display: flex;
}

.quiz-page *, .quiz-page :before, .quiz-page :after {
  box-sizing: border-box;
}

.quiz-page .wrap {
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 18px 40px;
  display: flex;
}

.quiz-page .brand {
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  display: flex;
}

.quiz-page .logo {
  letter-spacing: -.5px;
  color: var(--ink);
  align-items: center;
  gap: 4px;
  font-size: 26px;
  font-weight: 900;
  display: inline-flex;
}

.quiz-page .logo .leaf {
  color: var(--green);
  font-size: 16px;
  transform: translateY(-6px);
}

.quiz-page .badge {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 6px 16px -6px var(--coral);
  border-radius: 999px;
  margin-left: auto;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
}

.quiz-page .hero {
  margin-bottom: 16px;
}

.quiz-page .hero .eyebrow {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--pink-l);
  border-radius: 999px;
  margin-bottom: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  display: inline-block;
}

.quiz-page .hero h1 {
  letter-spacing: -.6px;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.15;
}

.quiz-page .hero h1 span {
  color: var(--coral);
}

.quiz-page .hero p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.quiz-page .hero p b {
  color: var(--ink);
}

.quiz-page .trust {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  display: flex;
}

.quiz-page .trust b {
  color: var(--green-d);
  background: #eafaf0;
  border: 1px solid #cdeed9;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  font-size: 12.5px;
  font-weight: 800;
  display: flex;
}

.quiz-page .progress {
  margin: 14px 0 18px;
}

.quiz-page .bar {
  background: #e6ede8;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.quiz-page .bar > i {
  background: linear-gradient(90deg, var(--lime), var(--green));
  border-radius: 999px;
  width: 0;
  height: 100%;
  transition: width .35s cubic-bezier(.4, 0, .2, 1);
  display: block;
}

.quiz-page .steps-label {
  color: var(--muted);
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  display: flex;
}

.quiz-page .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
}

.quiz-page .step {
  animation: .4s quiz-fade;
}

@keyframes quiz-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.quiz-page .q-num {
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 800;
}

.quiz-page .q-title {
  margin: 6px 0 4px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

.quiz-page .q-hint {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 14px;
}

.quiz-page .opts {
  gap: 12px;
  display: grid;
}

.quiz-page .opts.two {
  grid-template-columns: 1fr 1fr;
}

.quiz-page .opt {
  border: 2px solid var(--line);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  transition: all .18s;
  display: flex;
}

.quiz-page .opt:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}

.quiz-page .opt.sel {
  border-color: var(--green);
  background: #f2fbf5;
  box-shadow: 0 0 0 3px #d8f2e2;
}

.quiz-page .opt .ico {
  flex: none;
  font-size: 26px;
  line-height: 1;
}

.quiz-page .opt .txt b {
  font-size: 16px;
  display: block;
}

.quiz-page .opt .txt small {
  color: var(--muted);
  font-size: 13px;
}

.quiz-page .slider-row {
  margin-bottom: 18px;
}

.quiz-page .slider-row .lab {
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  display: flex;
}

.quiz-page .slider-row .lab span {
  color: var(--muted);
  font-size: 15px;
}

.quiz-page .slider-row .val {
  color: var(--green-d);
  font-size: 26px;
  font-weight: 800;
}

.quiz-page .slider-row .val small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.quiz-page input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, var(--green) var(--p, 50%), #e6ede8 var(--p, 50%));
  border-radius: 999px;
  outline: none;
  width: 100%;
  height: 8px;
}

.quiz-page input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 5px solid var(--green);
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  box-shadow: 0 3px 8px #0000002e;
}

.quiz-page input[type="range"]::-moz-range-thumb {
  border: 5px solid var(--green);
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
}

.quiz-page .nav {
  gap: 12px;
  margin-top: 24px;
  display: flex;
}

.quiz-page .btn {
  cursor: pointer;
  border: none;
  border-radius: 14px;
  padding: 15px 22px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  transition: all .18s;
}

.quiz-page .btn-primary {
  background: linear-gradient(120deg, var(--coral), var(--coral-d));
  color: #fff;
  box-shadow: 0 12px 26px -10px var(--coral);
  flex: 1;
}

.quiz-page .btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.quiz-page .btn-primary:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
}

.quiz-page .btn-ghost {
  color: var(--muted);
  background: #eef3ef;
}

.quiz-page .btn-ghost:hover {
  background: #e3ebe5;
}

.quiz-page .field {
  margin-bottom: 14px;
}

.quiz-page .field label {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.quiz-page .field input {
  border: 2px solid var(--line);
  background: #fff;
  border-radius: 14px;
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 16px;
  transition: all .15s;
}

.quiz-page .field input:focus {
  border-color: var(--green);
  outline: none;
  box-shadow: 0 0 0 3px #d8f2e2;
}

.quiz-page .field .err {
  color: #d64545;
  margin-top: 4px;
  font-size: 12px;
  display: none;
}

.quiz-page .field.invalid input {
  border-color: #d64545;
}

.quiz-page .field.invalid .err {
  display: block;
}

.quiz-page .result-kcal {
  text-align: center;
  padding: 8px 0 6px;
}

.quiz-page .result-kcal .big {
  color: var(--green-d);
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.quiz-page .result-kcal .big small {
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}

.quiz-page .result-kcal .cap {
  color: var(--muted);
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.45;
}

.quiz-page .result-kcal .cap b {
  color: var(--ink);
}

.quiz-page .metrics {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin: 18px 0;
  display: grid;
}

.quiz-page .metric {
  background: var(--pink-l);
  text-align: center;
  border: 1px solid #f6d6e3;
  border-radius: 16px;
  padding: 12px;
}

.quiz-page .metric b {
  color: var(--coral-d);
  font-size: 20px;
  font-weight: 900;
  display: block;
}

.quiz-page .metric span {
  color: var(--muted);
  font-size: 12px;
}

.quiz-page .note {
  color: var(--green-d);
  background: #eef8f1;
  border: 1px solid #d3ecdc;
  border-radius: 14px;
  margin: 4px 0 6px;
  padding: 13px 15px;
  font-size: 14px;
  line-height: 1.45;
}

.quiz-page .note b {
  color: var(--green-d);
}

.quiz-page .reco {
  border: 2px solid var(--green);
  border-radius: 18px;
  margin: 16px 0;
  overflow: hidden;
}

.quiz-page .reco .top {
  background: linear-gradient(120deg, var(--green), var(--green-d));
  color: #fff;
  padding: 16px 18px;
}

.quiz-page .reco .top .tag {
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .85;
  font-size: 12px;
}

.quiz-page .reco .top h3 {
  margin-top: 2px;
  font-size: 24px;
}

.quiz-page .reco .top p {
  opacity: .9;
  margin-top: 2px;
  font-size: 13px;
}

.quiz-page .reco .body {
  background: #fff;
  padding: 16px 18px;
}

.quiz-page .reco .feat {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  display: flex;
}

.quiz-page .reco .feat span {
  color: var(--green-d);
  background: #eef8f1;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
}

.quiz-page .price {
  align-items: baseline;
  gap: 10px;
  display: flex;
}

.quiz-page .price .now {
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
}

.quiz-page .price .old {
  color: var(--muted);
  font-size: 17px;
  text-decoration: line-through;
}

.quiz-page .price .per {
  color: var(--muted);
  font-size: 14px;
}

.quiz-page .promo {
  background: var(--pink-l);
  border: 1.5px dashed var(--coral);
  border-radius: 14px;
  margin-top: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.quiz-page .promo b {
  color: var(--coral-d);
}

.quiz-page .disclaimer {
  color: var(--muted);
  margin-top: 16px;
  font-size: 11px;
  line-height: 1.5;
}

.quiz-page .thanks {
  text-align: center;
  padding: 20px 0;
}

.quiz-page .thanks .em {
  font-size: 56px;
}

.quiz-page .thanks h2 {
  margin: 10px 0 6px;
  font-size: 24px;
}

.quiz-page .thanks p {
  color: var(--muted);
}

.quiz-page .code {
  color: var(--lime);
  letter-spacing: 2px;
  background: #16231c;
  border-radius: 12px;
  margin-top: 12px;
  padding: 10px 18px;
  font-size: 20px;
  font-weight: 800;
  display: inline-block;
}

.quiz-page .foot {
  text-align: center;
  color: var(--muted);
  margin-top: 22px;
  font-size: 12px;
}

@media (max-width: 480px) {
  .quiz-page .hero h1 {
    font-size: 23px;
  }

  .quiz-page .result-kcal .big {
    font-size: 48px;
  }
}

@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after {
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
    }

    ::backdrop {
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --color-red-600: #e40014;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-400: #90a1b9;
    --color-slate-500: #62748e;
    --color-slate-600: #45556c;
    --color-slate-700: #314158;
    --color-slate-800: #1d293d;
    --color-slate-900: #0f172b;
    --color-white: #fff;
    --spacing: .25rem;
    --container-xl: 36rem;
    --container-2xl: 42rem;
    --text-xs: .75rem;
    --text-xs--line-height: calc(1 / .75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-tight: -.025em;
    --tracking-wider: .05em;
    --leading-relaxed: 1.625;
    --radius-md: .375rem;
    --radius-lg: .5rem;
    --radius-xl: .75rem;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }

  @supports (color: color(display-p3 0 0 0)) {
    :root, :host {
      --color-red-600: color(display-p3 .830323 .140383 .133196);
      --color-slate-50: color(display-p3 .974377 .979815 .986207);
      --color-slate-100: color(display-p3 .947345 .959969 .97483);
      --color-slate-200: color(display-p3 .890322 .909405 .939294);
      --color-slate-400: color(display-p3 .577446 .629622 .716602);
      --color-slate-500: color(display-p3 .397645 .452653 .547642);
      --color-slate-600: color(display-p3 .283418 .332214 .416355);
      --color-slate-700: color(display-p3 .205992 .253487 .336039);
      --color-slate-800: color(display-p3 .121994 .158688 .232363);
      --color-slate-900: color(display-p3 .0639692 .0891152 .163036);
    }
  }

  @supports (color: lab(0% 0 0)) {
    :root, :host {
      --color-red-600: lab(48.4493% 77.4328 61.5452);
      --color-slate-50: lab(98.1434% -.369519 -1.05966);
      --color-slate-100: lab(96.286% -.852436 -2.46847);
      --color-slate-200: lab(91.7353% -.998765 -4.76968);
      --color-slate-400: lab(65.5349% -2.25151 -14.5072);
      --color-slate-500: lab(48.0876% -2.03595 -16.5814);
      --color-slate-600: lab(35.5623% -1.74978 -15.4316);
      --color-slate-700: lab(26.9569% -1.47016 -15.6993);
      --color-slate-800: lab(16.132% -.318035 -14.6672);
      --color-slate-900: lab(7.78673% 1.82345 -15.0537);
    }
  }
}

@layer base {
  *, :after, :before {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::-webkit-file-upload-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring:where(:not(iframe)) {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

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

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::-webkit-file-upload-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:-webkit-any([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:-moz-any([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:-webkit-any([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  :where(select:-moz-any([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::-webkit-file-upload-button {
    margin-inline-end: 4px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
  }

  input:where([type="button"], [type="reset"], [type="submit"]) {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
  }

  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
  }

  ::file-selector-button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .fixed {
    position: fixed;
  }

  .mx-auto {
    margin-inline-start: auto;
    margin-inline-end: auto;
  }

  .mt-1 {
    margin-top: var(--spacing);
  }

  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }

  .block {
    display: block;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline-flex {
    display: inline-flex;
  }

  .h-8 {
    height: calc(var(--spacing) * 8);
  }

  .h-10 {
    height: calc(var(--spacing) * 10);
  }

  .h-12 {
    height: calc(var(--spacing) * 12);
  }

  .h-24 {
    height: calc(var(--spacing) * 24);
  }

  .min-h-screen {
    min-height: 100vh;
  }

  .w-full {
    width: 100%;
  }

  .max-w-2xl {
    max-width: var(--container-2xl);
  }

  .max-w-xl {
    max-width: var(--container-xl);
  }

  .resize-none {
    resize: none;
  }

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

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

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

  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }

  :where(.space-y-3 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-6 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-8 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
  }

  .rounded-lg {
    border-radius: var(--radius-lg);
  }

  .rounded-md {
    border-radius: var(--radius-md);
  }

  .rounded-xl {
    border-radius: var(--radius-xl);
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-slate-200 {
    border-color: var(--color-slate-200);
  }

  .bg-slate-50 {
    background-color: var(--color-slate-50);
  }

  .bg-slate-100 {
    background-color: var(--color-slate-100);
  }

  .bg-slate-900 {
    background-color: var(--color-slate-900);
  }

  .bg-transparent {
    background-color: #0000;
  }

  .bg-white {
    background-color: var(--color-white);
  }

  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }

  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }

  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }

  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }

  .py-10 {
    padding-block: calc(var(--spacing) * 10);
  }

  .py-12 {
    padding-block: calc(var(--spacing) * 12);
  }

  .pt-6 {
    padding-top: calc(var(--spacing) * 6);
  }

  .pb-2 {
    padding-bottom: calc(var(--spacing) * 2);
  }

  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }

  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }

  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }

  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }

  .leading-relaxed {
    --tw-leading: var(--leading-relaxed);
    line-height: var(--leading-relaxed);
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }

  .tracking-tight {
    --tw-tracking: var(--tracking-tight);
    letter-spacing: var(--tracking-tight);
  }

  .tracking-wider {
    --tw-tracking: var(--tracking-wider);
    letter-spacing: var(--tracking-wider);
  }

  .whitespace-pre-wrap {
    white-space: pre-wrap;
  }

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

  .text-slate-400 {
    color: var(--color-slate-400);
  }

  .text-slate-500 {
    color: var(--color-slate-500);
  }

  .text-slate-600 {
    color: var(--color-slate-600);
  }

  .text-slate-700 {
    color: var(--color-slate-700);
  }

  .text-slate-900 {
    color: var(--color-slate-900);
  }

  .text-white {
    color: var(--color-white);
  }

  .uppercase {
    text-transform: uppercase;
  }

  .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  @media (hover: hover) {
    .hover\:bg-slate-100:hover {
      background-color: var(--color-slate-100);
    }

    .hover\:bg-slate-200:hover {
      background-color: var(--color-slate-200);
    }

    .hover\:bg-slate-800:hover {
      background-color: var(--color-slate-800);
    }
  }

  .focus\:ring-2:focus {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus\:ring-slate-400:focus {
    --tw-ring-color: var(--color-slate-400);
  }

  .focus\:outline-none:focus {
    --tw-outline-style: none;
    outline-style: none;
  }

  .focus-visible\:ring-2:focus-visible {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus-visible\:ring-slate-400:focus-visible {
    --tw-ring-color: var(--color-slate-400);
  }

  .focus-visible\:outline-none:focus-visible {
    --tw-outline-style: none;
    outline-style: none;
  }

  .disabled\:pointer-events-none:disabled {
    pointer-events: none;
  }

  .disabled\:opacity-50:disabled {
    opacity: .5;
  }

  @media (min-width: 40rem) {
    .sm\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
}

@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-leading {
  syntax: "*";
  inherits: false
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false
}

@property --tw-tracking {
  syntax: "*";
  inherits: false
}

@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}

@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}

@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

