/*
  These variables should mirror the configuration in tailwind-rebrand.config.cjs.
  They allow us to reference our color palette in places where Tailwind's classes
  can't be used.
*/


:root {
  --font-ui:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-heading:
    "KitHeadlineBoldBeta", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --black: #000000;
  --gray-50: #f7f7f7;
  --gray-100: #f0f0f0;
  --gray-200: #e3e3e3;
  --gray-300: #d4d4d4;
  --gray-400: #c4c4c4;
  --gray-500: #b8b8b8;
  --gray-600: #919191;
  --gray-700: #6e6e6e;
  --gray-800: #3d3d3d;
  --gray-900: #1e1e1e;
  --gray-50-rgb: 247, 247, 247;
  --gray-100-rgb: 240, 240, 240;
  --gray-200-rgb: 227, 227, 227;
  --gray-300-rgb: 212, 212, 212;
  --gray-400-rgb: 196, 196, 196;
  --gray-500-rgb: 184, 184, 184;
  --gray-600-rgb: 145, 145, 145;
  --gray-700-rgb: 110, 110, 110;
  --gray-800-rgb: 61, 61, 61;
  --gray-900-rgb: 30, 30, 30;
  --red-50: #fff2f0;
  --red-100: #ffdcd6;
  --red-200: #ffb9ad;
  --red-300: #ff8873;
  --red-400: #ff7259;
  --red-500: #fc5c3f;
  --red-600: #e05138;
  --red-700: #a63521;
  --red-800: #821f0d;
  --red-900: #5e0e00;
  --red-50-rgb: 255, 242, 240;
  --red-100-rgb: 255, 220, 214;
  --red-200-rgb: 255, 185, 173;
  --red-300-rgb: 255, 136, 115;
  --red-400-rgb: 255, 114, 89;
  --red-500-rgb: 252, 92, 63;
  --red-600-rgb: 224, 81, 56;
  --red-700-rgb: 166, 53, 33;
  --red-800-rgb: 130, 31, 13;
  --red-900-rgb: 94, 14, 0;
  --blue-50: #f0f9ff;
  --blue-100: #bce1fa;
  --blue-200: #a2d1f1;
  --blue-300: #81c5f3;
  --blue-400: #63bbf9;
  --blue-500: #44b1ff;
  --blue-600: #3197e0;
  --blue-700: #2b7ab1;
  --blue-800: #144264;
  --blue-900: #0a2940;
  --blue-50-rgb: 240, 249, 255;
  --blue-100-rgb: 188, 225, 250;
  --blue-200-rgb: 162, 209, 241;
  --blue-300-rgb: 129, 197, 243;
  --blue-400-rgb: 99, 187, 249;
  --blue-500-rgb: 68, 177, 255;
  --blue-600-rgb: 49, 151, 224;
  --blue-700-rgb: 43, 122, 177;
  --blue-800-rgb: 20, 66, 100;
  --blue-900-rgb: 10, 41, 64;
  --green-50: #f0fff3;
  --green-100: #d0f5d9;
  --green-200: #b9e9c5;
  --green-300: #94e3a9;
  --green-400: #83de9e;
  --green-500: #65dc8d;
  --green-600: #4ec776;
  --green-700: #27a14f;
  --green-800: #157033;
  --green-900: #083818;
  --green-50-rgb: 240, 255, 243, 1;
  --green-100-rgb: 208, 245, 217, 1;
  --green-200-rgb: 185, 233, 197, 1;
  --green-300-rgb: 148, 227, 169, 1;
  --green-400-rgb: 131, 222, 158, 1;
  --green-500-rgb: 101, 220, 141, 1;
  --green-600-rgb: 78, 199, 118, 1;
  --green-700-rgb: 39, 161, 79, 1;
  --green-800-rgb: 21, 112, 51, 1;
  --green-900-rgb: 8, 56, 24, 1;
  --yellow-50: #fff6f0;
  --yellow-100: #ffe7d6;
  --yellow-200: #ffd0ad;
  --yellow-300: #ff9f6b;
  --yellow-400: #ff8b59;
  --yellow-500: #ff7647;
  --yellow-600: #e56a40;
  --yellow-700: #a65821;
  --yellow-800: #82450d;
  --yellow-900: #5e2d00;
  --yellow-50-rgb: 255, 246, 240, 1;
  --yellow-100-rgb: 255, 231, 214, 1;
  --yellow-200-rgb: 255, 208, 173, 1;
  --yellow-300-rgb: 255, 159, 107, 1;
  --yellow-400-rgb: 255, 139, 89, 1;
  --yellow-500-rgb: 255, 118, 71, 1;
  --yellow-600-rgb: 229, 106, 64, 1;
  --yellow-700-rgb: 166, 88, 33, 1;
  --yellow-800-rgb: 130, 69, 13, 1;
  --yellow-900-rgb: 94, 45, 0, 1;
  --light-blue: #e7fafa;
  --warm-white-100: #f9f7f4;
  --warm-white-200: #f2efe9;
  --warm-white-300: #e9e6dc;
  --warm-white-100-rgb: 249, 247, 244, 1;
  --warm-white-200-rgb: 242, 239, 233, 1;
  --warm-white-300-rgb: 233, 230, 220, 1;
  --system-red-50: #fff2f0;
  --system-red-100: #ffdcd6;
  --system-red-200: #ffb9ad;
  --system-red-300: #ff8873;
  --system-red-400: #ff7259;
  --system-red-500: #fc5c3f;
  --system-red-600: #e05138;
  --system-red-700: #a63521;
  --system-red-800: #821f0d;
  --system-red-900: #5e0e00;
  --system-red-50-rgb: 255, 242, 240;
  --system-red-100-rgb: 255, 220, 214;
  --system-red-200-rgb: 255, 185, 173;
  --system-red-300-rgb: 255, 136, 115;
  --system-red-400-rgb: 255, 114, 89;
  --system-red-500-rgb: 252, 92, 63;
  --system-red-600-rgb: 224, 81, 56;
  --system-red-700-rgb: 166, 53, 33;
  --system-red-800-rgb: 130, 31, 13;
  --system-red-900-rgb: 94, 14, 0;
  --system-yellow-50: #fff6f0;
  --system-yellow-100: #ffe7d6;
  --system-yellow-200: #ffd0ad;
  --system-yellow-300: #ff9f6b;
  --system-yellow-400: #ff8b59;
  --system-yellow-500: #ff7647;
  --system-yellow-600: #e56a40;
  --system-yellow-700: #a65821;
  --system-yellow-800: #82450d;
  --system-yellow-900: #5e2d00;
  --system-yellow-50-rgb: 255, 246, 240, 1;
  --system-yellow-100-rgb: 255, 231, 214, 1;
  --system-yellow-200-rgb: 255, 208, 173, 1;
  --system-yellow-300-rgb: 255, 159, 107, 1;
  --system-yellow-400-rgb: 255, 139, 89, 1;
  --system-yellow-500-rgb: 255, 118, 71, 1;
  --system-yellow-600-rgb: 229, 106, 64, 1;
  --system-yellow-700-rgb: 166, 88, 33, 1;
  --system-yellow-800-rgb: 130, 69, 13, 1;
  --system-yellow-900-rgb: 94, 45, 0, 1;
  /* primary-* variables are temporary until after the rebrand. */
  --primary-50: #f0f9ff;
  --primary-100: #bce1fa;
  --primary-200: #a2d1f1;
  --primary-300: #81c5f3;
  --primary-400: #63bbf9;
  --primary-500: #44b1ff;
  --primary-600: #3197e0;
  --primary-700: #2b7ab1;
  --primary-800: #144264;
  --primary-900: #0a2940;
  --primary-50-rgb: 240, 249, 255, 1;
  --primary-100-rgb: 188, 225, 250, 1;
  --primary-200-rgb: 162, 209, 241, 1;
  --primary-300-rgb: 129, 197, 243, 1;
  --primary-400-rgb: 99, 187, 249, 1;
  --primary-500-rgb: 68, 177, 255, 1;
  --primary-600-rgb: 49, 151, 224, 1;
  --primary-700-rgb: 43, 122, 177, 1;
  --primary-800-rgb: 20, 66, 100, 1;
  --primary-900-rgb: 10, 41, 64, 1;
}

/* End variables */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #d4d4d4; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #a0aec0;
}

button,
[role="button"] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

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

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: Roboto Mono, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

.space-y-1 > :not(template) ~ :not(template) {
  --space-y-reverse:
    0;
  margin-top:
    calc(0.25rem * calc(1 - var(--space-y-reverse)));
  margin-bottom:
    calc(0.25rem * var(--space-y-reverse));
}

.space-x-1 > :not(template) ~ :not(template) {
  --space-x-reverse:
    0;
  margin-right:
    calc(0.25rem * var(--space-x-reverse));
  margin-left:
    calc(0.25rem * calc(1 - var(--space-x-reverse)));
}

.space-y-2 > :not(template) ~ :not(template) {
  --space-y-reverse:
    0;
  margin-top:
    calc(0.5rem * calc(1 - var(--space-y-reverse)));
  margin-bottom:
    calc(0.5rem * var(--space-y-reverse));
}

.space-x-2 > :not(template) ~ :not(template) {
  --space-x-reverse:
    0;
  margin-right:
    calc(0.5rem * var(--space-x-reverse));
  margin-left:
    calc(0.5rem * calc(1 - var(--space-x-reverse)));
}

.space-y-3 > :not(template) ~ :not(template) {
  --space-y-reverse:
    0;
  margin-top:
    calc(0.75rem * calc(1 - var(--space-y-reverse)));
  margin-bottom:
    calc(0.75rem * var(--space-y-reverse));
}

.space-x-3 > :not(template) ~ :not(template) {
  --space-x-reverse:
    0;
  margin-right:
    calc(0.75rem * var(--space-x-reverse));
  margin-left:
    calc(0.75rem * calc(1 - var(--space-x-reverse)));
}

.space-y-4 > :not(template) ~ :not(template) {
  --space-y-reverse:
    0;
  margin-top:
    calc(1rem * calc(1 - var(--space-y-reverse)));
  margin-bottom:
    calc(1rem * var(--space-y-reverse));
}

.space-x-4 > :not(template) ~ :not(template) {
  --space-x-reverse:
    0;
  margin-right:
    calc(1rem * var(--space-x-reverse));
  margin-left:
    calc(1rem * calc(1 - var(--space-x-reverse)));
}

.space-x-6 > :not(template) ~ :not(template) {
  --space-x-reverse:
    0;
  margin-right:
    calc(1.5rem * var(--space-x-reverse));
  margin-left:
    calc(1.5rem * calc(1 - var(--space-x-reverse)));
}

.space-y-12 > :not(template) ~ :not(template) {
  --space-y-reverse:
    0;
  margin-top:
    calc(3rem * calc(1 - var(--space-y-reverse)));
  margin-bottom:
    calc(3rem * var(--space-y-reverse));
}

.space-x-12 > :not(template) ~ :not(template) {
  --space-x-reverse:
    0;
  margin-right:
    calc(3rem * var(--space-x-reverse));
  margin-left:
    calc(3rem * calc(1 - var(--space-x-reverse)));
}

.space-y-reverse > :not(template) ~ :not(template) {
  --space-y-reverse:
    1;
}

.space-x-reverse > :not(template) ~ :not(template) {
  --space-x-reverse:
    1;
}

.divide-y > :not(template) ~ :not(template) {
  --divide-y-reverse:
    0;
  border-top-width:
    calc(1px * calc(1 - var(--divide-y-reverse)));
  border-bottom-width:
    calc(1px * var(--divide-y-reverse));
}

.divide-x > :not(template) ~ :not(template) {
  --divide-x-reverse:
    0;
  border-right-width:
    calc(1px * var(--divide-x-reverse));
  border-left-width:
    calc(1px * calc(1 - var(--divide-x-reverse)));
}

.divide-y-reverse > :not(template) ~ :not(template) {
  --divide-y-reverse:
    1;
}

.divide-x-reverse > :not(template) ~ :not(template) {
  --divide-x-reverse:
    1;
}

.divide-gray-100 > :not(template) ~ :not(template) {
  --divide-opacity:
    1;
  border-color:
    #f0f0f0;
  border-color:
    rgba(240, 240, 240, var(--divide-opacity));
}

.divide-gray-200 > :not(template) ~ :not(template) {
  --divide-opacity:
    1;
  border-color:
    #e3e3e3;
  border-color:
    rgba(227, 227, 227, var(--divide-opacity));
}

.divide-gray-300 > :not(template) ~ :not(template) {
  --divide-opacity:
    1;
  border-color:
    #d4d4d4;
  border-color:
    rgba(212, 212, 212, var(--divide-opacity));
}

.divide-solid > :not(template) ~ :not(template) {
  border-style:
    solid;
}

.divide-dashed > :not(template) ~ :not(template) {
  border-style:
    dashed;
}

.divide-dotted > :not(template) ~ :not(template) {
  border-style:
    dotted;
}

.divide-double > :not(template) ~ :not(template) {
  border-style:
    double;
}

.divide-none > :not(template) ~ :not(template) {
  border-style:
    none;
}

.sr-only {
  position:
    absolute;
  width:
    1px;
  height:
    1px;
  padding:
    0;
  margin:
    -1px;
  overflow:
    hidden;
  clip:
    rect(0, 0, 0, 0);
  white-space:
    nowrap;
  border-width:
    0;
}

.not-sr-only {
  position:
    static;
  width:
    auto;
  height:
    auto;
  padding:
    0;
  margin:
    0;
  overflow:
    visible;
  clip:
    auto;
  white-space:
    normal;
}

.appearance-none {
  appearance:
    none;
}

.bg-fixed {
  background-attachment:
    fixed;
}

.bg-local {
  background-attachment:
    local;
}

.bg-scroll {
  background-attachment:
    scroll;
}

.bg-clip-border {
  background-clip:
    border-box;
}

.bg-clip-padding {
  background-clip:
    padding-box;
}

.bg-clip-content {
  background-clip:
    content-box;
}

.bg-clip-text {
  -webkit-background-clip:
    text;
          background-clip:
    text;
}

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

.bg-white {
  --bg-opacity:
    1;
  background-color:
    #ffffff;
  background-color:
    rgba(255, 255, 255, var(--bg-opacity));
}

.bg-black {
  --bg-opacity:
    1;
  background-color:
    #000000;
  background-color:
    rgba(0, 0, 0, var(--bg-opacity));
}

.bg-gray-50 {
  --bg-opacity:
    1;
  background-color:
    #f7f7f7;
  background-color:
    rgba(247, 247, 247, var(--bg-opacity));
}

.bg-gray-100 {
  --bg-opacity:
    1;
  background-color:
    #f0f0f0;
  background-color:
    rgba(240, 240, 240, var(--bg-opacity));
}

.bg-gray-200 {
  --bg-opacity:
    1;
  background-color:
    #e3e3e3;
  background-color:
    rgba(227, 227, 227, var(--bg-opacity));
}

.bg-gray-300 {
  --bg-opacity:
    1;
  background-color:
    #d4d4d4;
  background-color:
    rgba(212, 212, 212, var(--bg-opacity));
}

.bg-gray-500 {
  --bg-opacity:
    1;
  background-color:
    #b8b8b8;
  background-color:
    rgba(184, 184, 184, var(--bg-opacity));
}

.bg-gray-600 {
  --bg-opacity:
    1;
  background-color:
    #919191;
  background-color:
    rgba(145, 145, 145, var(--bg-opacity));
}

.bg-gray-700 {
  --bg-opacity:
    1;
  background-color:
    #6e6e6e;
  background-color:
    rgba(110, 110, 110, var(--bg-opacity));
}

.bg-gray-800 {
  --bg-opacity:
    1;
  background-color:
    #3d3d3d;
  background-color:
    rgba(61, 61, 61, var(--bg-opacity));
}

.bg-gray-900 {
  --bg-opacity:
    1;
  background-color:
    #1e1e1e;
  background-color:
    rgba(30, 30, 30, var(--bg-opacity));
}

.bg-red-50 {
  --bg-opacity:
    1;
  background-color:
    #FFF2F0;
  background-color:
    rgba(255, 242, 240, var(--bg-opacity));
}

.bg-red-100 {
  --bg-opacity:
    1;
  background-color:
    #FFDCD6;
  background-color:
    rgba(255, 220, 214, var(--bg-opacity));
}

.bg-red-200 {
  --bg-opacity:
    1;
  background-color:
    #FFB9AD;
  background-color:
    rgba(255, 185, 173, var(--bg-opacity));
}

.bg-red-400 {
  --bg-opacity:
    1;
  background-color:
    #FF7259;
  background-color:
    rgba(255, 114, 89, var(--bg-opacity));
}

.bg-red-500 {
  --bg-opacity:
    1;
  background-color:
    #FC5C3F;
  background-color:
    rgba(252, 92, 63, var(--bg-opacity));
}

.bg-red-700 {
  --bg-opacity:
    1;
  background-color:
    #A63521;
  background-color:
    rgba(166, 53, 33, var(--bg-opacity));
}

.bg-primary-500 {
  --bg-opacity:
    1;
  background-color:
    #44b1ff;
  background-color:
    rgba(68, 177, 255, var(--bg-opacity));
}

.bg-blue-50 {
  --bg-opacity:
    1;
  background-color:
    #f0f9ff;
  background-color:
    rgba(240, 249, 255, var(--bg-opacity));
}

.bg-blue-100 {
  --bg-opacity:
    1;
  background-color:
    #bce1fa;
  background-color:
    rgba(188, 225, 250, var(--bg-opacity));
}

.bg-blue-200 {
  --bg-opacity:
    1;
  background-color:
    #a2d1f1;
  background-color:
    rgba(162, 209, 241, var(--bg-opacity));
}

.bg-blue-300 {
  --bg-opacity:
    1;
  background-color:
    #81c5f3;
  background-color:
    rgba(129, 197, 243, var(--bg-opacity));
}

.bg-blue-400 {
  --bg-opacity:
    1;
  background-color:
    #63bbf9;
  background-color:
    rgba(99, 187, 249, var(--bg-opacity));
}

.bg-blue-500 {
  --bg-opacity:
    1;
  background-color:
    #44b1ff;
  background-color:
    rgba(68, 177, 255, var(--bg-opacity));
}

.bg-blue-600 {
  --bg-opacity:
    1;
  background-color:
    #3197e0;
  background-color:
    rgba(49, 151, 224, var(--bg-opacity));
}

.bg-blue-700 {
  --bg-opacity:
    1;
  background-color:
    #2b7ab1;
  background-color:
    rgba(43, 122, 177, var(--bg-opacity));
}

.bg-blue-800 {
  --bg-opacity:
    1;
  background-color:
    #144264;
  background-color:
    rgba(20, 66, 100, var(--bg-opacity));
}

.bg-blue-900 {
  --bg-opacity:
    1;
  background-color:
    #0a2940;
  background-color:
    rgba(10, 41, 64, var(--bg-opacity));
}

.bg-green-50 {
  --bg-opacity:
    1;
  background-color:
    #f0fff3;
  background-color:
    rgba(240, 255, 243, var(--bg-opacity));
}

.bg-green-100 {
  --bg-opacity:
    1;
  background-color:
    #d0f5d9;
  background-color:
    rgba(208, 245, 217, var(--bg-opacity));
}

.bg-green-200 {
  --bg-opacity:
    1;
  background-color:
    #b9e9c5;
  background-color:
    rgba(185, 233, 197, var(--bg-opacity));
}

.bg-green-400 {
  --bg-opacity:
    1;
  background-color:
    #83de9e;
  background-color:
    rgba(131, 222, 158, var(--bg-opacity));
}

.bg-green-500 {
  --bg-opacity:
    1;
  background-color:
    #65dc8d;
  background-color:
    rgba(101, 220, 141, var(--bg-opacity));
}

.bg-green-600 {
  --bg-opacity:
    1;
  background-color:
    #4ec776;
  background-color:
    rgba(78, 199, 118, var(--bg-opacity));
}

.bg-green-700 {
  --bg-opacity:
    1;
  background-color:
    #27a14f;
  background-color:
    rgba(39, 161, 79, var(--bg-opacity));
}

.bg-yellow-50 {
  --bg-opacity:
    1;
  background-color:
    #fff6f0;
  background-color:
    rgba(255, 246, 240, var(--bg-opacity));
}

.bg-yellow-100 {
  --bg-opacity:
    1;
  background-color:
    #ffe7d6;
  background-color:
    rgba(255, 231, 214, var(--bg-opacity));
}

.bg-yellow-200 {
  --bg-opacity:
    1;
  background-color:
    #ffd0ad;
  background-color:
    rgba(255, 208, 173, var(--bg-opacity));
}

.bg-yellow-400 {
  --bg-opacity:
    1;
  background-color:
    #ff8b59;
  background-color:
    rgba(255, 139, 89, var(--bg-opacity));
}

.bg-yellow-500 {
  --bg-opacity:
    1;
  background-color:
    #ff7647;
  background-color:
    rgba(255, 118, 71, var(--bg-opacity));
}

.bg-yellow-600 {
  --bg-opacity:
    1;
  background-color:
    #e56a40;
  background-color:
    rgba(229, 106, 64, var(--bg-opacity));
}

.bg-warm-white-100 {
  --bg-opacity:
    1;
  background-color:
    #f9f7f4;
  background-color:
    rgba(249, 247, 244, var(--bg-opacity));
}

.bg-warm-white-200 {
  --bg-opacity:
    1;
  background-color:
    #f2efe9;
  background-color:
    rgba(242, 239, 233, var(--bg-opacity));
}

.bg-warm-white-300 {
  --bg-opacity:
    1;
  background-color:
    #e9e6dc;
  background-color:
    rgba(233, 230, 220, var(--bg-opacity));
}

.bg-light-blue {
  --bg-opacity:
    1;
  background-color:
    #E7FAFA;
  background-color:
    rgba(231, 250, 250, var(--bg-opacity));
}

.bg-kit-purple-100 {
  --bg-opacity:
    1;
  background-color:
    #f3e3f9;
  background-color:
    rgba(243, 227, 249, var(--bg-opacity));
}

.bg-kit-purple-500 {
  --bg-opacity:
    1;
  background-color:
    #e4acff;
  background-color:
    rgba(228, 172, 255, var(--bg-opacity));
}

.bg-kit-orange-100 {
  --bg-opacity:
    1;
  background-color:
    #ffe7d6;
  background-color:
    rgba(255, 231, 214, var(--bg-opacity));
}

.bg-kit-orange-500 {
  --bg-opacity:
    1;
  background-color:
    #ff7647;
  background-color:
    rgba(255, 118, 71, var(--bg-opacity));
}

.bg-kit-orange-700 {
  --bg-opacity:
    1;
  background-color:
    #a65821;
  background-color:
    rgba(166, 88, 33, var(--bg-opacity));
}

.bg-system-red-600 {
  --bg-opacity:
    1;
  background-color:
    #E05138;
  background-color:
    rgba(224, 81, 56, var(--bg-opacity));
}

.bg-system-yellow-50 {
  --bg-opacity:
    1;
  background-color:
    #FFFAF0;
  background-color:
    rgba(255, 250, 240, var(--bg-opacity));
}

.bg-system-yellow-100 {
  --bg-opacity:
    1;
  background-color:
    #FFF2D6;
  background-color:
    rgba(255, 242, 214, var(--bg-opacity));
}

.bg-system-yellow-400 {
  --bg-opacity:
    1;
  background-color:
    #FFC852;
  background-color:
    rgba(255, 200, 82, var(--bg-opacity));
}

.hover\:bg-transparent:hover {
  background-color:
    transparent;
}

.hover\:bg-black:hover {
  --bg-opacity:
    1;
  background-color:
    #000000;
  background-color:
    rgba(0, 0, 0, var(--bg-opacity));
}

.hover\:bg-gray-50:hover {
  --bg-opacity:
    1;
  background-color:
    #f7f7f7;
  background-color:
    rgba(247, 247, 247, var(--bg-opacity));
}

.hover\:bg-gray-100:hover {
  --bg-opacity:
    1;
  background-color:
    #f0f0f0;
  background-color:
    rgba(240, 240, 240, var(--bg-opacity));
}

.hover\:bg-gray-200:hover {
  --bg-opacity:
    1;
  background-color:
    #e3e3e3;
  background-color:
    rgba(227, 227, 227, var(--bg-opacity));
}

.hover\:bg-gray-300:hover {
  --bg-opacity:
    1;
  background-color:
    #d4d4d4;
  background-color:
    rgba(212, 212, 212, var(--bg-opacity));
}

.hover\:bg-gray-400:hover {
  --bg-opacity:
    1;
  background-color:
    #c4c4c4;
  background-color:
    rgba(196, 196, 196, var(--bg-opacity));
}

.hover\:bg-gray-700:hover {
  --bg-opacity:
    1;
  background-color:
    #6e6e6e;
  background-color:
    rgba(110, 110, 110, var(--bg-opacity));
}

.hover\:bg-gray-800:hover {
  --bg-opacity:
    1;
  background-color:
    #3d3d3d;
  background-color:
    rgba(61, 61, 61, var(--bg-opacity));
}

.hover\:bg-gray-900:hover {
  --bg-opacity:
    1;
  background-color:
    #1e1e1e;
  background-color:
    rgba(30, 30, 30, var(--bg-opacity));
}

.hover\:bg-red-300:hover {
  --bg-opacity:
    1;
  background-color:
    #FF8873;
  background-color:
    rgba(255, 136, 115, var(--bg-opacity));
}

.hover\:bg-red-500:hover {
  --bg-opacity:
    1;
  background-color:
    #FC5C3F;
  background-color:
    rgba(252, 92, 63, var(--bg-opacity));
}

.hover\:bg-red-600:hover {
  --bg-opacity:
    1;
  background-color:
    #E05138;
  background-color:
    rgba(224, 81, 56, var(--bg-opacity));
}

.hover\:bg-blue-100:hover {
  --bg-opacity:
    1;
  background-color:
    #bce1fa;
  background-color:
    rgba(188, 225, 250, var(--bg-opacity));
}

.hover\:bg-blue-200:hover {
  --bg-opacity:
    1;
  background-color:
    #a2d1f1;
  background-color:
    rgba(162, 209, 241, var(--bg-opacity));
}

.hover\:bg-blue-300:hover {
  --bg-opacity:
    1;
  background-color:
    #81c5f3;
  background-color:
    rgba(129, 197, 243, var(--bg-opacity));
}

.hover\:bg-blue-400:hover {
  --bg-opacity:
    1;
  background-color:
    #63bbf9;
  background-color:
    rgba(99, 187, 249, var(--bg-opacity));
}

.hover\:bg-blue-500:hover {
  --bg-opacity:
    1;
  background-color:
    #44b1ff;
  background-color:
    rgba(68, 177, 255, var(--bg-opacity));
}

.hover\:bg-blue-600:hover {
  --bg-opacity:
    1;
  background-color:
    #3197e0;
  background-color:
    rgba(49, 151, 224, var(--bg-opacity));
}

.hover\:bg-blue-700:hover {
  --bg-opacity:
    1;
  background-color:
    #2b7ab1;
  background-color:
    rgba(43, 122, 177, var(--bg-opacity));
}

.hover\:bg-blue-800:hover {
  --bg-opacity:
    1;
  background-color:
    #144264;
  background-color:
    rgba(20, 66, 100, var(--bg-opacity));
}

.hover\:bg-green-300:hover {
  --bg-opacity:
    1;
  background-color:
    #94e3a9;
  background-color:
    rgba(148, 227, 169, var(--bg-opacity));
}

.hover\:bg-green-500:hover {
  --bg-opacity:
    1;
  background-color:
    #65dc8d;
  background-color:
    rgba(101, 220, 141, var(--bg-opacity));
}

.hover\:bg-green-600:hover {
  --bg-opacity:
    1;
  background-color:
    #4ec776;
  background-color:
    rgba(78, 199, 118, var(--bg-opacity));
}

.hover\:bg-green-700:hover {
  --bg-opacity:
    1;
  background-color:
    #27a14f;
  background-color:
    rgba(39, 161, 79, var(--bg-opacity));
}

.hover\:bg-yellow-200:hover {
  --bg-opacity:
    1;
  background-color:
    #ffd0ad;
  background-color:
    rgba(255, 208, 173, var(--bg-opacity));
}

.hover\:bg-yellow-300:hover {
  --bg-opacity:
    1;
  background-color:
    #ff9f6b;
  background-color:
    rgba(255, 159, 107, var(--bg-opacity));
}

.hover\:bg-yellow-400:hover {
  --bg-opacity:
    1;
  background-color:
    #ff8b59;
  background-color:
    rgba(255, 139, 89, var(--bg-opacity));
}

.hover\:bg-yellow-500:hover {
  --bg-opacity:
    1;
  background-color:
    #ff7647;
  background-color:
    rgba(255, 118, 71, var(--bg-opacity));
}

.hover\:bg-yellow-600:hover {
  --bg-opacity:
    1;
  background-color:
    #e56a40;
  background-color:
    rgba(229, 106, 64, var(--bg-opacity));
}

.hover\:bg-warm-white-100:hover {
  --bg-opacity:
    1;
  background-color:
    #f9f7f4;
  background-color:
    rgba(249, 247, 244, var(--bg-opacity));
}

.hover\:bg-warm-white-200:hover {
  --bg-opacity:
    1;
  background-color:
    #f2efe9;
  background-color:
    rgba(242, 239, 233, var(--bg-opacity));
}

.hover\:bg-kit-purple-200:hover {
  --bg-opacity:
    1;
  background-color:
    #e7c9f1;
  background-color:
    rgba(231, 201, 241, var(--bg-opacity));
}

.hover\:bg-kit-orange-300:hover {
  --bg-opacity:
    1;
  background-color:
    #ff9f6b;
  background-color:
    rgba(255, 159, 107, var(--bg-opacity));
}

.hover\:bg-system-yellow-500:hover {
  --bg-opacity:
    1;
  background-color:
    #F2BA41;
  background-color:
    rgba(242, 186, 65, var(--bg-opacity));
}

.focus\:bg-gray-50:focus {
  --bg-opacity:
    1;
  background-color:
    #f7f7f7;
  background-color:
    rgba(247, 247, 247, var(--bg-opacity));
}

.focus\:bg-gray-100:focus {
  --bg-opacity:
    1;
  background-color:
    #f0f0f0;
  background-color:
    rgba(240, 240, 240, var(--bg-opacity));
}

.focus\:bg-gray-200:focus {
  --bg-opacity:
    1;
  background-color:
    #e3e3e3;
  background-color:
    rgba(227, 227, 227, var(--bg-opacity));
}

.focus\:bg-red-500:focus {
  --bg-opacity:
    1;
  background-color:
    #FC5C3F;
  background-color:
    rgba(252, 92, 63, var(--bg-opacity));
}

.focus\:bg-red-600:focus {
  --bg-opacity:
    1;
  background-color:
    #E05138;
  background-color:
    rgba(224, 81, 56, var(--bg-opacity));
}

.focus\:bg-blue-600:focus {
  --bg-opacity:
    1;
  background-color:
    #3197e0;
  background-color:
    rgba(49, 151, 224, var(--bg-opacity));
}

.focus\:bg-blue-800:focus {
  --bg-opacity:
    1;
  background-color:
    #144264;
  background-color:
    rgba(20, 66, 100, var(--bg-opacity));
}

.focus\:bg-green-300:focus {
  --bg-opacity:
    1;
  background-color:
    #94e3a9;
  background-color:
    rgba(148, 227, 169, var(--bg-opacity));
}

.focus\:bg-green-500:focus {
  --bg-opacity:
    1;
  background-color:
    #65dc8d;
  background-color:
    rgba(101, 220, 141, var(--bg-opacity));
}

.focus\:bg-yellow-500:focus {
  --bg-opacity:
    1;
  background-color:
    #ff7647;
  background-color:
    rgba(255, 118, 71, var(--bg-opacity));
}

.focus\:bg-warm-white-200:focus {
  --bg-opacity:
    1;
  background-color:
    #f2efe9;
  background-color:
    rgba(242, 239, 233, var(--bg-opacity));
}

.group:hover .group-hover\:bg-gray-50 {
  --bg-opacity:
    1;
  background-color:
    #f7f7f7;
  background-color:
    rgba(247, 247, 247, var(--bg-opacity));
}

.group:hover .group-hover\:bg-gray-100 {
  --bg-opacity:
    1;
  background-color:
    #f0f0f0;
  background-color:
    rgba(240, 240, 240, var(--bg-opacity));
}

.group:hover .group-hover\:bg-gray-200 {
  --bg-opacity:
    1;
  background-color:
    #e3e3e3;
  background-color:
    rgba(227, 227, 227, var(--bg-opacity));
}

.bg-none {
  background-image:
    none;
}

.bg-opacity-10 {
  --bg-opacity:
    0.1;
}

.bg-opacity-25 {
  --bg-opacity:
    0.25;
}

.bg-opacity-75 {
  --bg-opacity:
    0.75;
}

.hover\:bg-opacity-10:hover {
  --bg-opacity:
    0.1;
}

.hover\:bg-opacity-25:hover {
  --bg-opacity:
    0.25;
}

.focus\:bg-opacity-25:focus {
  --bg-opacity:
    0.25;
}

.bg-center {
  background-position:
    center;
}

.bg-repeat {
  background-repeat:
    repeat;
}

.bg-no-repeat {
  background-repeat:
    no-repeat;
}

.bg-repeat-x {
  background-repeat:
    repeat-x;
}

.bg-repeat-y {
  background-repeat:
    repeat-y;
}

.bg-repeat-round {
  background-repeat:
    round;
}

.bg-repeat-space {
  background-repeat:
    space;
}

.bg-cover {
  background-size:
    cover;
}

.border-collapse {
  border-collapse:
    collapse;
}

.border-separate {
  border-collapse:
    separate;
}

.border-transparent {
  border-color:
    transparent;
}

.border-white {
  --border-opacity:
    1;
  border-color:
    #ffffff;
  border-color:
    rgba(255, 255, 255, var(--border-opacity));
}

.border-black {
  --border-opacity:
    1;
  border-color:
    #000000;
  border-color:
    rgba(0, 0, 0, var(--border-opacity));
}

.border-gray-50 {
  --border-opacity:
    1;
  border-color:
    #f7f7f7;
  border-color:
    rgba(247, 247, 247, var(--border-opacity));
}

.border-gray-100 {
  --border-opacity:
    1;
  border-color:
    #f0f0f0;
  border-color:
    rgba(240, 240, 240, var(--border-opacity));
}

.border-gray-200 {
  --border-opacity:
    1;
  border-color:
    #e3e3e3;
  border-color:
    rgba(227, 227, 227, var(--border-opacity));
}

.border-gray-300 {
  --border-opacity:
    1;
  border-color:
    #d4d4d4;
  border-color:
    rgba(212, 212, 212, var(--border-opacity));
}

.border-gray-400 {
  --border-opacity:
    1;
  border-color:
    #c4c4c4;
  border-color:
    rgba(196, 196, 196, var(--border-opacity));
}

.border-gray-500 {
  --border-opacity:
    1;
  border-color:
    #b8b8b8;
  border-color:
    rgba(184, 184, 184, var(--border-opacity));
}

.border-gray-600 {
  --border-opacity:
    1;
  border-color:
    #919191;
  border-color:
    rgba(145, 145, 145, var(--border-opacity));
}

.border-gray-700 {
  --border-opacity:
    1;
  border-color:
    #6e6e6e;
  border-color:
    rgba(110, 110, 110, var(--border-opacity));
}

.border-gray-800 {
  --border-opacity:
    1;
  border-color:
    #3d3d3d;
  border-color:
    rgba(61, 61, 61, var(--border-opacity));
}

.border-gray-900 {
  --border-opacity:
    1;
  border-color:
    #1e1e1e;
  border-color:
    rgba(30, 30, 30, var(--border-opacity));
}

.border-red-50 {
  --border-opacity:
    1;
  border-color:
    #FFF2F0;
  border-color:
    rgba(255, 242, 240, var(--border-opacity));
}

.border-red-400 {
  --border-opacity:
    1;
  border-color:
    #FF7259;
  border-color:
    rgba(255, 114, 89, var(--border-opacity));
}

.border-red-500 {
  --border-opacity:
    1;
  border-color:
    #FC5C3F;
  border-color:
    rgba(252, 92, 63, var(--border-opacity));
}

.border-red-600 {
  --border-opacity:
    1;
  border-color:
    #E05138;
  border-color:
    rgba(224, 81, 56, var(--border-opacity));
}

.border-red-900 {
  --border-opacity:
    1;
  border-color:
    #5E0E00;
  border-color:
    rgba(94, 14, 0, var(--border-opacity));
}

.border-blue-50 {
  --border-opacity:
    1;
  border-color:
    #f0f9ff;
  border-color:
    rgba(240, 249, 255, var(--border-opacity));
}

.border-blue-100 {
  --border-opacity:
    1;
  border-color:
    #bce1fa;
  border-color:
    rgba(188, 225, 250, var(--border-opacity));
}

.border-blue-200 {
  --border-opacity:
    1;
  border-color:
    #a2d1f1;
  border-color:
    rgba(162, 209, 241, var(--border-opacity));
}

.border-blue-300 {
  --border-opacity:
    1;
  border-color:
    #81c5f3;
  border-color:
    rgba(129, 197, 243, var(--border-opacity));
}

.border-blue-400 {
  --border-opacity:
    1;
  border-color:
    #63bbf9;
  border-color:
    rgba(99, 187, 249, var(--border-opacity));
}

.border-blue-500 {
  --border-opacity:
    1;
  border-color:
    #44b1ff;
  border-color:
    rgba(68, 177, 255, var(--border-opacity));
}

.border-blue-600 {
  --border-opacity:
    1;
  border-color:
    #3197e0;
  border-color:
    rgba(49, 151, 224, var(--border-opacity));
}

.border-blue-700 {
  --border-opacity:
    1;
  border-color:
    #2b7ab1;
  border-color:
    rgba(43, 122, 177, var(--border-opacity));
}

.border-blue-800 {
  --border-opacity:
    1;
  border-color:
    #144264;
  border-color:
    rgba(20, 66, 100, var(--border-opacity));
}

.border-blue-900 {
  --border-opacity:
    1;
  border-color:
    #0a2940;
  border-color:
    rgba(10, 41, 64, var(--border-opacity));
}

.border-green-100 {
  --border-opacity:
    1;
  border-color:
    #d0f5d9;
  border-color:
    rgba(208, 245, 217, var(--border-opacity));
}

.border-green-200 {
  --border-opacity:
    1;
  border-color:
    #b9e9c5;
  border-color:
    rgba(185, 233, 197, var(--border-opacity));
}

.border-green-400 {
  --border-opacity:
    1;
  border-color:
    #83de9e;
  border-color:
    rgba(131, 222, 158, var(--border-opacity));
}

.border-green-500 {
  --border-opacity:
    1;
  border-color:
    #65dc8d;
  border-color:
    rgba(101, 220, 141, var(--border-opacity));
}

.border-green-600 {
  --border-opacity:
    1;
  border-color:
    #4ec776;
  border-color:
    rgba(78, 199, 118, var(--border-opacity));
}

.border-yellow-50 {
  --border-opacity:
    1;
  border-color:
    #fff6f0;
  border-color:
    rgba(255, 246, 240, var(--border-opacity));
}

.border-yellow-200 {
  --border-opacity:
    1;
  border-color:
    #ffd0ad;
  border-color:
    rgba(255, 208, 173, var(--border-opacity));
}

.border-yellow-500 {
  --border-opacity:
    1;
  border-color:
    #ff7647;
  border-color:
    rgba(255, 118, 71, var(--border-opacity));
}

.border-yellow-600 {
  --border-opacity:
    1;
  border-color:
    #e56a40;
  border-color:
    rgba(229, 106, 64, var(--border-opacity));
}

.border-kit-blue-800 {
  --border-opacity:
    1;
  border-color:
    #144264;
  border-color:
    rgba(20, 66, 100, var(--border-opacity));
}

.border-kit-purple-100 {
  --border-opacity:
    1;
  border-color:
    #f3e3f9;
  border-color:
    rgba(243, 227, 249, var(--border-opacity));
}

.border-kit-purple-500 {
  --border-opacity:
    1;
  border-color:
    #e4acff;
  border-color:
    rgba(228, 172, 255, var(--border-opacity));
}

.border-kit-purple-600 {
  --border-opacity:
    1;
  border-color:
    #c88ce5;
  border-color:
    rgba(200, 140, 229, var(--border-opacity));
}

.border-kit-orange-100 {
  --border-opacity:
    1;
  border-color:
    #ffe7d6;
  border-color:
    rgba(255, 231, 214, var(--border-opacity));
}

.border-kit-orange-500 {
  --border-opacity:
    1;
  border-color:
    #ff7647;
  border-color:
    rgba(255, 118, 71, var(--border-opacity));
}

.border-kit-orange-600 {
  --border-opacity:
    1;
  border-color:
    #e56a40;
  border-color:
    rgba(229, 106, 64, var(--border-opacity));
}

.hover\:border-transparent:hover {
  border-color:
    transparent;
}

.hover\:border-gray-50:hover {
  --border-opacity:
    1;
  border-color:
    #f7f7f7;
  border-color:
    rgba(247, 247, 247, var(--border-opacity));
}

.hover\:border-gray-100:hover {
  --border-opacity:
    1;
  border-color:
    #f0f0f0;
  border-color:
    rgba(240, 240, 240, var(--border-opacity));
}

.hover\:border-gray-200:hover {
  --border-opacity:
    1;
  border-color:
    #e3e3e3;
  border-color:
    rgba(227, 227, 227, var(--border-opacity));
}

.hover\:border-gray-300:hover {
  --border-opacity:
    1;
  border-color:
    #d4d4d4;
  border-color:
    rgba(212, 212, 212, var(--border-opacity));
}

.hover\:border-gray-400:hover {
  --border-opacity:
    1;
  border-color:
    #c4c4c4;
  border-color:
    rgba(196, 196, 196, var(--border-opacity));
}

.hover\:border-gray-500:hover {
  --border-opacity:
    1;
  border-color:
    #b8b8b8;
  border-color:
    rgba(184, 184, 184, var(--border-opacity));
}

.hover\:border-gray-600:hover {
  --border-opacity:
    1;
  border-color:
    #919191;
  border-color:
    rgba(145, 145, 145, var(--border-opacity));
}

.hover\:border-gray-700:hover {
  --border-opacity:
    1;
  border-color:
    #6e6e6e;
  border-color:
    rgba(110, 110, 110, var(--border-opacity));
}

.hover\:border-gray-900:hover {
  --border-opacity:
    1;
  border-color:
    #1e1e1e;
  border-color:
    rgba(30, 30, 30, var(--border-opacity));
}

.hover\:border-red-500:hover {
  --border-opacity:
    1;
  border-color:
    #FC5C3F;
  border-color:
    rgba(252, 92, 63, var(--border-opacity));
}

.hover\:border-blue-50:hover {
  --border-opacity:
    1;
  border-color:
    #f0f9ff;
  border-color:
    rgba(240, 249, 255, var(--border-opacity));
}

.hover\:border-blue-100:hover {
  --border-opacity:
    1;
  border-color:
    #bce1fa;
  border-color:
    rgba(188, 225, 250, var(--border-opacity));
}

.hover\:border-blue-200:hover {
  --border-opacity:
    1;
  border-color:
    #a2d1f1;
  border-color:
    rgba(162, 209, 241, var(--border-opacity));
}

.hover\:border-blue-300:hover {
  --border-opacity:
    1;
  border-color:
    #81c5f3;
  border-color:
    rgba(129, 197, 243, var(--border-opacity));
}

.hover\:border-blue-400:hover {
  --border-opacity:
    1;
  border-color:
    #63bbf9;
  border-color:
    rgba(99, 187, 249, var(--border-opacity));
}

.hover\:border-blue-500:hover {
  --border-opacity:
    1;
  border-color:
    #44b1ff;
  border-color:
    rgba(68, 177, 255, var(--border-opacity));
}

.hover\:border-blue-600:hover {
  --border-opacity:
    1;
  border-color:
    #3197e0;
  border-color:
    rgba(49, 151, 224, var(--border-opacity));
}

.hover\:border-blue-700:hover {
  --border-opacity:
    1;
  border-color:
    #2b7ab1;
  border-color:
    rgba(43, 122, 177, var(--border-opacity));
}

.hover\:border-blue-800:hover {
  --border-opacity:
    1;
  border-color:
    #144264;
  border-color:
    rgba(20, 66, 100, var(--border-opacity));
}

.hover\:border-blue-900:hover {
  --border-opacity:
    1;
  border-color:
    #0a2940;
  border-color:
    rgba(10, 41, 64, var(--border-opacity));
}

.focus\:border-gray-200:focus {
  --border-opacity:
    1;
  border-color:
    #e3e3e3;
  border-color:
    rgba(227, 227, 227, var(--border-opacity));
}

.focus\:border-gray-300:focus {
  --border-opacity:
    1;
  border-color:
    #d4d4d4;
  border-color:
    rgba(212, 212, 212, var(--border-opacity));
}

.focus\:border-gray-500:focus {
  --border-opacity:
    1;
  border-color:
    #b8b8b8;
  border-color:
    rgba(184, 184, 184, var(--border-opacity));
}

.focus\:border-gray-800:focus {
  --border-opacity:
    1;
  border-color:
    #3d3d3d;
  border-color:
    rgba(61, 61, 61, var(--border-opacity));
}

.focus\:border-red-600:focus {
  --border-opacity:
    1;
  border-color:
    #E05138;
  border-color:
    rgba(224, 81, 56, var(--border-opacity));
}

.focus\:border-blue-300:focus {
  --border-opacity:
    1;
  border-color:
    #81c5f3;
  border-color:
    rgba(129, 197, 243, var(--border-opacity));
}

.focus\:border-blue-500:focus {
  --border-opacity:
    1;
  border-color:
    #44b1ff;
  border-color:
    rgba(68, 177, 255, var(--border-opacity));
}

.focus\:border-green-300:focus {
  --border-opacity:
    1;
  border-color:
    #94e3a9;
  border-color:
    rgba(148, 227, 169, var(--border-opacity));
}

.border-opacity-0 {
  --border-opacity:
    0;
}

.border-opacity-10 {
  --border-opacity:
    0.1;
}

.border-opacity-25 {
  --border-opacity:
    0.25;
}

.border-opacity-100 {
  --border-opacity:
    1;
}

.hover\:border-opacity-100:hover {
  --border-opacity:
    1;
}

.rounded-none {
  border-radius:
    0;
}

.rounded-sm {
  border-radius:
    0.5rem;
}

.rounded {
  border-radius:
    0.625rem;
}

.rounded-lg {
  border-radius:
    0.75rem;
}

.rounded-xl {
  border-radius:
    0.875rem;
}

.rounded-full {
  border-radius:
    9999px;
}

.rounded-t-none {
  border-top-left-radius:
    0;
  border-top-right-radius:
    0;
}

.rounded-r-none {
  border-top-right-radius:
    0;
  border-bottom-right-radius:
    0;
}

.rounded-b-none {
  border-bottom-right-radius:
    0;
  border-bottom-left-radius:
    0;
}

.rounded-l-none {
  border-top-left-radius:
    0;
  border-bottom-left-radius:
    0;
}

.rounded-t-sm {
  border-top-left-radius:
    0.5rem;
  border-top-right-radius:
    0.5rem;
}

.rounded-r-sm {
  border-top-right-radius:
    0.5rem;
  border-bottom-right-radius:
    0.5rem;
}

.rounded-l-sm {
  border-top-left-radius:
    0.5rem;
  border-bottom-left-radius:
    0.5rem;
}

.rounded-t {
  border-top-left-radius:
    0.625rem;
  border-top-right-radius:
    0.625rem;
}

.rounded-r {
  border-top-right-radius:
    0.625rem;
  border-bottom-right-radius:
    0.625rem;
}

.rounded-b {
  border-bottom-right-radius:
    0.625rem;
  border-bottom-left-radius:
    0.625rem;
}

.rounded-l {
  border-top-left-radius:
    0.625rem;
  border-bottom-left-radius:
    0.625rem;
}

.rounded-t-lg {
  border-top-left-radius:
    0.75rem;
  border-top-right-radius:
    0.75rem;
}

.rounded-r-lg {
  border-top-right-radius:
    0.75rem;
  border-bottom-right-radius:
    0.75rem;
}

.rounded-b-lg {
  border-bottom-right-radius:
    0.75rem;
  border-bottom-left-radius:
    0.75rem;
}

.rounded-l-lg {
  border-top-left-radius:
    0.75rem;
  border-bottom-left-radius:
    0.75rem;
}

.rounded-t-xl {
  border-top-left-radius:
    0.875rem;
  border-top-right-radius:
    0.875rem;
}

.rounded-b-xl {
  border-bottom-right-radius:
    0.875rem;
  border-bottom-left-radius:
    0.875rem;
}

.rounded-l-full {
  border-top-left-radius:
    9999px;
  border-bottom-left-radius:
    9999px;
}

.rounded-br-none {
  border-bottom-right-radius:
    0;
}

.rounded-bl-none {
  border-bottom-left-radius:
    0;
}

.rounded-tl {
  border-top-left-radius:
    0.625rem;
}

.rounded-tr {
  border-top-right-radius:
    0.625rem;
}

.rounded-br {
  border-bottom-right-radius:
    0.625rem;
}

.rounded-bl {
  border-bottom-left-radius:
    0.625rem;
}

.rounded-br-lg {
  border-bottom-right-radius:
    0.75rem;
}

.rounded-bl-lg {
  border-bottom-left-radius:
    0.75rem;
}

.rounded-br-xl {
  border-bottom-right-radius:
    0.875rem;
}

.border-solid {
  border-style:
    solid;
}

.border-dashed {
  border-style:
    dashed;
}

.border-dotted {
  border-style:
    dotted;
}

.border-double {
  border-style:
    double;
}

.border-none {
  border-style:
    none;
}

.border-0 {
  border-width:
    0;
}

.border-2 {
  border-width:
    2px;
}

.border-4 {
  border-width:
    4px;
}

.border-8 {
  border-width:
    8px;
}

.border {
  border-width:
    1px;
}

.border-t-0 {
  border-top-width:
    0;
}

.border-r-0 {
  border-right-width:
    0;
}

.border-b-0 {
  border-bottom-width:
    0;
}

.border-l-0 {
  border-left-width:
    0;
}

.border-t-2 {
  border-top-width:
    2px;
}

.border-b-2 {
  border-bottom-width:
    2px;
}

.border-l-2 {
  border-left-width:
    2px;
}

.border-t-4 {
  border-top-width:
    4px;
}

.border-t-8 {
  border-top-width:
    8px;
}

.border-t {
  border-top-width:
    1px;
}

.border-r {
  border-right-width:
    1px;
}

.border-b {
  border-bottom-width:
    1px;
}

.border-l {
  border-left-width:
    1px;
}

.box-border {
  box-sizing:
    border-box;
}

.box-content {
  box-sizing:
    content-box;
}

.cursor-default {
  cursor:
    default;
}

.cursor-pointer {
  cursor:
    pointer;
}

.cursor-wait {
  cursor:
    wait;
}

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

.block {
  display:
    block;
}

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

.inline {
  display:
    inline;
}

.flex {
  display:
    flex;
}

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

.table {
  display:
    table;
}

.table-caption {
  display:
    table-caption;
}

.table-cell {
  display:
    table-cell;
}

.table-column {
  display:
    table-column;
}

.table-column-group {
  display:
    table-column-group;
}

.table-footer-group {
  display:
    table-footer-group;
}

.table-header-group {
  display:
    table-header-group;
}

.table-row-group {
  display:
    table-row-group;
}

.table-row {
  display:
    table-row;
}

.flow-root {
  display:
    flow-root;
}

.grid {
  display:
    grid;
}

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

.contents {
  display:
    contents;
}

.hidden {
  display:
    none;
}

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

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

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

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

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

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

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

.place-items-start {
  place-items:
    start;
}

.place-items-end {
  place-items:
    end;
}

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

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

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

.place-content-start {
  place-content:
    start;
}

.place-content-end {
  place-content:
    end;
}

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

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

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

.place-content-stretch {
  place-content:
    stretch;
}

.place-self-auto {
  place-self:
    auto;
}

.place-self-start {
  place-self:
    start;
}

.place-self-end {
  place-self:
    end;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.justify-items-start {
  justify-items:
    start;
}

.justify-items-end {
  justify-items:
    end;
}

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

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

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

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

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

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

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

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

.justify-self-auto {
  justify-self:
    auto;
}

.justify-self-start {
  justify-self:
    start;
}

.justify-self-end {
  justify-self:
    end;
}

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

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

.flex-1 {
  flex:
    1 1 0%;
}

.flex-auto {
  flex:
    1 1 auto;
}

.flex-initial {
  flex:
    0 1 auto;
}

.flex-none {
  flex:
    none;
}

.flex-grow-0 {
  flex-grow:
    0;
}

.flex-grow {
  flex-grow:
    1;
}

.flex-shrink-0 {
  flex-shrink:
    0;
}

.flex-shrink {
  flex-shrink:
    1;
}

.order-1 {
  order:
    1;
}

.order-2 {
  order:
    2;
}

.order-3 {
  order:
    3;
}

.order-last {
  order:
    9999;
}

.float-right {
  float:
    right;
}

.float-left {
  float:
    left;
}

.float-none {
  float:
    none;
}

.clear-left {
  clear:
    left;
}

.clear-right {
  clear:
    right;
}

.clear-both {
  clear:
    both;
}

.clear-none {
  clear:
    none;
}

.font-heading {
  font-family:
    KitSansBold, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.font-sans {
  font-family:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.font-serif {
  font-family:
    Charter, Domine, Georgia, Cambria, "Times New Roman", Times, serif;
}

.font-mono {
  font-family:
    Roboto Mono, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.font-light {
  font-weight:
    300;
}

.font-normal {
  font-weight:
    400;
}

.font-semibold {
  font-weight:
    600;
}

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

.font-extrabold {
  font-weight:
    800;
}

.h-0 {
  height:
    0;
}

.h-1 {
  height:
    0.25rem;
}

.h-2 {
  height:
    0.5rem;
}

.h-3 {
  height:
    0.75rem;
}

.h-4 {
  height:
    1rem;
}

.h-5 {
  height:
    1.25rem;
}

.h-6 {
  height:
    1.5rem;
}

.h-8 {
  height:
    2rem;
}

.h-10 {
  height:
    2.5rem;
}

.h-12 {
  height:
    3rem;
}

.h-16 {
  height:
    4rem;
}

.h-20 {
  height:
    5rem;
}

.h-24 {
  height:
    6rem;
}

.h-32 {
  height:
    8rem;
}

.h-40 {
  height:
    10rem;
}

.h-48 {
  height:
    12rem;
}

.h-56 {
  height:
    14rem;
}

.h-64 {
  height:
    16rem;
}

.h-auto {
  height:
    auto;
}

.h-px {
  height:
    1px;
}

.h-full {
  height:
    100%;
}

.h-screen {
  height:
    100vh;
}

.text-xs {
  font-size:
    0.75rem;
}

.text-sm {
  font-size:
    0.875rem;
}

.text-base {
  font-size:
    1rem;
}

.text-lg {
  font-size:
    1.125rem;
}

.text-xl {
  font-size:
    1.25rem;
}

.text-2xl {
  font-size:
    1.5rem;
}

.text-3xl {
  font-size:
    1.875rem;
}

.text-4xl {
  font-size:
    2.25rem;
}

.text-5xl {
  font-size:
    3rem;
}

.text-6xl {
  font-size:
    4rem;
}

.text-title {
  font-size:
    40px;
}

.leading-4 {
  line-height:
    1rem;
}

.leading-5 {
  line-height:
    1.25rem;
}

.leading-6 {
  line-height:
    1.5rem;
}

.leading-7 {
  line-height:
    1.75rem;
}

.leading-8 {
  line-height:
    2rem;
}

.leading-10 {
  line-height:
    2.5rem;
}

.leading-none {
  line-height:
    1;
}

.leading-tight {
  line-height:
    1.15;
}

.leading-snug {
  line-height:
    1.375;
}

.leading-normal {
  line-height:
    1.5;
}

.leading-relaxed {
  line-height:
    1.625;
}

.leading-loose {
  line-height:
    2;
}

.list-inside {
  list-style-position:
    inside;
}

.list-outside {
  list-style-position:
    outside;
}

.list-none {
  list-style-type:
    none;
}

.list-disc {
  list-style-type:
    disc;
}

.list-decimal {
  list-style-type:
    decimal;
}

.m-0 {
  margin:
    0;
}

.m-1 {
  margin:
    0.25rem;
}

.m-2 {
  margin:
    0.5rem;
}

.m-3 {
  margin:
    0.75rem;
}

.m-4 {
  margin:
    1rem;
}

.m-5 {
  margin:
    1.25rem;
}

.m-6 {
  margin:
    1.5rem;
}

.m-8 {
  margin:
    2rem;
}

.m-auto {
  margin:
    auto;
}

.-m-2 {
  margin:
    -0.5rem;
}

.-m-4 {
  margin:
    -1rem;
}

.-m-6 {
  margin:
    -1.5rem;
}

.my-0 {
  margin-top:
    0;
  margin-bottom:
    0;
}

.my-1 {
  margin-top:
    0.25rem;
  margin-bottom:
    0.25rem;
}

.mx-1 {
  margin-left:
    0.25rem;
  margin-right:
    0.25rem;
}

.my-2 {
  margin-top:
    0.5rem;
  margin-bottom:
    0.5rem;
}

.mx-2 {
  margin-left:
    0.5rem;
  margin-right:
    0.5rem;
}

.my-3 {
  margin-top:
    0.75rem;
  margin-bottom:
    0.75rem;
}

.my-4 {
  margin-top:
    1rem;
  margin-bottom:
    1rem;
}

.mx-4 {
  margin-left:
    1rem;
  margin-right:
    1rem;
}

.my-5 {
  margin-top:
    1.25rem;
  margin-bottom:
    1.25rem;
}

.mx-5 {
  margin-left:
    1.25rem;
  margin-right:
    1.25rem;
}

.my-6 {
  margin-top:
    1.5rem;
  margin-bottom:
    1.5rem;
}

.mx-6 {
  margin-left:
    1.5rem;
  margin-right:
    1.5rem;
}

.my-8 {
  margin-top:
    2rem;
  margin-bottom:
    2rem;
}

.mx-8 {
  margin-left:
    2rem;
  margin-right:
    2rem;
}

.my-10 {
  margin-top:
    2.5rem;
  margin-bottom:
    2.5rem;
}

.my-12 {
  margin-top:
    3rem;
  margin-bottom:
    3rem;
}

.mx-12 {
  margin-left:
    3rem;
  margin-right:
    3rem;
}

.my-16 {
  margin-top:
    4rem;
  margin-bottom:
    4rem;
}

.mx-24 {
  margin-left:
    6rem;
  margin-right:
    6rem;
}

.my-auto {
  margin-top:
    auto;
  margin-bottom:
    auto;
}

.mx-auto {
  margin-left:
    auto;
  margin-right:
    auto;
}

.my-px {
  margin-top:
    1px;
  margin-bottom:
    1px;
}

.mx-px {
  margin-left:
    1px;
  margin-right:
    1px;
}

.-my-1 {
  margin-top:
    -0.25rem;
  margin-bottom:
    -0.25rem;
}

.-mx-1 {
  margin-left:
    -0.25rem;
  margin-right:
    -0.25rem;
}

.-my-2 {
  margin-top:
    -0.5rem;
  margin-bottom:
    -0.5rem;
}

.-mx-2 {
  margin-left:
    -0.5rem;
  margin-right:
    -0.5rem;
}

.-mx-3 {
  margin-left:
    -0.75rem;
  margin-right:
    -0.75rem;
}

.-mx-4 {
  margin-left:
    -1rem;
  margin-right:
    -1rem;
}

.-my-5 {
  margin-top:
    -1.25rem;
  margin-bottom:
    -1.25rem;
}

.-mx-5 {
  margin-left:
    -1.25rem;
  margin-right:
    -1.25rem;
}

.-my-6 {
  margin-top:
    -1.5rem;
  margin-bottom:
    -1.5rem;
}

.-mx-6 {
  margin-left:
    -1.5rem;
  margin-right:
    -1.5rem;
}

.-my-16 {
  margin-top:
    -4rem;
  margin-bottom:
    -4rem;
}

.-my-px {
  margin-top:
    -1px;
  margin-bottom:
    -1px;
}

.-mx-px {
  margin-left:
    -1px;
  margin-right:
    -1px;
}

.mt-0 {
  margin-top:
    0;
}

.mr-0 {
  margin-right:
    0;
}

.mb-0 {
  margin-bottom:
    0;
}

.ml-0 {
  margin-left:
    0;
}

.mt-1 {
  margin-top:
    0.25rem;
}

.mr-1 {
  margin-right:
    0.25rem;
}

.mb-1 {
  margin-bottom:
    0.25rem;
}

.ml-1 {
  margin-left:
    0.25rem;
}

.mt-2 {
  margin-top:
    0.5rem;
}

.mr-2 {
  margin-right:
    0.5rem;
}

.mb-2 {
  margin-bottom:
    0.5rem;
}

.ml-2 {
  margin-left:
    0.5rem;
}

.mt-3 {
  margin-top:
    0.75rem;
}

.mr-3 {
  margin-right:
    0.75rem;
}

.mb-3 {
  margin-bottom:
    0.75rem;
}

.ml-3 {
  margin-left:
    0.75rem;
}

.mt-4 {
  margin-top:
    1rem;
}

.mr-4 {
  margin-right:
    1rem;
}

.mb-4 {
  margin-bottom:
    1rem;
}

.ml-4 {
  margin-left:
    1rem;
}

.mt-5 {
  margin-top:
    1.25rem;
}

.mr-5 {
  margin-right:
    1.25rem;
}

.mb-5 {
  margin-bottom:
    1.25rem;
}

.ml-5 {
  margin-left:
    1.25rem;
}

.mt-6 {
  margin-top:
    1.5rem;
}

.mr-6 {
  margin-right:
    1.5rem;
}

.mb-6 {
  margin-bottom:
    1.5rem;
}

.ml-6 {
  margin-left:
    1.5rem;
}

.mt-8 {
  margin-top:
    2rem;
}

.mr-8 {
  margin-right:
    2rem;
}

.mb-8 {
  margin-bottom:
    2rem;
}

.ml-8 {
  margin-left:
    2rem;
}

.mt-10 {
  margin-top:
    2.5rem;
}

.mr-10 {
  margin-right:
    2.5rem;
}

.mb-10 {
  margin-bottom:
    2.5rem;
}

.ml-10 {
  margin-left:
    2.5rem;
}

.mt-12 {
  margin-top:
    3rem;
}

.mr-12 {
  margin-right:
    3rem;
}

.mb-12 {
  margin-bottom:
    3rem;
}

.ml-12 {
  margin-left:
    3rem;
}

.mt-16 {
  margin-top:
    4rem;
}

.mb-16 {
  margin-bottom:
    4rem;
}

.ml-16 {
  margin-left:
    4rem;
}

.mt-20 {
  margin-top:
    5rem;
}

.mb-20 {
  margin-bottom:
    5rem;
}

.ml-20 {
  margin-left:
    5rem;
}

.mt-24 {
  margin-top:
    6rem;
}

.mb-24 {
  margin-bottom:
    6rem;
}

.mt-40 {
  margin-top:
    10rem;
}

.ml-40 {
  margin-left:
    10rem;
}

.mt-auto {
  margin-top:
    auto;
}

.mr-auto {
  margin-right:
    auto;
}

.mb-auto {
  margin-bottom:
    auto;
}

.ml-auto {
  margin-left:
    auto;
}

.mt-px {
  margin-top:
    1px;
}

.mr-px {
  margin-right:
    1px;
}

.ml-px {
  margin-left:
    1px;
}

.-mt-1 {
  margin-top:
    -0.25rem;
}

.-ml-1 {
  margin-left:
    -0.25rem;
}

.-mt-2 {
  margin-top:
    -0.5rem;
}

.-mr-2 {
  margin-right:
    -0.5rem;
}

.-mb-2 {
  margin-bottom:
    -0.5rem;
}

.-ml-2 {
  margin-left:
    -0.5rem;
}

.-mt-3 {
  margin-top:
    -0.75rem;
}

.-mr-3 {
  margin-right:
    -0.75rem;
}

.-mb-3 {
  margin-bottom:
    -0.75rem;
}

.-ml-3 {
  margin-left:
    -0.75rem;
}

.-mt-4 {
  margin-top:
    -1rem;
}

.-mr-4 {
  margin-right:
    -1rem;
}

.-mb-4 {
  margin-bottom:
    -1rem;
}

.-ml-4 {
  margin-left:
    -1rem;
}

.-mb-5 {
  margin-bottom:
    -1.25rem;
}

.-mt-6 {
  margin-top:
    -1.5rem;
}

.-mr-6 {
  margin-right:
    -1.5rem;
}

.-ml-6 {
  margin-left:
    -1.5rem;
}

.-mt-8 {
  margin-top:
    -2rem;
}

.-mb-8 {
  margin-bottom:
    -2rem;
}

.-ml-8 {
  margin-left:
    -2rem;
}

.-mb-10 {
  margin-bottom:
    -2.5rem;
}

.-ml-10 {
  margin-left:
    -2.5rem;
}

.-mt-12 {
  margin-top:
    -3rem;
}

.-ml-12 {
  margin-left:
    -3rem;
}

.-mt-16 {
  margin-top:
    -4rem;
}

.-ml-16 {
  margin-left:
    -4rem;
}

.-mt-20 {
  margin-top:
    -5rem;
}

.-mr-20 {
  margin-right:
    -5rem;
}

.-mt-24 {
  margin-top:
    -6rem;
}

.-mt-px {
  margin-top:
    -1px;
}

.-mr-px {
  margin-right:
    -1px;
}

.-mb-px {
  margin-bottom:
    -1px;
}

.-ml-px {
  margin-left:
    -1px;
}

.max-h-full {
  max-height:
    100%;
}

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

.max-w-xs {
  max-width:
    20rem;
}

.max-w-sm {
  max-width:
    24rem;
}

.max-w-md {
  max-width:
    28rem;
}

.max-w-lg {
  max-width:
    32rem;
}

.max-w-xl {
  max-width:
    36rem;
}

.max-w-2xl {
  max-width:
    42rem;
}

.max-w-3xl {
  max-width:
    48rem;
}

.max-w-4xl {
  max-width:
    56rem;
}

.max-w-5xl {
  max-width:
    64rem;
}

.max-w-6xl {
  max-width:
    72rem;
}

.max-w-full {
  max-width:
    100%;
}

.min-h-full {
  min-height:
    100%;
}

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

.min-w-0 {
  min-width:
    0;
}

.min-w-full {
  min-width:
    100%;
}

.object-contain {
  object-fit:
    contain;
}

.object-cover {
  object-fit:
    cover;
}

.object-fill {
  object-fit:
    fill;
}

.object-none {
  object-fit:
    none;
}

.object-scale-down {
  object-fit:
    scale-down;
}

.object-center {
  object-position:
    center;
}

.object-top {
  object-position:
    top;
}

.opacity-0 {
  opacity:
    0;
}

.opacity-10 {
  opacity:
    0.1;
}

.opacity-25 {
  opacity:
    0.25;
}

.opacity-50 {
  opacity:
    0.5;
}

.opacity-75 {
  opacity:
    0.75;
}

.opacity-100 {
  opacity:
    1;
}

.hover\:opacity-50:hover {
  opacity:
    0.5;
}

.hover\:opacity-75:hover {
  opacity:
    0.75;
}

.hover\:opacity-100:hover {
  opacity:
    1;
}

.group:hover .group-hover\:opacity-100 {
  opacity:
    1;
}

.outline-none {
  outline:
    2px solid transparent;
  outline-offset:
    2px;
}

.focus\:outline-none:focus {
  outline:
    2px solid transparent;
  outline-offset:
    2px;
}

.overflow-auto {
  overflow:
    auto;
}

.overflow-hidden {
  overflow:
    hidden;
}

.overflow-visible {
  overflow:
    visible;
}

.overflow-scroll {
  overflow:
    scroll;
}

.overflow-x-auto {
  overflow-x:
    auto;
}

.overflow-y-auto {
  overflow-y:
    auto;
}

.overflow-x-hidden {
  overflow-x:
    hidden;
}

.overflow-y-hidden {
  overflow-y:
    hidden;
}

.overflow-x-visible {
  overflow-x:
    visible;
}

.overflow-y-visible {
  overflow-y:
    visible;
}

.overflow-x-scroll {
  overflow-x:
    scroll;
}

.overflow-y-scroll {
  overflow-y:
    scroll;
}

.overscroll-auto {
  overscroll-behavior:
    auto;
}

.overscroll-contain {
  overscroll-behavior:
    contain;
}

.overscroll-none {
  overscroll-behavior:
    none;
}

.overscroll-y-auto {
  overscroll-behavior-y:
    auto;
}

.overscroll-y-contain {
  overscroll-behavior-y:
    contain;
}

.overscroll-y-none {
  overscroll-behavior-y:
    none;
}

.overscroll-x-auto {
  overscroll-behavior-x:
    auto;
}

.overscroll-x-contain {
  overscroll-behavior-x:
    contain;
}

.overscroll-x-none {
  overscroll-behavior-x:
    none;
}

.p-0 {
  padding:
    0;
}

.p-1 {
  padding:
    0.25rem;
}

.p-2 {
  padding:
    0.5rem;
}

.p-3 {
  padding:
    0.75rem;
}

.p-4 {
  padding:
    1rem;
}

.p-5 {
  padding:
    1.25rem;
}

.p-6 {
  padding:
    1.5rem;
}

.p-8 {
  padding:
    2rem;
}

.p-10 {
  padding:
    2.5rem;
}

.p-12 {
  padding:
    3rem;
}

.p-16 {
  padding:
    4rem;
}

.py-0 {
  padding-top:
    0;
  padding-bottom:
    0;
}

.px-0 {
  padding-left:
    0;
  padding-right:
    0;
}

.py-1 {
  padding-top:
    0.25rem;
  padding-bottom:
    0.25rem;
}

.px-1 {
  padding-left:
    0.25rem;
  padding-right:
    0.25rem;
}

.py-2 {
  padding-top:
    0.5rem;
  padding-bottom:
    0.5rem;
}

.px-2 {
  padding-left:
    0.5rem;
  padding-right:
    0.5rem;
}

.py-3 {
  padding-top:
    0.75rem;
  padding-bottom:
    0.75rem;
}

.px-3 {
  padding-left:
    0.75rem;
  padding-right:
    0.75rem;
}

.py-4 {
  padding-top:
    1rem;
  padding-bottom:
    1rem;
}

.px-4 {
  padding-left:
    1rem;
  padding-right:
    1rem;
}

.py-5 {
  padding-top:
    1.25rem;
  padding-bottom:
    1.25rem;
}

.px-5 {
  padding-left:
    1.25rem;
  padding-right:
    1.25rem;
}

.py-6 {
  padding-top:
    1.5rem;
  padding-bottom:
    1.5rem;
}

.px-6 {
  padding-left:
    1.5rem;
  padding-right:
    1.5rem;
}

.py-8 {
  padding-top:
    2rem;
  padding-bottom:
    2rem;
}

.px-8 {
  padding-left:
    2rem;
  padding-right:
    2rem;
}

.py-10 {
  padding-top:
    2.5rem;
  padding-bottom:
    2.5rem;
}

.px-10 {
  padding-left:
    2.5rem;
  padding-right:
    2.5rem;
}

.py-12 {
  padding-top:
    3rem;
  padding-bottom:
    3rem;
}

.px-12 {
  padding-left:
    3rem;
  padding-right:
    3rem;
}

.py-16 {
  padding-top:
    4rem;
  padding-bottom:
    4rem;
}

.px-16 {
  padding-left:
    4rem;
  padding-right:
    4rem;
}

.py-20 {
  padding-top:
    5rem;
  padding-bottom:
    5rem;
}

.px-20 {
  padding-left:
    5rem;
  padding-right:
    5rem;
}

.py-24 {
  padding-top:
    6rem;
  padding-bottom:
    6rem;
}

.py-48 {
  padding-top:
    12rem;
  padding-bottom:
    12rem;
}

.py-64 {
  padding-top:
    16rem;
  padding-bottom:
    16rem;
}

.py-px {
  padding-top:
    1px;
  padding-bottom:
    1px;
}

.pt-0 {
  padding-top:
    0;
}

.pr-0 {
  padding-right:
    0;
}

.pb-0 {
  padding-bottom:
    0;
}

.pl-0 {
  padding-left:
    0;
}

.pt-1 {
  padding-top:
    0.25rem;
}

.pr-1 {
  padding-right:
    0.25rem;
}

.pb-1 {
  padding-bottom:
    0.25rem;
}

.pl-1 {
  padding-left:
    0.25rem;
}

.pt-2 {
  padding-top:
    0.5rem;
}

.pr-2 {
  padding-right:
    0.5rem;
}

.pb-2 {
  padding-bottom:
    0.5rem;
}

.pl-2 {
  padding-left:
    0.5rem;
}

.pt-3 {
  padding-top:
    0.75rem;
}

.pr-3 {
  padding-right:
    0.75rem;
}

.pb-3 {
  padding-bottom:
    0.75rem;
}

.pl-3 {
  padding-left:
    0.75rem;
}

.pt-4 {
  padding-top:
    1rem;
}

.pr-4 {
  padding-right:
    1rem;
}

.pb-4 {
  padding-bottom:
    1rem;
}

.pl-4 {
  padding-left:
    1rem;
}

.pt-5 {
  padding-top:
    1.25rem;
}

.pr-5 {
  padding-right:
    1.25rem;
}

.pb-5 {
  padding-bottom:
    1.25rem;
}

.pl-5 {
  padding-left:
    1.25rem;
}

.pt-6 {
  padding-top:
    1.5rem;
}

.pr-6 {
  padding-right:
    1.5rem;
}

.pb-6 {
  padding-bottom:
    1.5rem;
}

.pl-6 {
  padding-left:
    1.5rem;
}

.pt-8 {
  padding-top:
    2rem;
}

.pr-8 {
  padding-right:
    2rem;
}

.pb-8 {
  padding-bottom:
    2rem;
}

.pl-8 {
  padding-left:
    2rem;
}

.pt-10 {
  padding-top:
    2.5rem;
}

.pr-10 {
  padding-right:
    2.5rem;
}

.pb-10 {
  padding-bottom:
    2.5rem;
}

.pl-10 {
  padding-left:
    2.5rem;
}

.pt-12 {
  padding-top:
    3rem;
}

.pr-12 {
  padding-right:
    3rem;
}

.pb-12 {
  padding-bottom:
    3rem;
}

.pl-12 {
  padding-left:
    3rem;
}

.pt-16 {
  padding-top:
    4rem;
}

.pr-16 {
  padding-right:
    4rem;
}

.pb-16 {
  padding-bottom:
    4rem;
}

.pl-16 {
  padding-left:
    4rem;
}

.pt-20 {
  padding-top:
    5rem;
}

.pr-20 {
  padding-right:
    5rem;
}

.pb-20 {
  padding-bottom:
    5rem;
}

.pl-20 {
  padding-left:
    5rem;
}

.pt-24 {
  padding-top:
    6rem;
}

.pb-24 {
  padding-bottom:
    6rem;
}

.pb-32 {
  padding-bottom:
    8rem;
}

.pb-40 {
  padding-bottom:
    10rem;
}

.pt-48 {
  padding-top:
    12rem;
}

.pb-56 {
  padding-bottom:
    14rem;
}

.pt-px {
  padding-top:
    1px;
}

.pr-px {
  padding-right:
    1px;
}

.pb-1\/2 {
  padding-bottom:
    50%;
}

.pb-2\/3 {
  padding-bottom:
    66.66667%;
}

.pb-3\/4 {
  padding-bottom:
    75%;
}

.pb-4\/5 {
  padding-bottom:
    80%;
}

.placeholder-black::placeholder {
  --placeholder-opacity:
    1;
  color:
    #000000;
  color:
    rgba(0, 0, 0, var(--placeholder-opacity));
}

.placeholder-gray-500::placeholder {
  --placeholder-opacity:
    1;
  color:
    #b8b8b8;
  color:
    rgba(184, 184, 184, var(--placeholder-opacity));
}

.placeholder-gray-600::placeholder {
  --placeholder-opacity:
    1;
  color:
    #919191;
  color:
    rgba(145, 145, 145, var(--placeholder-opacity));
}

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

.pointer-events-auto {
  pointer-events:
    auto;
}

.static {
  position:
    static;
}

.fixed {
  position:
    fixed;
}

.absolute {
  position:
    absolute;
}

.relative {
  position:
    relative;
}

.sticky {
  position:
    sticky;
}

.inset-0 {
  top:
    0;
  right:
    0;
  bottom:
    0;
  left:
    0;
}

.inset-x-0 {
  right:
    0;
  left:
    0;
}

.inset-y-auto {
  top:
    auto;
  bottom:
    auto;
}

.top-0 {
  top:
    0;
}

.right-0 {
  right:
    0;
}

.bottom-0 {
  bottom:
    0;
}

.left-0 {
  left:
    0;
}

.resize-none {
  resize:
    none;
}

.resize-y {
  resize:
    vertical;
}

.resize-x {
  resize:
    horizontal;
}

.resize {
  resize:
    both;
}

.shadow {
  box-shadow:
    0px 2px 12px rgba(176, 184, 190, 0.1);
}

.shadow-lg {
  box-shadow:
    0 3px 22px 0 rgba(176, 184, 190, 0.18);
}

.shadow-none {
  box-shadow:
    none;
}

.hover\:shadow:hover {
  box-shadow:
    0px 2px 12px rgba(176, 184, 190, 0.1);
}

.hover\:shadow-lg:hover {
  box-shadow:
    0 3px 22px 0 rgba(176, 184, 190, 0.18);
}

.hover\:shadow-none:hover {
  box-shadow:
    none;
}

.focus\:shadow-lg:focus {
  box-shadow:
    0 3px 22px 0 rgba(176, 184, 190, 0.18);
}

.focus\:shadow-outline:focus {
  box-shadow:
    0 0 0 3px rgba(66, 153, 225, 0.5);
}

.fill-current {
  fill:
    currentColor;
}

.stroke-current {
  stroke:
    currentColor;
}

.table-auto {
  table-layout:
    auto;
}

.table-fixed {
  table-layout:
    fixed;
}

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

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

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

.text-justify {
  text-align:
    justify;
}

.text-transparent {
  color:
    transparent;
}

.text-white {
  --text-opacity:
    1;
  color:
    #ffffff;
  color:
    rgba(255, 255, 255, var(--text-opacity));
}

.text-black {
  --text-opacity:
    1;
  color:
    #000000;
  color:
    rgba(0, 0, 0, var(--text-opacity));
}

.text-gray-50 {
  --text-opacity:
    1;
  color:
    #f7f7f7;
  color:
    rgba(247, 247, 247, var(--text-opacity));
}

.text-gray-100 {
  --text-opacity:
    1;
  color:
    #f0f0f0;
  color:
    rgba(240, 240, 240, var(--text-opacity));
}

.text-gray-200 {
  --text-opacity:
    1;
  color:
    #e3e3e3;
  color:
    rgba(227, 227, 227, var(--text-opacity));
}

.text-gray-300 {
  --text-opacity:
    1;
  color:
    #d4d4d4;
  color:
    rgba(212, 212, 212, var(--text-opacity));
}

.text-gray-400 {
  --text-opacity:
    1;
  color:
    #c4c4c4;
  color:
    rgba(196, 196, 196, var(--text-opacity));
}

.text-gray-500 {
  --text-opacity:
    1;
  color:
    #b8b8b8;
  color:
    rgba(184, 184, 184, var(--text-opacity));
}

.text-gray-600 {
  --text-opacity:
    1;
  color:
    #919191;
  color:
    rgba(145, 145, 145, var(--text-opacity));
}

.text-gray-700 {
  --text-opacity:
    1;
  color:
    #6e6e6e;
  color:
    rgba(110, 110, 110, var(--text-opacity));
}

.text-gray-800 {
  --text-opacity:
    1;
  color:
    #3d3d3d;
  color:
    rgba(61, 61, 61, var(--text-opacity));
}

.text-gray-900 {
  --text-opacity:
    1;
  color:
    #1e1e1e;
  color:
    rgba(30, 30, 30, var(--text-opacity));
}

.text-red-400 {
  --text-opacity:
    1;
  color:
    #FF7259;
  color:
    rgba(255, 114, 89, var(--text-opacity));
}

.text-red-500 {
  --text-opacity:
    1;
  color:
    #FC5C3F;
  color:
    rgba(252, 92, 63, var(--text-opacity));
}

.text-red-600 {
  --text-opacity:
    1;
  color:
    #E05138;
  color:
    rgba(224, 81, 56, var(--text-opacity));
}

.text-red-700 {
  --text-opacity:
    1;
  color:
    #A63521;
  color:
    rgba(166, 53, 33, var(--text-opacity));
}

.text-red-800 {
  --text-opacity:
    1;
  color:
    #821F0D;
  color:
    rgba(130, 31, 13, var(--text-opacity));
}

.text-red-900 {
  --text-opacity:
    1;
  color:
    #5E0E00;
  color:
    rgba(94, 14, 0, var(--text-opacity));
}

.text-blue-400 {
  --text-opacity:
    1;
  color:
    #63bbf9;
  color:
    rgba(99, 187, 249, var(--text-opacity));
}

.text-blue-500 {
  --text-opacity:
    1;
  color:
    #44b1ff;
  color:
    rgba(68, 177, 255, var(--text-opacity));
}

.text-blue-600 {
  --text-opacity:
    1;
  color:
    #3197e0;
  color:
    rgba(49, 151, 224, var(--text-opacity));
}

.text-blue-700 {
  --text-opacity:
    1;
  color:
    #2b7ab1;
  color:
    rgba(43, 122, 177, var(--text-opacity));
}

.text-blue-800 {
  --text-opacity:
    1;
  color:
    #144264;
  color:
    rgba(20, 66, 100, var(--text-opacity));
}

.text-blue-900 {
  --text-opacity:
    1;
  color:
    #0a2940;
  color:
    rgba(10, 41, 64, var(--text-opacity));
}

.text-green-50 {
  --text-opacity:
    1;
  color:
    #f0fff3;
  color:
    rgba(240, 255, 243, var(--text-opacity));
}

.text-green-400 {
  --text-opacity:
    1;
  color:
    #83de9e;
  color:
    rgba(131, 222, 158, var(--text-opacity));
}

.text-green-500 {
  --text-opacity:
    1;
  color:
    #65dc8d;
  color:
    rgba(101, 220, 141, var(--text-opacity));
}

.text-green-600 {
  --text-opacity:
    1;
  color:
    #4ec776;
  color:
    rgba(78, 199, 118, var(--text-opacity));
}

.text-green-700 {
  --text-opacity:
    1;
  color:
    #27a14f;
  color:
    rgba(39, 161, 79, var(--text-opacity));
}

.text-green-800 {
  --text-opacity:
    1;
  color:
    #157033;
  color:
    rgba(21, 112, 51, var(--text-opacity));
}

.text-yellow-400 {
  --text-opacity:
    1;
  color:
    #ff8b59;
  color:
    rgba(255, 139, 89, var(--text-opacity));
}

.text-yellow-500 {
  --text-opacity:
    1;
  color:
    #ff7647;
  color:
    rgba(255, 118, 71, var(--text-opacity));
}

.text-yellow-600 {
  --text-opacity:
    1;
  color:
    #e56a40;
  color:
    rgba(229, 106, 64, var(--text-opacity));
}

.text-yellow-700 {
  --text-opacity:
    1;
  color:
    #a65821;
  color:
    rgba(166, 88, 33, var(--text-opacity));
}

.text-yellow-800 {
  --text-opacity:
    1;
  color:
    #82450d;
  color:
    rgba(130, 69, 13, var(--text-opacity));
}

.text-kit-gray-900 {
  --text-opacity:
    1;
  color:
    #1e1e1e;
  color:
    rgba(30, 30, 30, var(--text-opacity));
}

.text-kit-blue-500 {
  --text-opacity:
    1;
  color:
    #44b1ff;
  color:
    rgba(68, 177, 255, var(--text-opacity));
}

.text-kit-blue-800 {
  --text-opacity:
    1;
  color:
    #144264;
  color:
    rgba(20, 66, 100, var(--text-opacity));
}

.text-kit-purple-600 {
  --text-opacity:
    1;
  color:
    #c88ce5;
  color:
    rgba(200, 140, 229, var(--text-opacity));
}

.text-kit-purple-800 {
  --text-opacity:
    1;
  color:
    #4a265a;
  color:
    rgba(74, 38, 90, var(--text-opacity));
}

.text-kit-orange-500 {
  --text-opacity:
    1;
  color:
    #ff7647;
  color:
    rgba(255, 118, 71, var(--text-opacity));
}

.text-kit-orange-600 {
  --text-opacity:
    1;
  color:
    #e56a40;
  color:
    rgba(229, 106, 64, var(--text-opacity));
}

.text-kit-orange-800 {
  --text-opacity:
    1;
  color:
    #82450d;
  color:
    rgba(130, 69, 13, var(--text-opacity));
}

.text-system-yellow-500 {
  --text-opacity:
    1;
  color:
    #F2BA41;
  color:
    rgba(242, 186, 65, var(--text-opacity));
}

.text-system-yellow-600 {
  --text-opacity:
    1;
  color:
    #E0A931;
  color:
    rgba(224, 169, 49, var(--text-opacity));
}

.text-system-yellow-700 {
  --text-opacity:
    1;
  color:
    #A68521;
  color:
    rgba(166, 133, 33, var(--text-opacity));
}

.hover\:text-white:hover {
  --text-opacity:
    1;
  color:
    #ffffff;
  color:
    rgba(255, 255, 255, var(--text-opacity));
}

.hover\:text-black:hover {
  --text-opacity:
    1;
  color:
    #000000;
  color:
    rgba(0, 0, 0, var(--text-opacity));
}

.hover\:text-gray-600:hover {
  --text-opacity:
    1;
  color:
    #919191;
  color:
    rgba(145, 145, 145, var(--text-opacity));
}

.hover\:text-gray-700:hover {
  --text-opacity:
    1;
  color:
    #6e6e6e;
  color:
    rgba(110, 110, 110, var(--text-opacity));
}

.hover\:text-gray-800:hover {
  --text-opacity:
    1;
  color:
    #3d3d3d;
  color:
    rgba(61, 61, 61, var(--text-opacity));
}

.hover\:text-gray-900:hover {
  --text-opacity:
    1;
  color:
    #1e1e1e;
  color:
    rgba(30, 30, 30, var(--text-opacity));
}

.hover\:text-red-500:hover {
  --text-opacity:
    1;
  color:
    #FC5C3F;
  color:
    rgba(252, 92, 63, var(--text-opacity));
}

.hover\:text-red-600:hover {
  --text-opacity:
    1;
  color:
    #E05138;
  color:
    rgba(224, 81, 56, var(--text-opacity));
}

.hover\:text-red-700:hover {
  --text-opacity:
    1;
  color:
    #A63521;
  color:
    rgba(166, 53, 33, var(--text-opacity));
}

.hover\:text-blue-500:hover {
  --text-opacity:
    1;
  color:
    #44b1ff;
  color:
    rgba(68, 177, 255, var(--text-opacity));
}

.hover\:text-blue-600:hover {
  --text-opacity:
    1;
  color:
    #3197e0;
  color:
    rgba(49, 151, 224, var(--text-opacity));
}

.hover\:text-blue-700:hover {
  --text-opacity:
    1;
  color:
    #2b7ab1;
  color:
    rgba(43, 122, 177, var(--text-opacity));
}

.hover\:text-blue-800:hover {
  --text-opacity:
    1;
  color:
    #144264;
  color:
    rgba(20, 66, 100, var(--text-opacity));
}

.hover\:text-yellow-600:hover {
  --text-opacity:
    1;
  color:
    #e56a40;
  color:
    rgba(229, 106, 64, var(--text-opacity));
}

.hover\:text-yellow-900:hover {
  --text-opacity:
    1;
  color:
    #5e2d00;
  color:
    rgba(94, 45, 0, var(--text-opacity));
}

.focus\:text-white:focus {
  --text-opacity:
    1;
  color:
    #ffffff;
  color:
    rgba(255, 255, 255, var(--text-opacity));
}

.focus\:text-black:focus {
  --text-opacity:
    1;
  color:
    #000000;
  color:
    rgba(0, 0, 0, var(--text-opacity));
}

.focus\:text-gray-700:focus {
  --text-opacity:
    1;
  color:
    #6e6e6e;
  color:
    rgba(110, 110, 110, var(--text-opacity));
}

.focus\:text-gray-800:focus {
  --text-opacity:
    1;
  color:
    #3d3d3d;
  color:
    rgba(61, 61, 61, var(--text-opacity));
}

.focus\:text-gray-900:focus {
  --text-opacity:
    1;
  color:
    #1e1e1e;
  color:
    rgba(30, 30, 30, var(--text-opacity));
}

.focus\:text-red-500:focus {
  --text-opacity:
    1;
  color:
    #FC5C3F;
  color:
    rgba(252, 92, 63, var(--text-opacity));
}

.focus\:text-red-600:focus {
  --text-opacity:
    1;
  color:
    #E05138;
  color:
    rgba(224, 81, 56, var(--text-opacity));
}

.focus\:text-blue-500:focus {
  --text-opacity:
    1;
  color:
    #44b1ff;
  color:
    rgba(68, 177, 255, var(--text-opacity));
}

.focus\:text-blue-800:focus {
  --text-opacity:
    1;
  color:
    #144264;
  color:
    rgba(20, 66, 100, var(--text-opacity));
}

.group:hover .group-hover\:text-white {
  --text-opacity:
    1;
  color:
    #ffffff;
  color:
    rgba(255, 255, 255, var(--text-opacity));
}

.group:hover .group-hover\:text-black {
  --text-opacity:
    1;
  color:
    #000000;
  color:
    rgba(0, 0, 0, var(--text-opacity));
}

.group:hover .group-hover\:text-gray-100 {
  --text-opacity:
    1;
  color:
    #f0f0f0;
  color:
    rgba(240, 240, 240, var(--text-opacity));
}

.group:hover .group-hover\:text-gray-800 {
  --text-opacity:
    1;
  color:
    #3d3d3d;
  color:
    rgba(61, 61, 61, var(--text-opacity));
}

.group:hover .group-hover\:text-blue-500 {
  --text-opacity:
    1;
  color:
    #44b1ff;
  color:
    rgba(68, 177, 255, var(--text-opacity));
}

.group:hover .group-hover\:text-blue-800 {
  --text-opacity:
    1;
  color:
    #144264;
  color:
    rgba(20, 66, 100, var(--text-opacity));
}

.text-opacity-75 {
  --text-opacity:
    0.75;
}

.italic {
  font-style:
    italic;
}

.not-italic {
  font-style:
    normal;
}

.uppercase {
  text-transform:
    uppercase;
}

.lowercase {
  text-transform:
    lowercase;
}

.capitalize {
  text-transform:
    capitalize;
}

.normal-case {
  text-transform:
    none;
}

.underline {
  text-decoration:
    underline;
}

.line-through {
  text-decoration:
    line-through;
}

.no-underline {
  text-decoration:
    none;
}

.hover\:underline:hover {
  text-decoration:
    underline;
}

.hover\:no-underline:hover {
  text-decoration:
    none;
}

.focus\:underline:focus {
  text-decoration:
    underline;
}

.focus\:no-underline:focus {
  text-decoration:
    none;
}

.group:hover .group-hover\:underline {
  text-decoration:
    underline;
}

.antialiased {
  -webkit-font-smoothing:
    antialiased;
  -moz-osx-font-smoothing:
    grayscale;
}

.subpixel-antialiased {
  -webkit-font-smoothing:
    auto;
  -moz-osx-font-smoothing:
    auto;
}

.ordinal, .slashed-zero, .lining-nums, .oldstyle-nums, .proportional-nums, .tabular-nums, .diagonal-fractions, .stacked-fractions {
  --font-variant-numeric-ordinal:
    var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-slashed-zero:
    var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-figure:
    var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-spacing:
    var(--tailwind-empty,/*!*/ /*!*/);
  --font-variant-numeric-fraction:
    var(--tailwind-empty,/*!*/ /*!*/);
  font-variant-numeric:
    var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
}

.normal-nums {
  font-variant-numeric:
    normal;
}

.ordinal {
  --font-variant-numeric-ordinal:
    ordinal;
}

.slashed-zero {
  --font-variant-numeric-slashed-zero:
    slashed-zero;
}

.lining-nums {
  --font-variant-numeric-figure:
    lining-nums;
}

.oldstyle-nums {
  --font-variant-numeric-figure:
    oldstyle-nums;
}

.proportional-nums {
  --font-variant-numeric-spacing:
    proportional-nums;
}

.tabular-nums {
  --font-variant-numeric-spacing:
    tabular-nums;
}

.diagonal-fractions {
  --font-variant-numeric-fraction:
    diagonal-fractions;
}

.stacked-fractions {
  --font-variant-numeric-fraction:
    stacked-fractions;
}

.tracking-wide {
  letter-spacing:
    0.025em;
}

.tracking-wider {
  letter-spacing:
    0.05em;
}

.tracking-widest {
  letter-spacing:
    0.1em;
}

.select-none {
  user-select:
    none;
}

.select-text {
  user-select:
    text;
}

.select-all {
  user-select:
    all;
}

.select-auto {
  user-select:
    auto;
}

.align-baseline {
  vertical-align:
    baseline;
}

.align-top {
  vertical-align:
    top;
}

.align-middle {
  vertical-align:
    middle;
}

.align-bottom {
  vertical-align:
    bottom;
}

.align-text-top {
  vertical-align:
    text-top;
}

.align-text-bottom {
  vertical-align:
    text-bottom;
}

.visible {
  visibility:
    visible;
}

.invisible {
  visibility:
    hidden;
}

.whitespace-normal {
  white-space:
    normal;
}

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

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

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

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

.break-normal {
  word-wrap:
    normal;
  overflow-wrap:
    normal;
  word-break:
    normal;
}

.break-words {
  word-wrap:
    break-word;
  overflow-wrap:
    break-word;
}

.break-all {
  word-break:
    break-all;
}

.truncate {
  overflow:
    hidden;
  text-overflow:
    ellipsis;
  white-space:
    nowrap;
}

.w-0 {
  width:
    0;
}

.w-1 {
  width:
    0.25rem;
}

.w-2 {
  width:
    0.5rem;
}

.w-3 {
  width:
    0.75rem;
}

.w-4 {
  width:
    1rem;
}

.w-5 {
  width:
    1.25rem;
}

.w-6 {
  width:
    1.5rem;
}

.w-8 {
  width:
    2rem;
}

.w-10 {
  width:
    2.5rem;
}

.w-12 {
  width:
    3rem;
}

.w-16 {
  width:
    4rem;
}

.w-20 {
  width:
    5rem;
}

.w-24 {
  width:
    6rem;
}

.w-32 {
  width:
    8rem;
}

.w-40 {
  width:
    10rem;
}

.w-48 {
  width:
    12rem;
}

.w-56 {
  width:
    14rem;
}

.w-64 {
  width:
    16rem;
}

.w-auto {
  width:
    auto;
}

.w-px {
  width:
    1px;
}

.w-1\/2 {
  width:
    50%;
}

.w-1\/3 {
  width:
    33.33333%;
}

.w-2\/3 {
  width:
    66.66667%;
}

.w-1\/4 {
  width:
    25%;
}

.w-3\/4 {
  width:
    75%;
}

.w-1\/5 {
  width:
    20%;
}

.w-2\/5 {
  width:
    40%;
}

.w-3\/5 {
  width:
    60%;
}

.w-4\/5 {
  width:
    80%;
}

.w-1\/6 {
  width:
    16.66667%;
}

.w-2\/6 {
  width:
    33.33333%;
}

.w-3\/6 {
  width:
    50%;
}

.w-4\/6 {
  width:
    66.66667%;
}

.w-5\/6 {
  width:
    83.33333%;
}

.w-1\/12 {
  width:
    8.33333%;
}

.w-2\/12 {
  width:
    16.66667%;
}

.w-3\/12 {
  width:
    25%;
}

.w-4\/12 {
  width:
    33.33333%;
}

.w-7\/12 {
  width:
    58.33333%;
}

.w-8\/12 {
  width:
    66.66667%;
}

.w-10\/12 {
  width:
    83.33333%;
}

.w-11\/12 {
  width:
    91.66667%;
}

.w-full {
  width:
    100%;
}

.w-screen {
  width:
    100vw;
}

.z-0 {
  z-index:
    0;
}

.z-10 {
  z-index:
    10;
}

.z-20 {
  z-index:
    20;
}

.z-30 {
  z-index:
    30;
}

.z-50 {
  z-index:
    50;
}

.z-1000 {
  z-index:
    1000;
}

.gap-0 {
  grid-gap:
    0;
  gap:
    0;
}

.gap-1 {
  grid-gap:
    0.25rem;
  gap:
    0.25rem;
}

.gap-2 {
  grid-gap:
    0.5rem;
  gap:
    0.5rem;
}

.gap-3 {
  grid-gap:
    0.75rem;
  gap:
    0.75rem;
}

.gap-4 {
  grid-gap:
    1rem;
  gap:
    1rem;
}

.gap-5 {
  grid-gap:
    1.25rem;
  gap:
    1.25rem;
}

.gap-6 {
  grid-gap:
    1.5rem;
  gap:
    1.5rem;
}

.gap-8 {
  grid-gap:
    2rem;
  gap:
    2rem;
}

.gap-10 {
  grid-gap:
    2.5rem;
  gap:
    2.5rem;
}

.gap-12 {
  grid-gap:
    3rem;
  gap:
    3rem;
}

.gap-16 {
  grid-gap:
    4rem;
  gap:
    4rem;
}

.gap-24 {
  grid-gap:
    6rem;
  gap:
    6rem;
}

.col-gap-6 {
  grid-column-gap:
    1.5rem;
  column-gap:
    1.5rem;
}

.gap-x-1 {
  grid-column-gap:
    0.25rem;
  column-gap:
    0.25rem;
}

.gap-x-2 {
  grid-column-gap:
    0.5rem;
  column-gap:
    0.5rem;
}

.gap-x-4 {
  grid-column-gap:
    1rem;
  column-gap:
    1rem;
}

.gap-x-8 {
  grid-column-gap:
    2rem;
  column-gap:
    2rem;
}

.gap-y-2 {
  grid-row-gap:
    0.5rem;
  row-gap:
    0.5rem;
}

.gap-y-3 {
  grid-row-gap:
    0.75rem;
  row-gap:
    0.75rem;
}

.gap-y-4 {
  grid-row-gap:
    1rem;
  row-gap:
    1rem;
}

.grid-flow-row {
  grid-auto-flow:
    row;
}

.grid-flow-col {
  grid-auto-flow:
    column;
}

.grid-flow-row-dense {
  grid-auto-flow:
    row dense;
}

.grid-flow-col-dense {
  grid-auto-flow:
    column dense;
}

.grid-cols-1 {
  grid-template-columns:
    repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns:
    repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns:
    repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns:
    repeat(7, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns:
    repeat(9, minmax(0, 1fr));
}

.auto-cols-fr {
  grid-auto-columns:
    minmax(0, 1fr);
}

.col-auto {
  grid-column:
    auto;
}

.col-span-1 {
  grid-column:
    span 1 / span 1;
}

.col-span-2 {
  grid-column:
    span 2 / span 2;
}

.col-span-3 {
  grid-column:
    span 3 / span 3;
}

.col-span-4 {
  grid-column:
    span 4 / span 4;
}

.col-span-5 {
  grid-column:
    span 5 / span 5;
}

.col-span-full {
  grid-column:
    1 / -1;
}

.col-start-1 {
  grid-column-start:
    1;
}

.col-start-2 {
  grid-column-start:
    2;
}

.col-start-3 {
  grid-column-start:
    3;
}

.col-start-5 {
  grid-column-start:
    5;
}

.col-end-2 {
  grid-column-end:
    2;
}

.grid-rows-1 {
  grid-template-rows:
    repeat(1, minmax(0, 1fr));
}

.grid-rows-6 {
  grid-template-rows:
    repeat(6, minmax(0, 1fr));
}

.auto-rows-auto {
  grid-auto-rows:
    auto;
}

.auto-rows-fr {
  grid-auto-rows:
    minmax(0, 1fr);
}

.row-span-1 {
  grid-row:
    span 1 / span 1;
}

.row-span-5 {
  grid-row:
    span 5 / span 5;
}

.row-span-6 {
  grid-row:
    span 6 / span 6;
}

.row-start-1 {
  grid-row-start:
    1;
}

.row-end-2 {
  grid-row-end:
    2;
}

.row-end-3 {
  grid-row-end:
    3;
}

.transform {
  --transform-translate-x:
    0;
  --transform-translate-y:
    0;
  --transform-rotate:
    0;
  --transform-skew-x:
    0;
  --transform-skew-y:
    0;
  --transform-scale-x:
    1;
  --transform-scale-y:
    1;
  transform:
    translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
}

.transform-none {
  transform:
    none;
}

.origin-left {
  transform-origin:
    left;
}

.scale-75 {
  --transform-scale-x:
    .75;
  --transform-scale-y:
    .75;
}

.scale-100 {
  --transform-scale-x:
    1;
  --transform-scale-y:
    1;
}

.hover\:scale-90:hover {
  --transform-scale-x:
    .9;
  --transform-scale-y:
    .9;
}

.hover\:scale-105:hover {
  --transform-scale-x:
    1.05;
  --transform-scale-y:
    1.05;
}

.rotate-0 {
  --transform-rotate:
    0;
}

.rotate-90 {
  --transform-rotate:
    90deg;
}

.rotate-180 {
  --transform-rotate:
    180deg;
}

.-rotate-180 {
  --transform-rotate:
    -180deg;
}

.translate-x-0 {
  --transform-translate-x:
    0;
}

.translate-x-full {
  --transform-translate-x:
    100%;
}

.-translate-y-2 {
  --transform-translate-y:
    -0.5rem;
}

.hover\:-translate-y-1:hover {
  --transform-translate-y:
    -0.25rem;
}

.transition-all {
  transition-property:
    all;
}

.transition {
  transition-property:
    background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}

.transition-colors {
  transition-property:
    background-color, border-color, color, fill, stroke;
}

.transition-opacity {
  transition-property:
    opacity;
}

.transition-shadow {
  transition-property:
    box-shadow;
}

.transition-transform {
  transition-property:
    transform;
}

.ease-linear {
  transition-timing-function:
    linear;
}

.ease-in {
  transition-timing-function:
    cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
  transition-timing-function:
    cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out {
  transition-timing-function:
    cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-75 {
  transition-duration:
    75ms;
}

.duration-100 {
  transition-duration:
    100ms;
}

.duration-150 {
  transition-duration:
    150ms;
}

.duration-200 {
  transition-duration:
    200ms;
}

.duration-300 {
  transition-duration:
    300ms;
}

.duration-500 {
  transition-duration:
    500ms;
}

.duration-1000 {
  transition-duration:
    1000ms;
}

.delay-75 {
  transition-delay:
    75ms;
}

.delay-150 {
  transition-delay:
    150ms;
}

.delay-200 {
  transition-delay:
    200ms;
}

@keyframes spin {
  to {
    transform:
    rotate(360deg);
  }
}

@keyframes ping {
  75%, 100% {
    transform:
    scale(2);
    opacity:
    0;
  }
}

@keyframes pulse {
  50% {
    opacity:
    .5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform:
    translateY(-25%);
    animation-timing-function:
    cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform:
    none;
    animation-timing-function:
    cubic-bezier(0,0,0.2,1);
  }
}

.animate-spin {
  animation:
    spin 1s linear infinite;
}

.animate-pulse {
  animation:
    pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
  animation:
    bounce 1s infinite;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base */

hr {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

/* Temp button/input helper */

.leading-5 {
  line-height: 1.25rem;
}

.design-custom-box {
  --active: var(--active-checkbox, rgb(var(--green-500-rgb)));
  --active-inner: var(--active-checkbox-inner, #fff);
  --focus: 2px rgba(var(--blue-500-rgb), 0.3);
  --border: var(--gray-200);
  --border-hover: var(--gray-200);
  --background: #fff;
  --disabled: #f6f8ff;
  --disabled-inner: #e1e6f9;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 20px;
  width: 20px;
  outline: none !important;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0;
  cursor: pointer;
  border: 1px solid var(--bc, var(--border));
  background: var(--b, var(--background));
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.2s;
}

.design-custom-box:checked {
  --b: var(--active);
  --bc: var(--active);
  --d-o: 0.3s;
  --d-t: 0.6s;
  --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
  --o: 1;
  --r: 43deg;
  --ab: var(--active-inner);
  --x: 17px;
}

.design-custom-box:after {
  content: "";
  display: block;
  position: absolute;
  opacity: var(--o, 0);
  border: 2px solid var(--active-inner);
}

.design-custom-box:disabled {
  --b: var(--disabled);
  cursor: not-allowed;
  opacity: 0.9;
}

.design-custom-box:disabled:checked {
  --b: var(--disabled-inner);
  --bc: var(--border);
}

.design-custom-box:disabled:not(:checked) {
  opacity: 0.6;
}

.design-custom-box:hover:not(:checked):not(:disabled) {
  --bc: var(--border-hover);
}

.design-custom-box:focus {
  box-shadow: 0 0 0 var(--focus);
}

.design-checkbox {
  border-radius: 0.4rem;
}

.design-checkbox:after {
  content: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.21326 0.176602C4.65788 0.184808 5.02498 0.551902 5.03318 0.99653L5.16675 8.23375C5.18174 8.29327 5.19023 8.35519 5.19141 8.4187C5.19961 8.86333 4.84582 9.21712 4.40119 9.20891L1.11157 9.1482C0.666936 9.13999 0.299843 8.7729 0.291636 8.32827C0.283431 7.88364 0.637221 7.52985 1.08185 7.53806L3.54515 7.58352L3.42304 0.966815C3.41484 0.522186 3.76863 0.168397 4.21326 0.176602Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  transition:
    transform var(--d-t, 0.3s) var(--d-t-e, ease),
    opacity var(--d-o, 0.2s);
  left: 6.5px;
  top: -4px;
  transform: rotate(var(--r, 10deg));
  border: none;
}

.design-checkbox:indeterminate {
  --b: var(--active);
  --bc: var(--active);
}

.design-checkbox:indeterminate::after {
  content: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23FFFFFF'%3E%3Cpath d='M16 11.25a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1 0-1.5h8z'%3E%3C/path%3E%3C/svg%3E");
  left: -3px;
  top: -3px;
  opacity: 1;
  transform: none;
}

.design-radio {
  border-radius: 100%;
  flex-shrink: 0;
}

.design-radio:after {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.design-slider {
  position: relative;
  --range: calc(var(--max) - var(--min));
  --ratio: calc((var(--rangeValue) - var(--min)) / var(--range));
  --progress: calc(var(--ratio) * 100%);
  --progressColor: var(--primary-500);
  --thumbColor: var(--primary-500);
  --trackColor: var(--gray-300);
}

.design-slider input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  height: 22px !important;
}

.design-slider input[type="range"]:focus {
  outline: none;
}

/* CHROME */

.design-slider input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background-image: linear-gradient(var(--progressColor), var(--progressColor));
  background-size: var(--progress) 100%;
  background-repeat: no-repeat;
  background-color: var(--trackColor);
  border-radius: 2px;
}

.design-slider input[type="range"]::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 8px;
  background: var(--thumbColor);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6px;
}

/* FIREFOX */

.design-slider input[type="range"]::-moz-range-progress {
  background: var(--progressColor);
}

.design-slider input[type="range"]::-moz-range-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background: var(--trackColor);
  border-radius: 2px;
}

.design-slider input[type="range"]::-moz-range-thumb {
  border: 0;
  height: 16px;
  width: 16px;
  border-radius: 8px;
  background: var(--thumbColor);
  cursor: pointer;
}

/* Utilities */

.outline-blue {
  outline: none;
  border-color: rgba(var(--blue-500-rgb), 0.3);
  box-shadow: rgba(var(--blue-500-rgb), 0.3) 0 0 0 1px;
}

.outline-red {
  outline: none;
  border-color: rgb(251, 80, 88);
  box-shadow: rgb(251, 80, 88) 0 0 0 1px;
}

.outline-green {
  outline: none;
  border-color: rgb(88, 157, 120);
  box-shadow: rgb(88, 157, 120) 0 0 0 1px;
}

.focus\:outline-blue:focus {
  outline: none;
  border-color: rgba(var(--blue-500-rgb), 0.3);
  box-shadow: rgba(var(--blue-500-rgb), 0.3) 0 0 0 1px;
}

.focus\:outline-red:focus {
  outline: none;
  border-color: rgb(251, 80, 88);
  box-shadow: rgb(251, 80, 88) 0 0 0 1px;
}

.focus\:outline-green:focus {
  outline: none;
  border-color: rgb(88, 157, 120);
  box-shadow: rgb(88, 157, 120) 0 0 0 1px;
}

.outline-blue {
  outline: none;
  border-color: rgba(var(--blue-500-rgb), 0.3);
  box-shadow: rgba(var(--blue-500-rgb), 0.3) 0 0 0 1px;
}

.outline-red {
  outline: none;
  border-color: rgb(251, 80, 88);
  box-shadow: rgb(251, 80, 88) 0 0 0 1px;
}

.outline-green {
  outline: none;
  border-color: rgb(88, 157, 120);
  box-shadow: rgb(88, 157, 120) 0 0 0 1px;
}

.focus-visible\:outline-blue:focus-visible {
  outline: none;
  border-color: rgba(var(--blue-500-rgb), 0.3);
  box-shadow: rgba(var(--blue-500-rgb), 0.3) 0 0 0 1px;
}

.focus-visible\:outline-red:focus-visible {
  outline: none;
  border-color: rgb(251, 80, 88);
  box-shadow: rgb(251, 80, 88) 0 0 0 1px;
}

.focus-visible\:outline-green:focus-visible {
  outline: none;
  border-color: rgb(88, 157, 120);
  box-shadow: rgb(88, 157, 120) 0 0 0 1px;
}

.outline-blue {
  outline: none;
  border-color: rgba(var(--blue-500-rgb), 0.3);
  box-shadow: rgba(var(--blue-500-rgb), 0.3) 0 0 0 1px;
}

.outline-red {
  outline: none;
  border-color: rgb(251, 80, 88);
  box-shadow: rgb(251, 80, 88) 0 0 0 1px;
}

.outline-green {
  outline: none;
  border-color: rgb(88, 157, 120);
  box-shadow: rgb(88, 157, 120) 0 0 0 1px;
}

.border-blue {
  border-color: rgba(var(--blue-500-rgb), 0.3);
}

.focus-within\:outline-blue:focus-within {
  outline: none;
  border-color: rgba(var(--blue-500-rgb), 0.3);
  box-shadow: rgba(var(--blue-500-rgb), 0.3) 0 0 0 1px;
}

.focus-within\:outline-red:focus-within {
  outline: none;
  border-color: rgb(251, 80, 88);
  box-shadow: rgb(251, 80, 88) 0 0 0 1px;
}

.focus-within\:outline-green:focus-within {
  outline: none;
  border-color: rgb(88, 157, 120);
  box-shadow: rgb(88, 157, 120) 0 0 0 1px;
}

.focus-within\:border-blue:focus-within {
  border-color: rgba(var(--blue-500-rgb), 0.3);
}

.right-10 {
  right: 10px;
}

/* Reach UI */

:root {
  --reach-tooltip: 1;
}

[data-reach-tooltip] {
  background: #000000;
  box-shadow: 0 2px 9px 0 rgba(210, 214, 220, 0.45);
  border: solid 1px #000000;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.75rem;
  pointer-events: none;
  position: absolute;
  padding: 2px 6px;
  white-space: nowrap;
  z-index: 10; /* 10: To render above other parallel portals that may come after it in DOM */
}

[data-reach-dialog-overlay] {
  background: hsla(0, 0%, 0%, 0.7);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  z-index: 51;
}

[data-reach-dialog-content] {
  outline: none;
}

/* Popover Styles */

.popover-arrow .stroke {
  fill: var(--gray-200);
}

.popover-arrow .fill {
  fill: #ffffff;
}

/* DatePickerInput Styles */

.react-datepicker-wrapper {
  display: block !important;
}

.react-datepicker-popper {
  width: 330px !important;
}

.react-datepicker {
  border: none !important;
  overflow: hidden !important;
  box-shadow:
    0 3px 22px 0 rgba(176, 184, 190, 0.18) !important;
  border-radius:
    0.625rem !important;
}

.react-datepicker__header {
  --bg-opacity:
    1 !important;
  background-color:
    #ffffff !important;
  background-color:
    rgba(255, 255, 255, var(--bg-opacity)) !important;
  border-style:
    none !important;
}

.react-datepicker__day-name {
  margin-top:
    0 !important;
  margin-bottom:
    0 !important;
}

.react-datepicker__triangle {
  display: none !important;
}

.react-datepicker__navigation--previous {
  left: 3px !important;
}

.react-datepicker__navigation--next {
  right: 88px !important;
}

.design-date-field .react-datepicker__navigation--next {
  right: 10px !important;
}

.react-datepicker__current-month {
  font-weight:
    400 !important;
}

.react-datepicker__day-names {
  --bg-opacity:
    1 !important;
  background-color:
    #f7f7f7 !important;
  background-color:
    rgba(247, 247, 247, var(--bg-opacity)) !important;
  border-bottom-width:
    1px !important;
  border-top-width:
    1px !important;
  --border-opacity:
    1 !important;
  border-color:
    #e3e3e3 !important;
  border-color:
    rgba(227, 227, 227, var(--border-opacity)) !important;
}

.react-datepicker__header--time {
  padding-top:
    0.25rem !important;
  padding-bottom:
    0.25rem !important;
}

.react-datepicker-time__header {
  font-weight:
    400 !important;
}

.react-datepicker__time-list-item {
  padding-top:
    0.25rem !important;
  padding-bottom:
    0.25rem !important;
  padding-left:
    0.5rem !important;
  padding-right:
    0.5rem !important;
  height:
    auto !important;
}

.react-datepicker-popper[data-placement^="bottom"] {
  margin-top: 0px !important;
}

.design-progress {
  height: 3px;
  width: 100%;
  pointer-events: none;
}

.design-progress .bar {
  background: var(--blue-500);
}

/* Bounce Spinner */

.loading-animation {
  width: 40px;
  height: 40px;
  position: relative;
}

.loading-animation--top,
.loading-animation--bottom {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #c1c1c1;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
}

.loading-animation--bottom {
  animation-delay: -1s;
}

/* Overides app styles for plain inputs */

.design-input {
  border: 0 !important;
  color: var(--gray-800) !important;
  padding: 0 !important;
  font-size: 14px !important;
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

@keyframes slide-in-from-right {
  from {
    transform: translateX(100%);
  }
}

/* Adjusts default toast width and fixes a conflict with Bootstrap. */

.Toaster__manager-bottom {
  max-width: 700px !important;
}

@media (min-width: 768px) {
  .Toaster__message .md\:flex {
    display: flex !important;
  }
}

@media (min-width: 640px) {
  .sm\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse:
    0;
    margin-top:
    calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom:
    calc(0px * var(--space-y-reverse));
  }

  .sm\:space-x-2 > :not(template) ~ :not(template) {
    --space-x-reverse:
    0;
    margin-right:
    calc(0.5rem * var(--space-x-reverse));
    margin-left:
    calc(0.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:space-x-6 > :not(template) ~ :not(template) {
    --space-x-reverse:
    0;
    margin-right:
    calc(1.5rem * var(--space-x-reverse));
    margin-left:
    calc(1.5rem * calc(1 - var(--space-x-reverse)));
  }

  .sm\:divide-y-0 > :not(template) ~ :not(template) {
    --divide-y-reverse:
    0;
    border-top-width:
    calc(0px * calc(1 - var(--divide-y-reverse)));
    border-bottom-width:
    calc(0px * var(--divide-y-reverse));
  }

  .sm\:divide-x > :not(template) ~ :not(template) {
    --divide-x-reverse:
    0;
    border-right-width:
    calc(1px * var(--divide-x-reverse));
    border-left-width:
    calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .sm\:rounded-lg {
    border-radius:
    0.75rem;
  }

  .sm\:rounded-xl {
    border-radius:
    0.875rem;
  }

  .sm\:rounded-full {
    border-radius:
    9999px;
  }

  .sm\:rounded-tr-none {
    border-top-right-radius:
    0;
  }

  .sm\:rounded-bl-xl {
    border-bottom-left-radius:
    0.875rem;
  }

  .sm\:border-0 {
    border-width:
    0;
  }

  .sm\:border {
    border-width:
    1px;
  }

  .sm\:border-t-0 {
    border-top-width:
    0;
  }

  .sm\:border-b-0 {
    border-bottom-width:
    0;
  }

  .sm\:border-l-4 {
    border-left-width:
    4px;
  }

  .sm\:block {
    display:
    block;
  }

  .sm\:inline-block {
    display:
    inline-block;
  }

  .sm\:inline {
    display:
    inline;
  }

  .sm\:flex {
    display:
    flex;
  }

  .sm\:hidden {
    display:
    none;
  }

  .sm\:flex-row {
    flex-direction:
    row;
  }

  .sm\:flex-row-reverse {
    flex-direction:
    row-reverse;
  }

  .sm\:flex-col {
    flex-direction:
    column;
  }

  .sm\:flex-no-wrap {
    flex-wrap:
    nowrap;
  }

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

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

  .sm\:self-auto {
    align-self:
    auto;
  }

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

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

  .sm\:justify-start {
    justify-content:
    flex-start;
  }

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

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

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

  .sm\:flex-1 {
    flex:
    1 1 0%;
  }

  .sm\:flex-none {
    flex:
    none;
  }

  .sm\:flex-grow-0 {
    flex-grow:
    0;
  }

  .sm\:flex-shrink-0 {
    flex-shrink:
    0;
  }

  .sm\:order-1 {
    order:
    1;
  }

  .sm\:h-4 {
    height:
    1rem;
  }

  .sm\:h-16 {
    height:
    4rem;
  }

  .sm\:h-24 {
    height:
    6rem;
  }

  .sm\:h-40 {
    height:
    10rem;
  }

  .sm\:h-48 {
    height:
    12rem;
  }

  .sm\:h-full {
    height:
    100%;
  }

  .sm\:text-sm {
    font-size:
    0.875rem;
  }

  .sm\:text-base {
    font-size:
    1rem;
  }

  .sm\:text-lg {
    font-size:
    1.125rem;
  }

  .sm\:text-xl {
    font-size:
    1.25rem;
  }

  .sm\:text-2xl {
    font-size:
    1.5rem;
  }

  .sm\:text-3xl {
    font-size:
    1.875rem;
  }

  .sm\:text-4xl {
    font-size:
    2.25rem;
  }

  .sm\:text-5xl {
    font-size:
    3rem;
  }

  .sm\:text-6xl {
    font-size:
    4rem;
  }

  .sm\:m-0 {
    margin:
    0;
  }

  .sm\:m-6 {
    margin:
    1.5rem;
  }

  .sm\:mx-0 {
    margin-left:
    0;
    margin-right:
    0;
  }

  .sm\:my-4 {
    margin-top:
    1rem;
    margin-bottom:
    1rem;
  }

  .sm\:my-6 {
    margin-top:
    1.5rem;
    margin-bottom:
    1.5rem;
  }

  .sm\:my-8 {
    margin-top:
    2rem;
    margin-bottom:
    2rem;
  }

  .sm\:my-10 {
    margin-top:
    2.5rem;
    margin-bottom:
    2.5rem;
  }

  .sm\:mx-10 {
    margin-left:
    2.5rem;
    margin-right:
    2.5rem;
  }

  .sm\:mx-12 {
    margin-left:
    3rem;
    margin-right:
    3rem;
  }

  .sm\:my-20 {
    margin-top:
    5rem;
    margin-bottom:
    5rem;
  }

  .sm\:-mx-6 {
    margin-left:
    -1.5rem;
    margin-right:
    -1.5rem;
  }

  .sm\:mt-0 {
    margin-top:
    0;
  }

  .sm\:mr-0 {
    margin-right:
    0;
  }

  .sm\:mb-0 {
    margin-bottom:
    0;
  }

  .sm\:ml-0 {
    margin-left:
    0;
  }

  .sm\:mt-1 {
    margin-top:
    0.25rem;
  }

  .sm\:mt-2 {
    margin-top:
    0.5rem;
  }

  .sm\:mr-2 {
    margin-right:
    0.5rem;
  }

  .sm\:ml-2 {
    margin-left:
    0.5rem;
  }

  .sm\:mt-3 {
    margin-top:
    0.75rem;
  }

  .sm\:ml-3 {
    margin-left:
    0.75rem;
  }

  .sm\:mr-4 {
    margin-right:
    1rem;
  }

  .sm\:mt-6 {
    margin-top:
    1.5rem;
  }

  .sm\:mr-6 {
    margin-right:
    1.5rem;
  }

  .sm\:mb-6 {
    margin-bottom:
    1.5rem;
  }

  .sm\:mb-8 {
    margin-bottom:
    2rem;
  }

  .sm\:mb-12 {
    margin-bottom:
    3rem;
  }

  .sm\:mt-16 {
    margin-top:
    4rem;
  }

  .sm\:mb-16 {
    margin-bottom:
    4rem;
  }

  .sm\:mt-32 {
    margin-top:
    8rem;
  }

  .sm\:mb-32 {
    margin-bottom:
    8rem;
  }

  .sm\:-mt-2 {
    margin-top:
    -0.5rem;
  }

  .sm\:-ml-12 {
    margin-left:
    -3rem;
  }

  .sm\:-mt-16 {
    margin-top:
    -4rem;
  }

  .sm\:max-w-xs {
    max-width:
    20rem;
  }

  .sm\:max-w-xl {
    max-width:
    36rem;
  }

  .sm\:p-0 {
    padding:
    0;
  }

  .sm\:p-6 {
    padding:
    1.5rem;
  }

  .sm\:p-8 {
    padding:
    2rem;
  }

  .sm\:p-10 {
    padding:
    2.5rem;
  }

  .sm\:p-12 {
    padding:
    3rem;
  }

  .sm\:p-16 {
    padding:
    4rem;
  }

  .sm\:py-0 {
    padding-top:
    0;
    padding-bottom:
    0;
  }

  .sm\:px-0 {
    padding-left:
    0;
    padding-right:
    0;
  }

  .sm\:py-3 {
    padding-top:
    0.75rem;
    padding-bottom:
    0.75rem;
  }

  .sm\:px-3 {
    padding-left:
    0.75rem;
    padding-right:
    0.75rem;
  }

  .sm\:py-4 {
    padding-top:
    1rem;
    padding-bottom:
    1rem;
  }

  .sm\:px-4 {
    padding-left:
    1rem;
    padding-right:
    1rem;
  }

  .sm\:py-6 {
    padding-top:
    1.5rem;
    padding-bottom:
    1.5rem;
  }

  .sm\:px-6 {
    padding-left:
    1.5rem;
    padding-right:
    1.5rem;
  }

  .sm\:py-8 {
    padding-top:
    2rem;
    padding-bottom:
    2rem;
  }

  .sm\:px-8 {
    padding-left:
    2rem;
    padding-right:
    2rem;
  }

  .sm\:py-10 {
    padding-top:
    2.5rem;
    padding-bottom:
    2.5rem;
  }

  .sm\:px-10 {
    padding-left:
    2.5rem;
    padding-right:
    2.5rem;
  }

  .sm\:py-12 {
    padding-top:
    3rem;
    padding-bottom:
    3rem;
  }

  .sm\:px-12 {
    padding-left:
    3rem;
    padding-right:
    3rem;
  }

  .sm\:py-16 {
    padding-top:
    4rem;
    padding-bottom:
    4rem;
  }

  .sm\:px-16 {
    padding-left:
    4rem;
    padding-right:
    4rem;
  }

  .sm\:py-20 {
    padding-top:
    5rem;
    padding-bottom:
    5rem;
  }

  .sm\:py-24 {
    padding-top:
    6rem;
    padding-bottom:
    6rem;
  }

  .sm\:px-24 {
    padding-left:
    6rem;
    padding-right:
    6rem;
  }

  .sm\:pt-0 {
    padding-top:
    0;
  }

  .sm\:pr-0 {
    padding-right:
    0;
  }

  .sm\:pb-0 {
    padding-bottom:
    0;
  }

  .sm\:pl-4 {
    padding-left:
    1rem;
  }

  .sm\:pr-5 {
    padding-right:
    1.25rem;
  }

  .sm\:pb-6 {
    padding-bottom:
    1.5rem;
  }

  .sm\:pr-10 {
    padding-right:
    2.5rem;
  }

  .sm\:pb-12 {
    padding-bottom:
    3rem;
  }

  .sm\:pl-12 {
    padding-left:
    3rem;
  }

  .sm\:pt-16 {
    padding-top:
    4rem;
  }

  .sm\:pr-16 {
    padding-right:
    4rem;
  }

  .sm\:pl-16 {
    padding-left:
    4rem;
  }

  .sm\:pt-24 {
    padding-top:
    6rem;
  }

  .sm\:pb-24 {
    padding-bottom:
    6rem;
  }

  .sm\:pb-32 {
    padding-bottom:
    8rem;
  }

  .sm\:pb-4\/5 {
    padding-bottom:
    80%;
  }

  .sm\:pb-full {
    padding-bottom:
    100%;
  }

  .sm\:relative {
    position:
    relative;
  }

  .sm\:text-left {
    text-align:
    left;
  }

  .sm\:text-right {
    text-align:
    right;
  }

  .sm\:truncate {
    overflow:
    hidden;
    text-overflow:
    ellipsis;
    white-space:
    nowrap;
  }

  .sm\:w-4 {
    width:
    1rem;
  }

  .sm\:w-16 {
    width:
    4rem;
  }

  .sm\:w-24 {
    width:
    6rem;
  }

  .sm\:w-40 {
    width:
    10rem;
  }

  .sm\:w-48 {
    width:
    12rem;
  }

  .sm\:w-auto {
    width:
    auto;
  }

  .sm\:w-1\/2 {
    width:
    50%;
  }

  .sm\:w-10\/12 {
    width:
    83.33333%;
  }

  .sm\:w-full {
    width:
    100%;
  }

  .sm\:gap-0 {
    grid-gap:
    0;
    gap:
    0;
  }

  .sm\:gap-3 {
    grid-gap:
    0.75rem;
    gap:
    0.75rem;
  }

  .sm\:gap-4 {
    grid-gap:
    1rem;
    gap:
    1rem;
  }

  .sm\:gap-6 {
    grid-gap:
    1.5rem;
    gap:
    1.5rem;
  }

  .sm\:gap-8 {
    grid-gap:
    2rem;
    gap:
    2rem;
  }

  .sm\:gap-10 {
    grid-gap:
    2.5rem;
    gap:
    2.5rem;
  }

  .sm\:gap-12 {
    grid-gap:
    3rem;
    gap:
    3rem;
  }

  .sm\:gap-16 {
    grid-gap:
    4rem;
    gap:
    4rem;
  }

  .sm\:gap-20 {
    grid-gap:
    5rem;
    gap:
    5rem;
  }

  .sm\:gap-32 {
    grid-gap:
    8rem;
    gap:
    8rem;
  }

  .sm\:grid-flow-col {
    grid-auto-flow:
    column;
  }

  .sm\:grid-cols-1 {
    grid-template-columns:
    repeat(1, minmax(0, 1fr));
  }

  .sm\:grid-cols-2 {
    grid-template-columns:
    repeat(2, minmax(0, 1fr));
  }

  .sm\:grid-cols-3 {
    grid-template-columns:
    repeat(3, minmax(0, 1fr));
  }

  .sm\:grid-cols-12 {
    grid-template-columns:
    repeat(12, minmax(0, 1fr));
  }

  .sm\:auto-cols-fr {
    grid-auto-columns:
    minmax(0, 1fr);
  }

  .sm\:col-span-6 {
    grid-column:
    span 6 / span 6;
  }

  .sm\:rotate-0 {
    --transform-rotate:
    0;
  }
}

@media (min-width: 768px) {
  .md\:space-y-0 > :not(template) ~ :not(template) {
    --space-y-reverse:
    0;
    margin-top:
    calc(0px * calc(1 - var(--space-y-reverse)));
    margin-bottom:
    calc(0px * var(--space-y-reverse));
  }

  .md\:space-x-8 > :not(template) ~ :not(template) {
    --space-x-reverse:
    0;
    margin-right:
    calc(2rem * var(--space-x-reverse));
    margin-left:
    calc(2rem * calc(1 - var(--space-x-reverse)));
  }

  .md\:space-x-12 > :not(template) ~ :not(template) {
    --space-x-reverse:
    0;
    margin-right:
    calc(3rem * var(--space-x-reverse));
    margin-left:
    calc(3rem * calc(1 - var(--space-x-reverse)));
  }

  .md\:divide-x > :not(template) ~ :not(template) {
    --divide-x-reverse:
    0;
    border-right-width:
    calc(1px * var(--divide-x-reverse));
    border-left-width:
    calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .md\:border-opacity-100 {
    --border-opacity:
    1;
  }

  .md\:rounded-none {
    border-radius:
    0;
  }

  .md\:rounded-full {
    border-radius:
    9999px;
  }

  .md\:border-t-0 {
    border-top-width:
    0;
  }

  .md\:border-l-4 {
    border-left-width:
    4px;
  }

  .md\:border-r {
    border-right-width:
    1px;
  }

  .md\:block {
    display:
    block;
  }

  .md\:flex {
    display:
    flex;
  }

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

  .md\:table-cell {
    display:
    table-cell;
  }

  .md\:grid {
    display:
    grid;
  }

  .md\:hidden {
    display:
    none;
  }

  .md\:flex-row {
    flex-direction:
    row;
  }

  .md\:flex-col {
    flex-direction:
    column;
  }

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

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

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

  .md\:items-baseline {
    align-items:
    baseline;
  }

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

  .md\:justify-start {
    justify-content:
    flex-start;
  }

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

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

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

  .md\:flex-1 {
    flex:
    1 1 0%;
  }

  .md\:flex-grow-0 {
    flex-grow:
    0;
  }

  .md\:flex-grow {
    flex-grow:
    1;
  }

  .md\:order-first {
    order:
    -9999;
  }

  .md\:h-6 {
    height:
    1.5rem;
  }

  .md\:h-12 {
    height:
    3rem;
  }

  .md\:h-24 {
    height:
    6rem;
  }

  .md\:h-64 {
    height:
    16rem;
  }

  .md\:h-auto {
    height:
    auto;
  }

  .md\:text-base {
    font-size:
    1rem;
  }

  .md\:text-lg {
    font-size:
    1.125rem;
  }

  .md\:text-xl {
    font-size:
    1.25rem;
  }

  .md\:text-3xl {
    font-size:
    1.875rem;
  }

  .md\:text-4xl {
    font-size:
    2.25rem;
  }

  .md\:m-1 {
    margin:
    0.25rem;
  }

  .md\:m-12 {
    margin:
    3rem;
  }

  .md\:m-auto {
    margin:
    auto;
  }

  .md\:my-0 {
    margin-top:
    0;
    margin-bottom:
    0;
  }

  .md\:mx-0 {
    margin-left:
    0;
    margin-right:
    0;
  }

  .md\:mx-2 {
    margin-left:
    0.5rem;
    margin-right:
    0.5rem;
  }

  .md\:my-3 {
    margin-top:
    0.75rem;
    margin-bottom:
    0.75rem;
  }

  .md\:mx-4 {
    margin-left:
    1rem;
    margin-right:
    1rem;
  }

  .md\:mx-6 {
    margin-left:
    1.5rem;
    margin-right:
    1.5rem;
  }

  .md\:mx-8 {
    margin-left:
    2rem;
    margin-right:
    2rem;
  }

  .md\:my-12 {
    margin-top:
    3rem;
    margin-bottom:
    3rem;
  }

  .md\:mx-12 {
    margin-left:
    3rem;
    margin-right:
    3rem;
  }

  .md\:my-16 {
    margin-top:
    4rem;
    margin-bottom:
    4rem;
  }

  .md\:mx-24 {
    margin-left:
    6rem;
    margin-right:
    6rem;
  }

  .md\:my-32 {
    margin-top:
    8rem;
    margin-bottom:
    8rem;
  }

  .md\:-mx-4 {
    margin-left:
    -1rem;
    margin-right:
    -1rem;
  }

  .md\:mt-0 {
    margin-top:
    0;
  }

  .md\:mb-0 {
    margin-bottom:
    0;
  }

  .md\:mt-1 {
    margin-top:
    0.25rem;
  }

  .md\:ml-1 {
    margin-left:
    0.25rem;
  }

  .md\:mt-2 {
    margin-top:
    0.5rem;
  }

  .md\:mb-2 {
    margin-bottom:
    0.5rem;
  }

  .md\:ml-2 {
    margin-left:
    0.5rem;
  }

  .md\:mt-3 {
    margin-top:
    0.75rem;
  }

  .md\:ml-3 {
    margin-left:
    0.75rem;
  }

  .md\:mt-4 {
    margin-top:
    1rem;
  }

  .md\:mr-4 {
    margin-right:
    1rem;
  }

  .md\:mb-4 {
    margin-bottom:
    1rem;
  }

  .md\:ml-4 {
    margin-left:
    1rem;
  }

  .md\:ml-5 {
    margin-left:
    1.25rem;
  }

  .md\:mt-6 {
    margin-top:
    1.5rem;
  }

  .md\:mt-8 {
    margin-top:
    2rem;
  }

  .md\:mr-8 {
    margin-right:
    2rem;
  }

  .md\:mb-8 {
    margin-bottom:
    2rem;
  }

  .md\:ml-8 {
    margin-left:
    2rem;
  }

  .md\:ml-10 {
    margin-left:
    2.5rem;
  }

  .md\:mt-12 {
    margin-top:
    3rem;
  }

  .md\:mb-12 {
    margin-bottom:
    3rem;
  }

  .md\:mb-16 {
    margin-bottom:
    4rem;
  }

  .md\:mt-24 {
    margin-top:
    6rem;
  }

  .md\:ml-24 {
    margin-left:
    6rem;
  }

  .md\:mr-32 {
    margin-right:
    8rem;
  }

  .md\:-mb-24 {
    margin-bottom:
    -6rem;
  }

  .md\:max-w-xs {
    max-width:
    20rem;
  }

  .md\:max-w-sm {
    max-width:
    24rem;
  }

  .md\:max-w-md {
    max-width:
    28rem;
  }

  .md\:max-w-lg {
    max-width:
    32rem;
  }

  .md\:min-w-0 {
    min-width:
    0;
  }

  .md\:overflow-auto {
    overflow:
    auto;
  }

  .md\:p-0 {
    padding:
    0;
  }

  .md\:p-3 {
    padding:
    0.75rem;
  }

  .md\:p-4 {
    padding:
    1rem;
  }

  .md\:p-6 {
    padding:
    1.5rem;
  }

  .md\:p-8 {
    padding:
    2rem;
  }

  .md\:p-12 {
    padding:
    3rem;
  }

  .md\:p-16 {
    padding:
    4rem;
  }

  .md\:py-0 {
    padding-top:
    0;
    padding-bottom:
    0;
  }

  .md\:px-0 {
    padding-left:
    0;
    padding-right:
    0;
  }

  .md\:px-3 {
    padding-left:
    0.75rem;
    padding-right:
    0.75rem;
  }

  .md\:py-4 {
    padding-top:
    1rem;
    padding-bottom:
    1rem;
  }

  .md\:px-4 {
    padding-left:
    1rem;
    padding-right:
    1rem;
  }

  .md\:py-5 {
    padding-top:
    1.25rem;
    padding-bottom:
    1.25rem;
  }

  .md\:py-6 {
    padding-top:
    1.5rem;
    padding-bottom:
    1.5rem;
  }

  .md\:px-6 {
    padding-left:
    1.5rem;
    padding-right:
    1.5rem;
  }

  .md\:py-8 {
    padding-top:
    2rem;
    padding-bottom:
    2rem;
  }

  .md\:px-8 {
    padding-left:
    2rem;
    padding-right:
    2rem;
  }

  .md\:py-12 {
    padding-top:
    3rem;
    padding-bottom:
    3rem;
  }

  .md\:px-12 {
    padding-left:
    3rem;
    padding-right:
    3rem;
  }

  .md\:py-16 {
    padding-top:
    4rem;
    padding-bottom:
    4rem;
  }

  .md\:px-16 {
    padding-left:
    4rem;
    padding-right:
    4rem;
  }

  .md\:py-20 {
    padding-top:
    5rem;
    padding-bottom:
    5rem;
  }

  .md\:px-20 {
    padding-left:
    5rem;
    padding-right:
    5rem;
  }

  .md\:px-24 {
    padding-left:
    6rem;
    padding-right:
    6rem;
  }

  .md\:px-32 {
    padding-left:
    8rem;
    padding-right:
    8rem;
  }

  .md\:px-48 {
    padding-left:
    12rem;
    padding-right:
    12rem;
  }

  .md\:pt-0 {
    padding-top:
    0;
  }

  .md\:pr-0 {
    padding-right:
    0;
  }

  .md\:pb-0 {
    padding-bottom:
    0;
  }

  .md\:pl-0 {
    padding-left:
    0;
  }

  .md\:pl-1 {
    padding-left:
    0.25rem;
  }

  .md\:pl-2 {
    padding-left:
    0.5rem;
  }

  .md\:pr-4 {
    padding-right:
    1rem;
  }

  .md\:pb-4 {
    padding-bottom:
    1rem;
  }

  .md\:pt-6 {
    padding-top:
    1.5rem;
  }

  .md\:pr-6 {
    padding-right:
    1.5rem;
  }

  .md\:pb-6 {
    padding-bottom:
    1.5rem;
  }

  .md\:pt-8 {
    padding-top:
    2rem;
  }

  .md\:pr-8 {
    padding-right:
    2rem;
  }

  .md\:pl-8 {
    padding-left:
    2rem;
  }

  .md\:pt-12 {
    padding-top:
    3rem;
  }

  .md\:pr-12 {
    padding-right:
    3rem;
  }

  .md\:pt-16 {
    padding-top:
    4rem;
  }

  .md\:pb-16 {
    padding-bottom:
    4rem;
  }

  .md\:pb-20 {
    padding-bottom:
    5rem;
  }

  .md\:pt-24 {
    padding-top:
    6rem;
  }

  .md\:pb-24 {
    padding-bottom:
    6rem;
  }

  .md\:pb-40 {
    padding-bottom:
    10rem;
  }

  .md\:pr-48 {
    padding-right:
    12rem;
  }

  .md\:pr-1\/2 {
    padding-right:
    50%;
  }

  .md\:pb-4\/5 {
    padding-bottom:
    80%;
  }

  .md\:absolute {
    position:
    absolute;
  }

  .md\:relative {
    position:
    relative;
  }

  .md\:text-left {
    text-align:
    left;
  }

  .md\:text-center {
    text-align:
    center;
  }

  .md\:w-6 {
    width:
    1.5rem;
  }

  .md\:w-10 {
    width:
    2.5rem;
  }

  .md\:w-12 {
    width:
    3rem;
  }

  .md\:w-16 {
    width:
    4rem;
  }

  .md\:w-32 {
    width:
    8rem;
  }

  .md\:w-48 {
    width:
    12rem;
  }

  .md\:w-64 {
    width:
    16rem;
  }

  .md\:w-auto {
    width:
    auto;
  }

  .md\:w-1\/2 {
    width:
    50%;
  }

  .md\:w-1\/3 {
    width:
    33.33333%;
  }

  .md\:w-2\/3 {
    width:
    66.66667%;
  }

  .md\:w-1\/4 {
    width:
    25%;
  }

  .md\:w-2\/4 {
    width:
    50%;
  }

  .md\:w-3\/4 {
    width:
    75%;
  }

  .md\:w-1\/5 {
    width:
    20%;
  }

  .md\:w-2\/5 {
    width:
    40%;
  }

  .md\:w-3\/12 {
    width:
    25%;
  }

  .md\:w-9\/12 {
    width:
    75%;
  }

  .md\:gap-2 {
    grid-gap:
    0.5rem;
    gap:
    0.5rem;
  }

  .md\:gap-4 {
    grid-gap:
    1rem;
    gap:
    1rem;
  }

  .md\:gap-6 {
    grid-gap:
    1.5rem;
    gap:
    1.5rem;
  }

  .md\:gap-8 {
    grid-gap:
    2rem;
    gap:
    2rem;
  }

  .md\:gap-12 {
    grid-gap:
    3rem;
    gap:
    3rem;
  }

  .md\:gap-20 {
    grid-gap:
    5rem;
    gap:
    5rem;
  }

  .md\:grid-cols-1 {
    grid-template-columns:
    repeat(1, minmax(0, 1fr));
  }

  .md\:grid-cols-2 {
    grid-template-columns:
    repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns:
    repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns:
    repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns:
    repeat(5, minmax(0, 1fr));
  }

  .md\:grid-cols-12 {
    grid-template-columns:
    repeat(12, minmax(0, 1fr));
  }

  .md\:col-span-4 {
    grid-column:
    span 4 / span 4;
  }

  .md\:col-span-5 {
    grid-column:
    span 5 / span 5;
  }

  .md\:col-span-7 {
    grid-column:
    span 7 / span 7;
  }

  .md\:col-span-8 {
    grid-column:
    span 8 / span 8;
  }

  .md\:col-span-12 {
    grid-column:
    span 12 / span 12;
  }
}

@media (min-width: 1024px) {
  .lg\:divide-x > :not(template) ~ :not(template) {
    --divide-x-reverse:
    0;
    border-right-width:
    calc(1px * var(--divide-x-reverse));
    border-left-width:
    calc(1px * calc(1 - var(--divide-x-reverse)));
  }

  .lg\:border {
    border-width:
    1px;
  }

  .lg\:border-l {
    border-left-width:
    1px;
  }

  .lg\:cursor-auto {
    cursor:
    auto;
  }

  .lg\:block {
    display:
    block;
  }

  .lg\:inline-block {
    display:
    inline-block;
  }

  .lg\:flex {
    display:
    flex;
  }

  .lg\:grid {
    display:
    grid;
  }

  .lg\:contents {
    display:
    contents;
  }

  .lg\:hidden {
    display:
    none;
  }

  .lg\:flex-row {
    flex-direction:
    row;
  }

  .lg\:flex-col {
    flex-direction:
    column;
  }

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

  .lg\:flex-no-wrap {
    flex-wrap:
    nowrap;
  }

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

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

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

  .lg\:justify-start {
    justify-content:
    flex-start;
  }

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

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

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

  .lg\:flex-1 {
    flex:
    1 1 0%;
  }

  .lg\:flex-auto {
    flex:
    1 1 auto;
  }

  .lg\:flex-grow-0 {
    flex-grow:
    0;
  }

  .lg\:flex-grow {
    flex-grow:
    1;
  }

  .lg\:order-1 {
    order:
    1;
  }

  .lg\:order-2 {
    order:
    2;
  }

  .lg\:order-3 {
    order:
    3;
  }

  .lg\:order-last {
    order:
    9999;
  }

  .lg\:text-xl {
    font-size:
    1.25rem;
  }

  .lg\:text-2xl {
    font-size:
    1.5rem;
  }

  .lg\:text-4xl {
    font-size:
    2.25rem;
  }

  .lg\:m-0 {
    margin:
    0;
  }

  .lg\:my-0 {
    margin-top:
    0;
    margin-bottom:
    0;
  }

  .lg\:mx-0 {
    margin-left:
    0;
    margin-right:
    0;
  }

  .lg\:mx-6 {
    margin-left:
    1.5rem;
    margin-right:
    1.5rem;
  }

  .lg\:mx-16 {
    margin-left:
    4rem;
    margin-right:
    4rem;
  }

  .lg\:my-auto {
    margin-top:
    auto;
    margin-bottom:
    auto;
  }

  .lg\:-mx-8 {
    margin-left:
    -2rem;
    margin-right:
    -2rem;
  }

  .lg\:mt-0 {
    margin-top:
    0;
  }

  .lg\:mr-0 {
    margin-right:
    0;
  }

  .lg\:mb-0 {
    margin-bottom:
    0;
  }

  .lg\:mr-2 {
    margin-right:
    0.5rem;
  }

  .lg\:ml-2 {
    margin-left:
    0.5rem;
  }

  .lg\:mr-4 {
    margin-right:
    1rem;
  }

  .lg\:ml-4 {
    margin-left:
    1rem;
  }

  .lg\:mr-5 {
    margin-right:
    1.25rem;
  }

  .lg\:ml-5 {
    margin-left:
    1.25rem;
  }

  .lg\:ml-6 {
    margin-left:
    1.5rem;
  }

  .lg\:mr-8 {
    margin-right:
    2rem;
  }

  .lg\:mt-10 {
    margin-top:
    2.5rem;
  }

  .lg\:mb-10 {
    margin-bottom:
    2.5rem;
  }

  .lg\:mr-16 {
    margin-right:
    4rem;
  }

  .lg\:mb-20 {
    margin-bottom:
    5rem;
  }

  .lg\:mb-32 {
    margin-bottom:
    8rem;
  }

  .lg\:ml-auto {
    margin-left:
    auto;
  }

  .lg\:-mr-2 {
    margin-right:
    -0.5rem;
  }

  .lg\:max-w-xs {
    max-width:
    20rem;
  }

  .lg\:max-w-sm {
    max-width:
    24rem;
  }

  .lg\:max-w-md {
    max-width:
    28rem;
  }

  .lg\:max-w-xl {
    max-width:
    36rem;
  }

  .lg\:max-w-4xl {
    max-width:
    56rem;
  }

  .lg\:min-w-0 {
    min-width:
    0;
  }

  .lg\:focus\:outline-none:focus {
    outline:
    2px solid transparent;
    outline-offset:
    2px;
  }

  .lg\:overflow-x-visible {
    overflow-x:
    visible;
  }

  .lg\:overflow-y-visible {
    overflow-y:
    visible;
  }

  .lg\:p-6 {
    padding:
    1.5rem;
  }

  .lg\:p-20 {
    padding:
    5rem;
  }

  .lg\:px-0 {
    padding-left:
    0;
    padding-right:
    0;
  }

  .lg\:py-3 {
    padding-top:
    0.75rem;
    padding-bottom:
    0.75rem;
  }

  .lg\:px-3 {
    padding-left:
    0.75rem;
    padding-right:
    0.75rem;
  }

  .lg\:py-8 {
    padding-top:
    2rem;
    padding-bottom:
    2rem;
  }

  .lg\:px-8 {
    padding-left:
    2rem;
    padding-right:
    2rem;
  }

  .lg\:py-10 {
    padding-top:
    2.5rem;
    padding-bottom:
    2.5rem;
  }

  .lg\:py-16 {
    padding-top:
    4rem;
    padding-bottom:
    4rem;
  }

  .lg\:px-20 {
    padding-left:
    5rem;
    padding-right:
    5rem;
  }

  .lg\:px-24 {
    padding-left:
    6rem;
    padding-right:
    6rem;
  }

  .lg\:px-32 {
    padding-left:
    8rem;
    padding-right:
    8rem;
  }

  .lg\:px-40 {
    padding-left:
    10rem;
    padding-right:
    10rem;
  }

  .lg\:px-48 {
    padding-left:
    12rem;
    padding-right:
    12rem;
  }

  .lg\:pt-0 {
    padding-top:
    0;
  }

  .lg\:pb-0 {
    padding-bottom:
    0;
  }

  .lg\:pt-2 {
    padding-top:
    0.5rem;
  }

  .lg\:pt-4 {
    padding-top:
    1rem;
  }

  .lg\:pr-6 {
    padding-right:
    1.5rem;
  }

  .lg\:pr-8 {
    padding-right:
    2rem;
  }

  .lg\:pl-10 {
    padding-left:
    2.5rem;
  }

  .lg\:pt-12 {
    padding-top:
    3rem;
  }

  .lg\:pt-16 {
    padding-top:
    4rem;
  }

  .lg\:pb-16 {
    padding-bottom:
    4rem;
  }

  .lg\:pt-24 {
    padding-top:
    6rem;
  }

  .lg\:absolute {
    position:
    absolute;
  }

  .lg\:sticky {
    position:
    sticky;
  }

  .lg\:text-left {
    text-align:
    left;
  }

  .lg\:text-right {
    text-align:
    right;
  }

  .lg\:w-32 {
    width:
    8rem;
  }

  .lg\:w-56 {
    width:
    14rem;
  }

  .lg\:w-64 {
    width:
    16rem;
  }

  .lg\:w-auto {
    width:
    auto;
  }

  .lg\:w-1\/2 {
    width:
    50%;
  }

  .lg\:w-2\/3 {
    width:
    66.66667%;
  }

  .lg\:w-3\/4 {
    width:
    75%;
  }

  .lg\:w-1\/5 {
    width:
    20%;
  }

  .lg\:w-3\/5 {
    width:
    60%;
  }

  .lg\:w-5\/12 {
    width:
    41.66667%;
  }

  .lg\:w-7\/12 {
    width:
    58.33333%;
  }

  .lg\:w-full {
    width:
    100%;
  }

  .lg\:gap-0 {
    grid-gap:
    0;
    gap:
    0;
  }

  .lg\:gap-2 {
    grid-gap:
    0.5rem;
    gap:
    0.5rem;
  }

  .lg\:gap-4 {
    grid-gap:
    1rem;
    gap:
    1rem;
  }

  .lg\:gap-6 {
    grid-gap:
    1.5rem;
    gap:
    1.5rem;
  }

  .lg\:gap-8 {
    grid-gap:
    2rem;
    gap:
    2rem;
  }

  .lg\:gap-10 {
    grid-gap:
    2.5rem;
    gap:
    2.5rem;
  }

  .lg\:gap-12 {
    grid-gap:
    3rem;
    gap:
    3rem;
  }

  .lg\:gap-20 {
    grid-gap:
    5rem;
    gap:
    5rem;
  }

  .lg\:grid-cols-1 {
    grid-template-columns:
    repeat(1, minmax(0, 1fr));
  }

  .lg\:grid-cols-2 {
    grid-template-columns:
    repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns:
    repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns:
    repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns:
    repeat(5, minmax(0, 1fr));
  }

  .lg\:col-span-1 {
    grid-column:
    span 1 / span 1;
  }

  .lg\:col-span-2 {
    grid-column:
    span 2 / span 2;
  }

  .lg\:col-span-3 {
    grid-column:
    span 3 / span 3;
  }

  .lg\:col-span-4 {
    grid-column:
    span 4 / span 4;
  }
}

@media (min-width: 1440px) {
  .xl\:block {
    display:
    block;
  }

  .xl\:flex {
    display:
    flex;
  }

  .xl\:grid {
    display:
    grid;
  }

  .xl\:flex-row {
    flex-direction:
    row;
  }

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

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

  .xl\:text-3xl {
    font-size:
    1.875rem;
  }

  .xl\:my-0 {
    margin-top:
    0;
    margin-bottom:
    0;
  }

  .xl\:mx-6 {
    margin-left:
    1.5rem;
    margin-right:
    1.5rem;
  }

  .xl\:mr-16 {
    margin-right:
    4rem;
  }

  .xl\:pt-0 {
    padding-top:
    0;
  }

  .xl\:pr-16 {
    padding-right:
    4rem;
  }

  .xl\:w-48 {
    width:
    12rem;
  }

  .xl\:w-10\/12 {
    width:
    83.33333%;
  }

  .xl\:gap-4 {
    grid-gap:
    1rem;
    gap:
    1rem;
  }

  .xl\:grid-cols-2 {
    grid-template-columns:
    repeat(2, minmax(0, 1fr));
  }

  .xl\:grid-cols-3 {
    grid-template-columns:
    repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-cols-5 {
    grid-template-columns:
    repeat(5, minmax(0, 1fr));
  }

  .xl\:grid-cols-9 {
    grid-template-columns:
    repeat(9, minmax(0, 1fr));
  }

  .xl\:col-span-1 {
    grid-column:
    span 1 / span 1;
  }

  .xl\:col-span-5 {
    grid-column:
    span 5 / span 5;
  }
}
/*

*/


.kit-button-primary {
  background-color: #000 !important;
  color: #fff !important;
  border-radius: 10px !important;
  border: none !important;
  font-weight: 600 !important;
}

.kit-button-primary:hover {
  background-color: #3d3d3d !important;
  color: #fff !important;
}

.kit-button-primary:focus {
  box-shadow: 0px 0px 0px 2px #44b1ff !important;
  box-shadow: 0px 0px 0px 1px #ffffff !important;
}

.kit-button-secondary {
  background-color: #1e1e1e0f !important;
  color: #1e1e1e !important;
  border-radius: 10px !important;
  border: none !important;
  font-weight: 600 !important;
}

.kit-button-secondary:hover {
  background: #1e1e1e1f !important;
  color: #1e1e1e !important;
}

.kit-button-secondary:focus {
  box-shadow: 0px 0px 0px 2px #44b1ff !important;
  box-shadow: 0px 0px 0px 1px #ffffff !important;
}

.kit-input {
  background: #1e1e1e0f !important;
  border-radius: 10px !important;
  color: #1e1e1e !important;
  border: 1px solid transparent !important;
  outline-color: transparent !important;
  transition:
    color 200ms ease-in-out,
    background-color 200ms ease-in-out,
    outline-color 200ms ease-in-out !important;
}

.kit-input::placeholder {
  color: #6e6e6e !important;
}

.kit-input:hover {
  background: #1e1e1e1f !important;
}

.kit-input:focus {
  box-shadow: none !important;
  outline: 1px solid #44b1ff !important;
  outline-offset: 1px !important;
}

/* [REBRAND] this is temporary, will be removed in subsequent PRs */
.rounded-2xl {
  border-radius: 1rem;
}
@font-face {
  font-family: "Grayscale";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url(//cdn.convertkit.com/assets/fonts/Grayscale-Regular.woff2)
      format("woff2"),
    url(//cdn.convertkit.com/assets/fonts/Grayscale-Regular.woff)
      format("woff"),
    url(//cdn.convertkit.com/assets/fonts/Grayscale-Regular.eot) format("eot");
}
.font-grayscale {
  font-family:
    "Grayscale", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.leading-5 {
  line-height: 1.25rem;
}

.ck-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 0.125rem;
  color: #3d3d3d;
  display: inline-flex;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
}
.ck-btn:hover {
  text-decoration: none;
}
.ck-btn:focus {
  text-decoration: none;
  outline: none;
}
.ck-btn.ck-btn--red {
  background: #fb6970;
  color: #ffffff;
}
.ck-btn.ck-btn--red:hover {
  background: #fb5058;
  color: #ffffff;
}
.ck-btn.ck-btn--gray {
  background: #e3e3e3;
  color: var(--gray-700);
}
.ck-btn.ck-btn--gray:hover {
  background: var(--gray-300);
  color: #3d3d3d;
}
.ck-btn.ck-btn--white {
  background: #ffffff;
  border-color: var(--gray-300);
  color: var(--gray-700);
}
.ck-btn.ck-btn--white:hover {
  background: var(--gray-50);
  color: #3d3d3d;
}
.ck-btn.ck-btn--lg {
  font-weight: 600;
  line-height: 1.25rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Override Tailwind default */
b,
strong {
  font-weight: bold;
}

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

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

/* can be removed after upgrading to tailwind 3.4.4 */
.min-w-60 {
  min-width: 15rem; /* 240px */
}
.min-h-8 {
  min-height: 2rem; /* 32px */
}

.w-max {
  width: max-content;
}

.w-fit {
  width: fit-content;
}

.border-t-transparent {
  border-top-color: transparent;
}
