@charset "UTF-8";
/**
 * Master Color Variables
 * 
 * Single source of truth for all colors in the application.
 * All colors are WCAG 2.1 Level AA compliant against #F2F2F2 background.
 * 
 * Brand Colors:
 * - Brand Green: var(--color-interactive-success) (decorative, low contrast)
 * - Success Green: #2E6B68 (text, high contrast)
 * 
 * Target Background: #F2F2F2
 * - UI Components: 3:1 minimum (#8C8C8C)
 * - Text/Icons: 4.5:1 minimum (#6E6E6E)
 */
:root {
  /* ========================================
     BRAND COLORS
     ======================================== */
  --color-brand-decorative: var(--color-interactive-success); /* Brand green - DECORATIVE ONLY (1.95:1 on white) */
  --color-brand-primary: #2E6B68; /* Primary green - USE THIS MOST PLACES (5.8:1 on white) */
  --color-brand-primary-light: #3D8A86;
  --color-brand-primary-dark: #1F4A47;
  --color-brand-primary-darker: #163634;
  --color-brand-logo: #5CD6A3; /* Logo/spinner green - do NOT change */
  /* ========================================
     FEEDBACK COLORS (WCAG AA Compliant)
     ======================================== */
  /* Success - Bright green */
  --color-feedback-success: #068927; /* Success green (5.1:1 on white) ✅ */
  --color-feedback-success-light: #10A337;
  --color-feedback-success-dark: #046B1F;
  --color-feedback-success-bg: #D1FAE5; /* Light background */
  /* Error/Danger */
  --color-feedback-error: #B91C1C; /* 5.2:1 on #F2F2F2 ✅ */
  --color-feedback-error-light: #DC2626;
  --color-feedback-error-dark: #991B1B;
  --color-feedback-error-bg: #FEE2E2; /* Light background */
  /* Warning */
  --color-feedback-warning: #C1571A; /* 4.8:1 on #F2F2F2 ✅ */
  --color-feedback-warning-light: #EA580C;
  --color-feedback-warning-dark: #9A2C0A;
  --color-feedback-warning-bg: #FED7AA; /* Light background */
  /* Info */
  --color-feedback-info: #058194; /* 4.9:1 on #F2F2F2 ✅ */
  --color-feedback-info-light: #0891B2;
  --color-feedback-info-dark: #075985;
  --color-feedback-info-bg: #CFFAFE; /* Light background */
  /* ========================================
     NEUTRAL COLORS (Grayscale)
     WCAG Compliant for #F2F2F2 background
     ======================================== */
  --color-neutral-50: #FAFAFA; /* Lightest */
  --color-neutral-100: #F2F2F2; /* Standard background */
  --color-neutral-200: #E5E5E5; /* Subtle contrast */
  --color-neutral-300: #D4D4D4; /* Light borders */
  --color-neutral-400: #A3A3A3; /* Disabled elements */
  --color-neutral-500: #6E6E6E; /* Text on light backgrounds (4.55:1 on #F2F2F2) ✅ WCAG AA */
  --color-neutral-600: #6E6E6E; /* Text/icons (4.55:1 on #F2F2F2) ✅ */
  --color-neutral-700: #525252; /* Darker text (6.4:1) ✅ */
  --color-neutral-800: #404040; /* Primary text (7.8:1) ✅ AAA */
  --color-neutral-900: #262626; /* Darkest text (11.2:1) ✅ AAA */
  --color-neutral-950: #171717; /* Near black (13.5:1) ✅ AAA */
  --color-neutral-white: #FFFFFF; /* Pure white */
  /* ========================================
     SURFACE COLORS (Backgrounds)
     ======================================== */
  --color-surface-base: #FFFFFF; /* White background */
  --color-surface-raised: #F2F2F2; /* Standard gray background */
  --color-surface-overlay: #FAFAFA; /* Overlays, dropdowns */
  --color-surface-backdrop: rgba(0, 0, 0, 0.5); /* Modal backdrop */
  --color-surface-disabled: #E5E5E5; /* Disabled state */
  --color-surface-hover: #E5E5E5; /* Hover state */
  /* ========================================
     TEXT COLORS (WCAG Compliant)
     ======================================== */
  --color-text-primary: #404040; /* Primary text (7.8:1 on #F2F2F2) ✅ AAA */
  --color-text-secondary: #525252; /* Secondary text (6.4:1) ✅ AA */
  --color-text-muted: #6E6E6E; /* Muted text (4.55:1) ✅ AA */
  --color-text-placeholder: #6E6E6E; /* Placeholder (4.55:1) ✅ AA */
  --color-text-disabled: #A3A3A3; /* Disabled text */
  --color-text-inverse: #FFFFFF; /* Text on dark backgrounds */
  --color-text-link: #058194; /* Link color (4.9:1) ✅ AA */
  --color-text-link-hover: #075985; /* Link hover (6.2:1) ✅ AA */
  /* ========================================
     BORDER COLORS (WCAG Compliant)
     ======================================== */
  --color-border-default: #D4D4D4; /* Standard borders */
  --color-border-light: #E5E5E5; /* Subtle borders */
  --color-border-ui: #949494; /* UI component borders (3:1 on white) ✅ WCAG AA */
  --color-border-strong: #6E6E6E; /* Strong borders (4.55:1 on #F2F2F2) ✅ WCAG AA */
  --color-border-focus: #2E6B68; /* Focus state (primary) */
  --color-border-error: #B91C1C; /* Error state */
  --color-border-success: #2E6B68; /* Success state */
  --color-border-warning: #C1571A; /* Warning state */
  --color-border-info: #058194; /* Info state */
  /* ========================================
     INTERACTIVE COLORS (Buttons, Links)
     ======================================== */
  /* Primary (Brand Primary Green) - USE THIS FOR MOST BUTTONS */
  --color-interactive-primary: #2E6B68;
  --color-interactive-primary-hover: #1F4A47;
  --color-interactive-primary-active: #163634;
  --color-interactive-primary-disabled: #8CB5B3;
  --color-interactive-primary-text: #FFFFFF;
  /* Success (Bright Green) */
  --color-interactive-success: #068927;
  --color-interactive-success-hover: #046B1F;
  --color-interactive-success-active: #035518;
  --color-interactive-success-text: #FFFFFF;
  /* Danger/Error */
  --color-interactive-danger: #B91C1C;
  --color-interactive-danger-hover: #991B1B;
  --color-interactive-danger-active: #7F1D1D;
  --color-interactive-danger-text: #FFFFFF;
  /* Warning */
  --color-interactive-warning: #C1571A;
  --color-interactive-warning-hover: #9A2C0A;
  --color-interactive-warning-active: #7C2309;
  --color-interactive-warning-text: #FFFFFF;
  /* Secondary (Neutral) */
  --color-interactive-secondary: #6E6E6E;
  --color-interactive-secondary-hover: #525252;
  --color-interactive-secondary-active: #404040;
  --color-interactive-secondary-text: #FFFFFF;
  /* ========================================
     SHADOW COLORS
     ======================================== */
  --color-shadow-sm: rgba(0, 0, 0, 0.05);
  --color-shadow-md: rgba(0, 0, 0, 0.1);
  --color-shadow-lg: rgba(0, 0, 0, 0.15);
  --color-shadow-xl: rgba(0, 0, 0, 0.25);
  /* ========================================
     SHADOW PRESETS
     ======================================== */
  --shadow-sm: 0 1px 2px var(--color-shadow-sm);
  --shadow-md: 0 4px 6px -1px var(--color-shadow-md), 0 2px 4px -1px var(--color-shadow-sm);
  --shadow-lg: 0 10px 15px -3px var(--color-shadow-md), 0 4px 6px -2px var(--color-shadow-sm);
  --shadow-xl: 0 20px 25px -5px var(--color-shadow-lg), 0 10px 10px -5px var(--color-shadow-md);
  /* Elevation shadows (for cards, modals) */
  --shadow-elevation-low:
    0 0.3px 0.4px var(--color-shadow-sm),
    0 0.9px 1.5px var(--color-shadow-sm),
    0 3.5px 6px var(--color-shadow-md);
  --shadow-elevation-medium:
    0 1.5px 2.1px -6px var(--color-shadow-sm),
    0 3.6px 5.2px -6px var(--color-shadow-sm),
    0 7.3px 10.6px -6px var(--color-shadow-md),
    0 16.2px 21.9px -6px var(--color-shadow-lg);
  --shadow-elevation-high:
    0 1.5px 2.1px -6px var(--color-shadow-sm),
    0 3.6px 5.2px -6px var(--color-shadow-sm),
    0 7.3px 10.6px -6px var(--color-shadow-md),
    0 16.2px 21.9px -6px var(--color-shadow-lg),
    0 46px 60px -6px var(--color-shadow-xl);
  /* ========================================
     FOCUS RING
     ======================================== */
  --focus-ring: 0 0 0 2px #ffffff, 0 0 0 6px var(--color-brand-primary);
  --focus-ring-error: 0 0 0 2px #ffffff, 0 0 0 6px var(--color-feedback-error);
  --focus-ring-success: 0 0 0 2px #ffffff, 0 0 0 6px var(--color-feedback-success);
  /* ========================================
     LEGACY VARIABLE MAPPINGS (Deprecated)
     Map old variable names to new compliant colors
     ======================================== */
  --color-primary-dark: var(--color-brand-primary-dark); /* #1F4A47 */
  --color-primary-darker: var(--color-brand-primary-darker); /* #163634 */
  /* ========================================
     LEGACY CODYFRAME VARIABLE ALIASES (Deprecated)
     These map old CodyFrame variable names to new compliant colors.
     Migrate to new names when touching these files.
     ======================================== */
  --color-primary: var(--color-brand-primary); /* #2E6B68 */
  --color-primary-light: var(--color-brand-primary-light); /* #3D8A86 */
  --color-contrast-higher: var(--color-neutral-900); /* #262626 */
  --color-contrast-high: var(--color-text-primary); /* #404040 */
  --color-contrast-medium: var(--color-text-secondary); /* #525252 */
  --color-contrast-low: var(--color-border-light); /* #E5E5E5 */
  --color-contrast-lowest: var(--color-neutral-100); /* #F2F2F2 */
  --color-contrast-extra-medium: var(--color-border-ui); /* #949494 */
  --color-warning: var(--color-feedback-warning); /* #C1571A */
  --color-white: var(--color-neutral-white); /* #FFFFFF */
}
/* ========================================
   DARK MODE (Future)
   ======================================== */
[data-theme=dark] {
  /* Placeholder for dark mode overrides */
  /* --color-surface-base: #171717; */
  /* --color-text-primary: #FAFAFA; */
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
 */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}
::-webkit-datetime-edit{
  display: inline-flex;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
[multiple],[size]:where(select:not([size="1"])){
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}
[type='checkbox'],[type='radio']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
[type='checkbox']{
  border-radius: 0px;
}
[type='radio']{
  border-radius: 100%;
}
[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  [type='checkbox']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  [type='radio']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active) {
  [type='checkbox']:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='file']{
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
[type='file']:focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
.\!container{
  width: 100% !important;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .\!container{
    max-width: 640px !important;
  }
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .\!container{
    max-width: 768px !important;
  }
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .\!container{
    max-width: 1024px !important;
  }
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .\!container{
    max-width: 1280px !important;
  }
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 2000px){
  .\!container{
    max-width: 2000px !important;
  }
  .container{
    max-width: 2000px;
  }
}
@media (min-width: 2400px){
  .\!container{
    max-width: 2400px !important;
  }
  .container{
    max-width: 2400px;
  }
}
.form-input,.form-textarea,.form-select,.form-multiselect{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
.form-input::placeholder,.form-textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
.form-input::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
.form-input::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}
.form-input::-webkit-datetime-edit{
  display: inline-flex;
}
.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
.form-select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
.form-select:where([size]:not([size="1"])){
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}
.prose{
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px var(--tw-prose-kbd-shadows), 0 3px 0 var(--tw-prose-kbd-shadows);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose{
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: rgb(17 24 39 / 10%);
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: rgb(255 255 255 / 10%);
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.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;
}
.pointer-events-none{
  pointer-events: none;
}
.visible{
  visibility: visible;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.inset-x-0{
  left: 0px;
  right: 0px;
}
.inset-y-0{
  top: 0px;
  bottom: 0px;
}
.-left-64{
  left: -16rem;
}
.-top-64{
  top: -16rem;
}
.bottom-0{
  bottom: 0px;
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-2{
  left: 0.5rem;
}
.left-3{
  left: 0.75rem;
}
.left-full{
  left: 100%;
}
.right-0{
  right: 0px;
}
.right-10{
  right: 2.5rem;
}
.right-8{
  right: 2rem;
}
.top-0{
  top: 0px;
}
.top-1\/2{
  top: 50%;
}
.top-10{
  top: 2.5rem;
}
.top-6{
  top: 1.5rem;
}
.top-\[calc\(100\%_\+_0\.5em\)\]{
  top: calc(100% + 0.5em);
}
.top-full{
  top: 100%;
}
.isolate{
  isolation: isolate;
}
.z-0{
  z-index: 0;
}
.z-10{
  z-index: 10;
}
.z-40{
  z-index: 40;
}
.z-50{
  z-index: 50;
}
.z-\[2\]{
  z-index: 2;
}
.order-2{
  order: 2;
}
.col-start-1{
  grid-column-start: 1;
}
.col-start-2{
  grid-column-start: 2;
}
.col-start-3{
  grid-column-start: 3;
}
.col-end-1{
  grid-column-end: 1;
}
.col-end-2{
  grid-column-end: 2;
}
.col-end-3{
  grid-column-end: 3;
}
.float-right{
  float: right;
}
.float-left{
  float: left;
}
.\!m-0{
  margin: 0px !important;
}
.-m-4{
  margin: -1rem;
}
.-m-px{
  margin: -1px;
}
.m-0{
  margin: 0px;
}
.m-1{
  margin: 0.25rem;
}
.m-2{
  margin: 0.5rem;
}
.m-auto{
  margin: auto;
}
.-mx-4{
  margin-left: -1rem;
  margin-right: -1rem;
}
.-my-1\.5{
  margin-top: -0.375rem;
  margin-bottom: -0.375rem;
}
.-my-2{
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.mx-1{
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-6{
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-8{
  margin-left: 2rem;
  margin-right: 2rem;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-1{
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-12{
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3{
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-8{
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-\[2em\]{
  margin-top: 2em;
  margin-bottom: 2em;
}
.\!mb-0{
  margin-bottom: 0px !important;
}
.-mb-4{
  margin-bottom: -1rem;
}
.-ml-2{
  margin-left: -0.5rem;
}
.-ml-\[1\.5em\]{
  margin-left: -1.5em;
}
.-ml-px{
  margin-left: -1px;
}
.-mr-2{
  margin-right: -0.5rem;
}
.-mt-1{
  margin-top: -0.25rem;
}
.-mt-2{
  margin-top: -0.5rem;
}
.-mt-4{
  margin-top: -1rem;
}
.-mt-5{
  margin-top: -1.25rem;
}
.mb-0{
  margin-bottom: 0px;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.ml-1{
  margin-left: 0.25rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-3{
  margin-left: 0.75rem;
}
.ml-4{
  margin-left: 1rem;
}
.ml-6{
  margin-left: 1.5rem;
}
.ml-8{
  margin-left: 2rem;
}
.ml-auto{
  margin-left: auto;
}
.ml-px{
  margin-left: 1px;
}
.mr-1{
  margin-right: 0.25rem;
}
.mr-1\.5{
  margin-right: 0.375rem;
}
.mr-2{
  margin-right: 0.5rem;
}
.mr-3\.5{
  margin-right: 0.875rem;
}
.mr-4{
  margin-right: 1rem;
}
.mr-6{
  margin-right: 1.5rem;
}
.mr-auto{
  margin-right: auto;
}
.mt-0{
  margin-top: 0px;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-1\.5{
  margin-top: 0.375rem;
}
.mt-10{
  margin-top: 2.5rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-24{
  margin-top: 6rem;
}
.mt-3{
  margin-top: 0.75rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-5{
  margin-top: 1.25rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-8{
  margin-top: 2rem;
}
.mt-px{
  margin-top: 1px;
}
.box-content{
  box-sizing: content-box;
}
.line-clamp-1{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.\!table{
  display: table !important;
}
.table{
  display: table;
}
.flow-root{
  display: flow-root;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.size-6{
  width: 1.5rem;
  height: 1.5rem;
}
.h-0{
  height: 0px;
}
.h-10{
  height: 2.5rem;
}
.h-12{
  height: 3rem;
}
.h-16{
  height: 4rem;
}
.h-2{
  height: 0.5rem;
}
.h-20{
  height: 5rem;
}
.h-24{
  height: 6rem;
}
.h-3{
  height: 0.75rem;
}
.h-3\.5{
  height: 0.875rem;
}
.h-32{
  height: 8rem;
}
.h-36{
  height: 9rem;
}
.h-4{
  height: 1rem;
}
.h-40{
  height: 10rem;
}
.h-5{
  height: 1.25rem;
}
.h-6{
  height: 1.5rem;
}
.h-7{
  height: 1.75rem;
}
.h-8{
  height: 2rem;
}
.h-96{
  height: 24rem;
}
.h-\[1em\]{
  height: 1em;
}
.h-\[2\.25em\]{
  height: 2.25em;
}
.h-\[40vh\]{
  height: 40vh;
}
.h-\[60vh\]{
  height: 60vh;
}
.h-auto{
  height: auto;
}
.h-full{
  height: 100%;
}
.h-px{
  height: 1px;
}
.max-h-60{
  max-height: 15rem;
}
.max-h-72{
  max-height: 18rem;
}
.max-h-\[350px\]{
  max-height: 350px;
}
.min-h-\[350px\]{
  min-height: 350px;
}
.min-h-\[40px\]{
  min-height: 40px;
}
.min-h-full{
  min-height: 100%;
}
.min-h-screen{
  min-height: 100vh;
}
.w-0{
  width: 0px;
}
.w-1\/2{
  width: 50%;
}
.w-10{
  width: 2.5rem;
}
.w-12{
  width: 3rem;
}
.w-16{
  width: 4rem;
}
.w-2{
  width: 0.5rem;
}
.w-2\.5{
  width: 0.625rem;
}
.w-2\/5{
  width: 40%;
}
.w-20{
  width: 5rem;
}
.w-24{
  width: 6rem;
}
.w-3{
  width: 0.75rem;
}
.w-3\.5{
  width: 0.875rem;
}
.w-32{
  width: 8rem;
}
.w-36{
  width: 9rem;
}
.w-4{
  width: 1rem;
}
.w-48{
  width: 12rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-64{
  width: 16rem;
}
.w-7{
  width: 1.75rem;
}
.w-8{
  width: 2rem;
}
.w-96{
  width: 24rem;
}
.w-\[2\.25em\]{
  width: 2.25em;
}
.w-\[8em\]{
  width: 8em;
}
.w-\[calc\(20\%_-_1em\)\]{
  width: calc(20% - 1em);
}
.w-\[calc\(33\%_-_1em\)\]{
  width: calc(33% - 1em);
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-full{
  width: 100%;
}
.w-px{
  width: 1px;
}
.w-screen{
  width: 100vw;
}
.min-w-0{
  min-width: 0px;
}
.min-w-\[2\.5em\]{
  min-width: 2.5em;
}
.min-w-\[20rem\]{
  min-width: 20rem;
}
.min-w-\[3em\]{
  min-width: 3em;
}
.min-w-\[8rem\]{
  min-width: 8rem;
}
.min-w-\[9rem\]{
  min-width: 9rem;
}
.min-w-full{
  min-width: 100%;
}
.max-w-2xl{
  max-width: 42rem;
}
.max-w-3xl{
  max-width: 48rem;
}
.max-w-5xl{
  max-width: 64rem;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-\[35em\]{
  max-width: 35em;
}
.max-w-\[5\.5em\]{
  max-width: 5.5em;
}
.max-w-full{
  max-width: 100%;
}
.max-w-lg{
  max-width: 32rem;
}
.max-w-max{
  max-width: -moz-max-content;
  max-width: max-content;
}
.max-w-md{
  max-width: 28rem;
}
.max-w-none{
  max-width: none;
}
.max-w-sm{
  max-width: 24rem;
}
.max-w-xl{
  max-width: 36rem;
}
.max-w-xs{
  max-width: 20rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-auto{
  flex: 1 1 auto;
}
.flex-min-content{
  flex: min-content;
}
.flex-none{
  flex: none;
}
.flex-shrink{
  flex-shrink: 1;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.shrink{
  flex-shrink: 1;
}
.shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.flex-grow-0{
  flex-grow: 0;
}
.grow{
  flex-grow: 1;
}
.grow-0{
  flex-grow: 0;
}
.border-collapse{
  border-collapse: collapse;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-x-full{
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-0{
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-4{
  --tw-translate-y: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}
.animate-spin{
  animation: spin 1s linear infinite;
}
.cursor-default{
  cursor: default;
}
.cursor-move{
  cursor: move;
}
.cursor-not-allowed{
  cursor: not-allowed;
}
.cursor-pointer{
  cursor: pointer;
}
.select-none{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize{
  resize: both;
}
.list-disc{
  list-style-type: disc;
}
.list-none{
  list-style-type: none;
}
.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.\!grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}
.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-\[2\.5em_1fr_2\.5em\]{
  grid-template-columns: 2.5em 1fr 2.5em;
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.items-baseline{
  align-items: baseline;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-1{
  gap: 0.25rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-8{
  gap: 2rem;
}
.gap-x-2{
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-y-8{
  row-gap: 2rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.divide-x > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
}
.divide-gray-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-divide-opacity, 1));
}
.divide-grayscale-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(247 247 247 / var(--tw-divide-opacity, 1));
}
.divide-grayscale-400 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(179 179 179 / var(--tw-divide-opacity, 1));
}
.self-center{
  align-self: center;
}
.self-stretch{
  align-self: stretch;
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-hidden{
  overflow-x: hidden;
}
.overflow-y-scroll{
  overflow-y: scroll;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis{
  text-overflow: ellipsis;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.break-all{
  word-break: break-all;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-none{
  border-radius: 0px;
}
.rounded-l-md{
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.rounded-r-md{
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.rounded-bl{
  border-bottom-left-radius: 0.25rem;
}
.rounded-tl{
  border-top-left-radius: 0.25rem;
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-4{
  border-width: 4px;
}
.border-y{
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-l-4{
  border-left-width: 4px;
}
.border-r{
  border-right-width: 1px;
}
.border-r-2{
  border-right-width: 2px;
}
.border-t{
  border-top-width: 1px;
}
.border-solid{
  border-style: solid;
}
.border-dashed{
  border-style: dashed;
}
.border-none{
  border-style: none;
}
.border-accent-600{
  --tw-border-opacity: 1;
  border-color: rgb(17 151 166 / var(--tw-border-opacity, 1));
}
.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}
.border-brand-decorative{
  --tw-border-opacity: 1;
  border-color: rgb(90 206 158 / var(--tw-border-opacity, 1));
}
.border-brand-decorative\/0{
  border-color: rgb(90 206 158 / 0);
}
.border-brand-decorative\/10{
  border-color: rgb(90 206 158 / 0.1);
}
.border-brand-decorative\/100{
  border-color: rgb(90 206 158 / 1);
}
.border-brand-decorative\/15{
  border-color: rgb(90 206 158 / 0.15);
}
.border-brand-decorative\/20{
  border-color: rgb(90 206 158 / 0.2);
}
.border-brand-decorative\/25{
  border-color: rgb(90 206 158 / 0.25);
}
.border-brand-decorative\/30{
  border-color: rgb(90 206 158 / 0.3);
}
.border-brand-decorative\/35{
  border-color: rgb(90 206 158 / 0.35);
}
.border-brand-decorative\/40{
  border-color: rgb(90 206 158 / 0.4);
}
.border-brand-decorative\/45{
  border-color: rgb(90 206 158 / 0.45);
}
.border-brand-decorative\/5{
  border-color: rgb(90 206 158 / 0.05);
}
.border-brand-decorative\/50{
  border-color: rgb(90 206 158 / 0.5);
}
.border-brand-decorative\/55{
  border-color: rgb(90 206 158 / 0.55);
}
.border-brand-decorative\/60{
  border-color: rgb(90 206 158 / 0.6);
}
.border-brand-decorative\/65{
  border-color: rgb(90 206 158 / 0.65);
}
.border-brand-decorative\/70{
  border-color: rgb(90 206 158 / 0.7);
}
.border-brand-decorative\/75{
  border-color: rgb(90 206 158 / 0.75);
}
.border-brand-decorative\/80{
  border-color: rgb(90 206 158 / 0.8);
}
.border-brand-decorative\/85{
  border-color: rgb(90 206 158 / 0.85);
}
.border-brand-decorative\/90{
  border-color: rgb(90 206 158 / 0.9);
}
.border-brand-decorative\/95{
  border-color: rgb(90 206 158 / 0.95);
}
.border-brand-primary{
  --tw-border-opacity: 1;
  border-color: rgb(46 107 104 / var(--tw-border-opacity, 1));
}
.border-brand-primary-dark{
  --tw-border-opacity: 1;
  border-color: rgb(31 74 71 / var(--tw-border-opacity, 1));
}
.border-brand-primary-dark\/0{
  border-color: rgb(31 74 71 / 0);
}
.border-brand-primary-dark\/10{
  border-color: rgb(31 74 71 / 0.1);
}
.border-brand-primary-dark\/100{
  border-color: rgb(31 74 71 / 1);
}
.border-brand-primary-dark\/15{
  border-color: rgb(31 74 71 / 0.15);
}
.border-brand-primary-dark\/20{
  border-color: rgb(31 74 71 / 0.2);
}
.border-brand-primary-dark\/25{
  border-color: rgb(31 74 71 / 0.25);
}
.border-brand-primary-dark\/30{
  border-color: rgb(31 74 71 / 0.3);
}
.border-brand-primary-dark\/35{
  border-color: rgb(31 74 71 / 0.35);
}
.border-brand-primary-dark\/40{
  border-color: rgb(31 74 71 / 0.4);
}
.border-brand-primary-dark\/45{
  border-color: rgb(31 74 71 / 0.45);
}
.border-brand-primary-dark\/5{
  border-color: rgb(31 74 71 / 0.05);
}
.border-brand-primary-dark\/50{
  border-color: rgb(31 74 71 / 0.5);
}
.border-brand-primary-dark\/55{
  border-color: rgb(31 74 71 / 0.55);
}
.border-brand-primary-dark\/60{
  border-color: rgb(31 74 71 / 0.6);
}
.border-brand-primary-dark\/65{
  border-color: rgb(31 74 71 / 0.65);
}
.border-brand-primary-dark\/70{
  border-color: rgb(31 74 71 / 0.7);
}
.border-brand-primary-dark\/75{
  border-color: rgb(31 74 71 / 0.75);
}
.border-brand-primary-dark\/80{
  border-color: rgb(31 74 71 / 0.8);
}
.border-brand-primary-dark\/85{
  border-color: rgb(31 74 71 / 0.85);
}
.border-brand-primary-dark\/90{
  border-color: rgb(31 74 71 / 0.9);
}
.border-brand-primary-dark\/95{
  border-color: rgb(31 74 71 / 0.95);
}
.border-brand-primary-darker{
  --tw-border-opacity: 1;
  border-color: rgb(22 54 52 / var(--tw-border-opacity, 1));
}
.border-brand-primary-darker\/0{
  border-color: rgb(22 54 52 / 0);
}
.border-brand-primary-darker\/10{
  border-color: rgb(22 54 52 / 0.1);
}
.border-brand-primary-darker\/100{
  border-color: rgb(22 54 52 / 1);
}
.border-brand-primary-darker\/15{
  border-color: rgb(22 54 52 / 0.15);
}
.border-brand-primary-darker\/20{
  border-color: rgb(22 54 52 / 0.2);
}
.border-brand-primary-darker\/25{
  border-color: rgb(22 54 52 / 0.25);
}
.border-brand-primary-darker\/30{
  border-color: rgb(22 54 52 / 0.3);
}
.border-brand-primary-darker\/35{
  border-color: rgb(22 54 52 / 0.35);
}
.border-brand-primary-darker\/40{
  border-color: rgb(22 54 52 / 0.4);
}
.border-brand-primary-darker\/45{
  border-color: rgb(22 54 52 / 0.45);
}
.border-brand-primary-darker\/5{
  border-color: rgb(22 54 52 / 0.05);
}
.border-brand-primary-darker\/50{
  border-color: rgb(22 54 52 / 0.5);
}
.border-brand-primary-darker\/55{
  border-color: rgb(22 54 52 / 0.55);
}
.border-brand-primary-darker\/60{
  border-color: rgb(22 54 52 / 0.6);
}
.border-brand-primary-darker\/65{
  border-color: rgb(22 54 52 / 0.65);
}
.border-brand-primary-darker\/70{
  border-color: rgb(22 54 52 / 0.7);
}
.border-brand-primary-darker\/75{
  border-color: rgb(22 54 52 / 0.75);
}
.border-brand-primary-darker\/80{
  border-color: rgb(22 54 52 / 0.8);
}
.border-brand-primary-darker\/85{
  border-color: rgb(22 54 52 / 0.85);
}
.border-brand-primary-darker\/90{
  border-color: rgb(22 54 52 / 0.9);
}
.border-brand-primary-darker\/95{
  border-color: rgb(22 54 52 / 0.95);
}
.border-brand-primary-light{
  --tw-border-opacity: 1;
  border-color: rgb(61 138 134 / var(--tw-border-opacity, 1));
}
.border-brand-primary-light\/0{
  border-color: rgb(61 138 134 / 0);
}
.border-brand-primary-light\/10{
  border-color: rgb(61 138 134 / 0.1);
}
.border-brand-primary-light\/100{
  border-color: rgb(61 138 134 / 1);
}
.border-brand-primary-light\/15{
  border-color: rgb(61 138 134 / 0.15);
}
.border-brand-primary-light\/20{
  border-color: rgb(61 138 134 / 0.2);
}
.border-brand-primary-light\/25{
  border-color: rgb(61 138 134 / 0.25);
}
.border-brand-primary-light\/30{
  border-color: rgb(61 138 134 / 0.3);
}
.border-brand-primary-light\/35{
  border-color: rgb(61 138 134 / 0.35);
}
.border-brand-primary-light\/40{
  border-color: rgb(61 138 134 / 0.4);
}
.border-brand-primary-light\/45{
  border-color: rgb(61 138 134 / 0.45);
}
.border-brand-primary-light\/5{
  border-color: rgb(61 138 134 / 0.05);
}
.border-brand-primary-light\/50{
  border-color: rgb(61 138 134 / 0.5);
}
.border-brand-primary-light\/55{
  border-color: rgb(61 138 134 / 0.55);
}
.border-brand-primary-light\/60{
  border-color: rgb(61 138 134 / 0.6);
}
.border-brand-primary-light\/65{
  border-color: rgb(61 138 134 / 0.65);
}
.border-brand-primary-light\/70{
  border-color: rgb(61 138 134 / 0.7);
}
.border-brand-primary-light\/75{
  border-color: rgb(61 138 134 / 0.75);
}
.border-brand-primary-light\/80{
  border-color: rgb(61 138 134 / 0.8);
}
.border-brand-primary-light\/85{
  border-color: rgb(61 138 134 / 0.85);
}
.border-brand-primary-light\/90{
  border-color: rgb(61 138 134 / 0.9);
}
.border-brand-primary-light\/95{
  border-color: rgb(61 138 134 / 0.95);
}
.border-brand-primary\/0{
  border-color: rgb(46 107 104 / 0);
}
.border-brand-primary\/10{
  border-color: rgb(46 107 104 / 0.1);
}
.border-brand-primary\/100{
  border-color: rgb(46 107 104 / 1);
}
.border-brand-primary\/15{
  border-color: rgb(46 107 104 / 0.15);
}
.border-brand-primary\/20{
  border-color: rgb(46 107 104 / 0.2);
}
.border-brand-primary\/25{
  border-color: rgb(46 107 104 / 0.25);
}
.border-brand-primary\/30{
  border-color: rgb(46 107 104 / 0.3);
}
.border-brand-primary\/35{
  border-color: rgb(46 107 104 / 0.35);
}
.border-brand-primary\/40{
  border-color: rgb(46 107 104 / 0.4);
}
.border-brand-primary\/45{
  border-color: rgb(46 107 104 / 0.45);
}
.border-brand-primary\/5{
  border-color: rgb(46 107 104 / 0.05);
}
.border-brand-primary\/50{
  border-color: rgb(46 107 104 / 0.5);
}
.border-brand-primary\/55{
  border-color: rgb(46 107 104 / 0.55);
}
.border-brand-primary\/60{
  border-color: rgb(46 107 104 / 0.6);
}
.border-brand-primary\/65{
  border-color: rgb(46 107 104 / 0.65);
}
.border-brand-primary\/70{
  border-color: rgb(46 107 104 / 0.7);
}
.border-brand-primary\/75{
  border-color: rgb(46 107 104 / 0.75);
}
.border-brand-primary\/80{
  border-color: rgb(46 107 104 / 0.8);
}
.border-brand-primary\/85{
  border-color: rgb(46 107 104 / 0.85);
}
.border-brand-primary\/90{
  border-color: rgb(46 107 104 / 0.9);
}
.border-brand-primary\/95{
  border-color: rgb(46 107 104 / 0.95);
}
.border-error-dark{
  --tw-border-opacity: 1;
  border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}
.border-error-dark\/0{
  border-color: rgb(153 27 27 / 0);
}
.border-error-dark\/10{
  border-color: rgb(153 27 27 / 0.1);
}
.border-error-dark\/100{
  border-color: rgb(153 27 27 / 1);
}
.border-error-dark\/15{
  border-color: rgb(153 27 27 / 0.15);
}
.border-error-dark\/20{
  border-color: rgb(153 27 27 / 0.2);
}
.border-error-dark\/25{
  border-color: rgb(153 27 27 / 0.25);
}
.border-error-dark\/30{
  border-color: rgb(153 27 27 / 0.3);
}
.border-error-dark\/35{
  border-color: rgb(153 27 27 / 0.35);
}
.border-error-dark\/40{
  border-color: rgb(153 27 27 / 0.4);
}
.border-error-dark\/45{
  border-color: rgb(153 27 27 / 0.45);
}
.border-error-dark\/5{
  border-color: rgb(153 27 27 / 0.05);
}
.border-error-dark\/50{
  border-color: rgb(153 27 27 / 0.5);
}
.border-error-dark\/55{
  border-color: rgb(153 27 27 / 0.55);
}
.border-error-dark\/60{
  border-color: rgb(153 27 27 / 0.6);
}
.border-error-dark\/65{
  border-color: rgb(153 27 27 / 0.65);
}
.border-error-dark\/70{
  border-color: rgb(153 27 27 / 0.7);
}
.border-error-dark\/75{
  border-color: rgb(153 27 27 / 0.75);
}
.border-error-dark\/80{
  border-color: rgb(153 27 27 / 0.8);
}
.border-error-dark\/85{
  border-color: rgb(153 27 27 / 0.85);
}
.border-error-dark\/90{
  border-color: rgb(153 27 27 / 0.9);
}
.border-error-dark\/95{
  border-color: rgb(153 27 27 / 0.95);
}
.border-error-light{
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
}
.border-error-light\/0{
  border-color: rgb(220 38 38 / 0);
}
.border-error-light\/10{
  border-color: rgb(220 38 38 / 0.1);
}
.border-error-light\/100{
  border-color: rgb(220 38 38 / 1);
}
.border-error-light\/15{
  border-color: rgb(220 38 38 / 0.15);
}
.border-error-light\/20{
  border-color: rgb(220 38 38 / 0.2);
}
.border-error-light\/25{
  border-color: rgb(220 38 38 / 0.25);
}
.border-error-light\/30{
  border-color: rgb(220 38 38 / 0.3);
}
.border-error-light\/35{
  border-color: rgb(220 38 38 / 0.35);
}
.border-error-light\/40{
  border-color: rgb(220 38 38 / 0.4);
}
.border-error-light\/45{
  border-color: rgb(220 38 38 / 0.45);
}
.border-error-light\/5{
  border-color: rgb(220 38 38 / 0.05);
}
.border-error-light\/50{
  border-color: rgb(220 38 38 / 0.5);
}
.border-error-light\/55{
  border-color: rgb(220 38 38 / 0.55);
}
.border-error-light\/60{
  border-color: rgb(220 38 38 / 0.6);
}
.border-error-light\/65{
  border-color: rgb(220 38 38 / 0.65);
}
.border-error-light\/70{
  border-color: rgb(220 38 38 / 0.7);
}
.border-error-light\/75{
  border-color: rgb(220 38 38 / 0.75);
}
.border-error-light\/80{
  border-color: rgb(220 38 38 / 0.8);
}
.border-error-light\/85{
  border-color: rgb(220 38 38 / 0.85);
}
.border-error-light\/90{
  border-color: rgb(220 38 38 / 0.9);
}
.border-error-light\/95{
  border-color: rgb(220 38 38 / 0.95);
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.border-gray-500{
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.border-grayscale-100{
  --tw-border-opacity: 1;
  border-color: rgb(247 247 247 / var(--tw-border-opacity, 1));
}
.border-grayscale-200{
  --tw-border-opacity: 1;
  border-color: rgb(242 242 242 / var(--tw-border-opacity, 1));
}
.border-grayscale-300{
  --tw-border-opacity: 1;
  border-color: rgb(149 149 149 / var(--tw-border-opacity, 1));
}
.border-green-300{
  --tw-border-opacity: 1;
  border-color: rgb(117 195 189 / var(--tw-border-opacity, 1));
}
.border-info-dark{
  --tw-border-opacity: 1;
  border-color: rgb(7 89 133 / var(--tw-border-opacity, 1));
}
.border-info-dark\/0{
  border-color: rgb(7 89 133 / 0);
}
.border-info-dark\/10{
  border-color: rgb(7 89 133 / 0.1);
}
.border-info-dark\/100{
  border-color: rgb(7 89 133 / 1);
}
.border-info-dark\/15{
  border-color: rgb(7 89 133 / 0.15);
}
.border-info-dark\/20{
  border-color: rgb(7 89 133 / 0.2);
}
.border-info-dark\/25{
  border-color: rgb(7 89 133 / 0.25);
}
.border-info-dark\/30{
  border-color: rgb(7 89 133 / 0.3);
}
.border-info-dark\/35{
  border-color: rgb(7 89 133 / 0.35);
}
.border-info-dark\/40{
  border-color: rgb(7 89 133 / 0.4);
}
.border-info-dark\/45{
  border-color: rgb(7 89 133 / 0.45);
}
.border-info-dark\/5{
  border-color: rgb(7 89 133 / 0.05);
}
.border-info-dark\/50{
  border-color: rgb(7 89 133 / 0.5);
}
.border-info-dark\/55{
  border-color: rgb(7 89 133 / 0.55);
}
.border-info-dark\/60{
  border-color: rgb(7 89 133 / 0.6);
}
.border-info-dark\/65{
  border-color: rgb(7 89 133 / 0.65);
}
.border-info-dark\/70{
  border-color: rgb(7 89 133 / 0.7);
}
.border-info-dark\/75{
  border-color: rgb(7 89 133 / 0.75);
}
.border-info-dark\/80{
  border-color: rgb(7 89 133 / 0.8);
}
.border-info-dark\/85{
  border-color: rgb(7 89 133 / 0.85);
}
.border-info-dark\/90{
  border-color: rgb(7 89 133 / 0.9);
}
.border-info-dark\/95{
  border-color: rgb(7 89 133 / 0.95);
}
.border-info-light{
  --tw-border-opacity: 1;
  border-color: rgb(8 145 178 / var(--tw-border-opacity, 1));
}
.border-info-light\/0{
  border-color: rgb(8 145 178 / 0);
}
.border-info-light\/10{
  border-color: rgb(8 145 178 / 0.1);
}
.border-info-light\/100{
  border-color: rgb(8 145 178 / 1);
}
.border-info-light\/15{
  border-color: rgb(8 145 178 / 0.15);
}
.border-info-light\/20{
  border-color: rgb(8 145 178 / 0.2);
}
.border-info-light\/25{
  border-color: rgb(8 145 178 / 0.25);
}
.border-info-light\/30{
  border-color: rgb(8 145 178 / 0.3);
}
.border-info-light\/35{
  border-color: rgb(8 145 178 / 0.35);
}
.border-info-light\/40{
  border-color: rgb(8 145 178 / 0.4);
}
.border-info-light\/45{
  border-color: rgb(8 145 178 / 0.45);
}
.border-info-light\/5{
  border-color: rgb(8 145 178 / 0.05);
}
.border-info-light\/50{
  border-color: rgb(8 145 178 / 0.5);
}
.border-info-light\/55{
  border-color: rgb(8 145 178 / 0.55);
}
.border-info-light\/60{
  border-color: rgb(8 145 178 / 0.6);
}
.border-info-light\/65{
  border-color: rgb(8 145 178 / 0.65);
}
.border-info-light\/70{
  border-color: rgb(8 145 178 / 0.7);
}
.border-info-light\/75{
  border-color: rgb(8 145 178 / 0.75);
}
.border-info-light\/80{
  border-color: rgb(8 145 178 / 0.8);
}
.border-info-light\/85{
  border-color: rgb(8 145 178 / 0.85);
}
.border-info-light\/90{
  border-color: rgb(8 145 178 / 0.9);
}
.border-info-light\/95{
  border-color: rgb(8 145 178 / 0.95);
}
.border-neutral-100{
  --tw-border-opacity: 1;
  border-color: rgb(242 242 242 / var(--tw-border-opacity, 1));
}
.border-neutral-100\/0{
  border-color: rgb(242 242 242 / 0);
}
.border-neutral-100\/10{
  border-color: rgb(242 242 242 / 0.1);
}
.border-neutral-100\/100{
  border-color: rgb(242 242 242 / 1);
}
.border-neutral-100\/15{
  border-color: rgb(242 242 242 / 0.15);
}
.border-neutral-100\/20{
  border-color: rgb(242 242 242 / 0.2);
}
.border-neutral-100\/25{
  border-color: rgb(242 242 242 / 0.25);
}
.border-neutral-100\/30{
  border-color: rgb(242 242 242 / 0.3);
}
.border-neutral-100\/35{
  border-color: rgb(242 242 242 / 0.35);
}
.border-neutral-100\/40{
  border-color: rgb(242 242 242 / 0.4);
}
.border-neutral-100\/45{
  border-color: rgb(242 242 242 / 0.45);
}
.border-neutral-100\/5{
  border-color: rgb(242 242 242 / 0.05);
}
.border-neutral-100\/50{
  border-color: rgb(242 242 242 / 0.5);
}
.border-neutral-100\/55{
  border-color: rgb(242 242 242 / 0.55);
}
.border-neutral-100\/60{
  border-color: rgb(242 242 242 / 0.6);
}
.border-neutral-100\/65{
  border-color: rgb(242 242 242 / 0.65);
}
.border-neutral-100\/70{
  border-color: rgb(242 242 242 / 0.7);
}
.border-neutral-100\/75{
  border-color: rgb(242 242 242 / 0.75);
}
.border-neutral-100\/80{
  border-color: rgb(242 242 242 / 0.8);
}
.border-neutral-100\/85{
  border-color: rgb(242 242 242 / 0.85);
}
.border-neutral-100\/90{
  border-color: rgb(242 242 242 / 0.9);
}
.border-neutral-100\/95{
  border-color: rgb(242 242 242 / 0.95);
}
.border-neutral-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}
.border-neutral-200\/0{
  border-color: rgb(229 229 229 / 0);
}
.border-neutral-200\/10{
  border-color: rgb(229 229 229 / 0.1);
}
.border-neutral-200\/100{
  border-color: rgb(229 229 229 / 1);
}
.border-neutral-200\/15{
  border-color: rgb(229 229 229 / 0.15);
}
.border-neutral-200\/20{
  border-color: rgb(229 229 229 / 0.2);
}
.border-neutral-200\/25{
  border-color: rgb(229 229 229 / 0.25);
}
.border-neutral-200\/30{
  border-color: rgb(229 229 229 / 0.3);
}
.border-neutral-200\/35{
  border-color: rgb(229 229 229 / 0.35);
}
.border-neutral-200\/40{
  border-color: rgb(229 229 229 / 0.4);
}
.border-neutral-200\/45{
  border-color: rgb(229 229 229 / 0.45);
}
.border-neutral-200\/5{
  border-color: rgb(229 229 229 / 0.05);
}
.border-neutral-200\/50{
  border-color: rgb(229 229 229 / 0.5);
}
.border-neutral-200\/55{
  border-color: rgb(229 229 229 / 0.55);
}
.border-neutral-200\/60{
  border-color: rgb(229 229 229 / 0.6);
}
.border-neutral-200\/65{
  border-color: rgb(229 229 229 / 0.65);
}
.border-neutral-200\/70{
  border-color: rgb(229 229 229 / 0.7);
}
.border-neutral-200\/75{
  border-color: rgb(229 229 229 / 0.75);
}
.border-neutral-200\/80{
  border-color: rgb(229 229 229 / 0.8);
}
.border-neutral-200\/85{
  border-color: rgb(229 229 229 / 0.85);
}
.border-neutral-200\/90{
  border-color: rgb(229 229 229 / 0.9);
}
.border-neutral-200\/95{
  border-color: rgb(229 229 229 / 0.95);
}
.border-neutral-300{
  --tw-border-opacity: 1;
  border-color: rgb(212 212 212 / var(--tw-border-opacity, 1));
}
.border-neutral-300\/0{
  border-color: rgb(212 212 212 / 0);
}
.border-neutral-300\/10{
  border-color: rgb(212 212 212 / 0.1);
}
.border-neutral-300\/100{
  border-color: rgb(212 212 212 / 1);
}
.border-neutral-300\/15{
  border-color: rgb(212 212 212 / 0.15);
}
.border-neutral-300\/20{
  border-color: rgb(212 212 212 / 0.2);
}
.border-neutral-300\/25{
  border-color: rgb(212 212 212 / 0.25);
}
.border-neutral-300\/30{
  border-color: rgb(212 212 212 / 0.3);
}
.border-neutral-300\/35{
  border-color: rgb(212 212 212 / 0.35);
}
.border-neutral-300\/40{
  border-color: rgb(212 212 212 / 0.4);
}
.border-neutral-300\/45{
  border-color: rgb(212 212 212 / 0.45);
}
.border-neutral-300\/5{
  border-color: rgb(212 212 212 / 0.05);
}
.border-neutral-300\/50{
  border-color: rgb(212 212 212 / 0.5);
}
.border-neutral-300\/55{
  border-color: rgb(212 212 212 / 0.55);
}
.border-neutral-300\/60{
  border-color: rgb(212 212 212 / 0.6);
}
.border-neutral-300\/65{
  border-color: rgb(212 212 212 / 0.65);
}
.border-neutral-300\/70{
  border-color: rgb(212 212 212 / 0.7);
}
.border-neutral-300\/75{
  border-color: rgb(212 212 212 / 0.75);
}
.border-neutral-300\/80{
  border-color: rgb(212 212 212 / 0.8);
}
.border-neutral-300\/85{
  border-color: rgb(212 212 212 / 0.85);
}
.border-neutral-300\/90{
  border-color: rgb(212 212 212 / 0.9);
}
.border-neutral-300\/95{
  border-color: rgb(212 212 212 / 0.95);
}
.border-neutral-400{
  --tw-border-opacity: 1;
  border-color: rgb(163 163 163 / var(--tw-border-opacity, 1));
}
.border-neutral-400\/0{
  border-color: rgb(163 163 163 / 0);
}
.border-neutral-400\/10{
  border-color: rgb(163 163 163 / 0.1);
}
.border-neutral-400\/100{
  border-color: rgb(163 163 163 / 1);
}
.border-neutral-400\/15{
  border-color: rgb(163 163 163 / 0.15);
}
.border-neutral-400\/20{
  border-color: rgb(163 163 163 / 0.2);
}
.border-neutral-400\/25{
  border-color: rgb(163 163 163 / 0.25);
}
.border-neutral-400\/30{
  border-color: rgb(163 163 163 / 0.3);
}
.border-neutral-400\/35{
  border-color: rgb(163 163 163 / 0.35);
}
.border-neutral-400\/40{
  border-color: rgb(163 163 163 / 0.4);
}
.border-neutral-400\/45{
  border-color: rgb(163 163 163 / 0.45);
}
.border-neutral-400\/5{
  border-color: rgb(163 163 163 / 0.05);
}
.border-neutral-400\/50{
  border-color: rgb(163 163 163 / 0.5);
}
.border-neutral-400\/55{
  border-color: rgb(163 163 163 / 0.55);
}
.border-neutral-400\/60{
  border-color: rgb(163 163 163 / 0.6);
}
.border-neutral-400\/65{
  border-color: rgb(163 163 163 / 0.65);
}
.border-neutral-400\/70{
  border-color: rgb(163 163 163 / 0.7);
}
.border-neutral-400\/75{
  border-color: rgb(163 163 163 / 0.75);
}
.border-neutral-400\/80{
  border-color: rgb(163 163 163 / 0.8);
}
.border-neutral-400\/85{
  border-color: rgb(163 163 163 / 0.85);
}
.border-neutral-400\/90{
  border-color: rgb(163 163 163 / 0.9);
}
.border-neutral-400\/95{
  border-color: rgb(163 163 163 / 0.95);
}
.border-neutral-50{
  --tw-border-opacity: 1;
  border-color: rgb(250 250 250 / var(--tw-border-opacity, 1));
}
.border-neutral-50\/0{
  border-color: rgb(250 250 250 / 0);
}
.border-neutral-50\/10{
  border-color: rgb(250 250 250 / 0.1);
}
.border-neutral-50\/100{
  border-color: rgb(250 250 250 / 1);
}
.border-neutral-50\/15{
  border-color: rgb(250 250 250 / 0.15);
}
.border-neutral-50\/20{
  border-color: rgb(250 250 250 / 0.2);
}
.border-neutral-50\/25{
  border-color: rgb(250 250 250 / 0.25);
}
.border-neutral-50\/30{
  border-color: rgb(250 250 250 / 0.3);
}
.border-neutral-50\/35{
  border-color: rgb(250 250 250 / 0.35);
}
.border-neutral-50\/40{
  border-color: rgb(250 250 250 / 0.4);
}
.border-neutral-50\/45{
  border-color: rgb(250 250 250 / 0.45);
}
.border-neutral-50\/5{
  border-color: rgb(250 250 250 / 0.05);
}
.border-neutral-50\/50{
  border-color: rgb(250 250 250 / 0.5);
}
.border-neutral-50\/55{
  border-color: rgb(250 250 250 / 0.55);
}
.border-neutral-50\/60{
  border-color: rgb(250 250 250 / 0.6);
}
.border-neutral-50\/65{
  border-color: rgb(250 250 250 / 0.65);
}
.border-neutral-50\/70{
  border-color: rgb(250 250 250 / 0.7);
}
.border-neutral-50\/75{
  border-color: rgb(250 250 250 / 0.75);
}
.border-neutral-50\/80{
  border-color: rgb(250 250 250 / 0.8);
}
.border-neutral-50\/85{
  border-color: rgb(250 250 250 / 0.85);
}
.border-neutral-50\/90{
  border-color: rgb(250 250 250 / 0.9);
}
.border-neutral-50\/95{
  border-color: rgb(250 250 250 / 0.95);
}
.border-neutral-500{
  --tw-border-opacity: 1;
  border-color: rgb(140 140 140 / var(--tw-border-opacity, 1));
}
.border-neutral-500\/0{
  border-color: rgb(140 140 140 / 0);
}
.border-neutral-500\/10{
  border-color: rgb(140 140 140 / 0.1);
}
.border-neutral-500\/100{
  border-color: rgb(140 140 140 / 1);
}
.border-neutral-500\/15{
  border-color: rgb(140 140 140 / 0.15);
}
.border-neutral-500\/20{
  border-color: rgb(140 140 140 / 0.2);
}
.border-neutral-500\/25{
  border-color: rgb(140 140 140 / 0.25);
}
.border-neutral-500\/30{
  border-color: rgb(140 140 140 / 0.3);
}
.border-neutral-500\/35{
  border-color: rgb(140 140 140 / 0.35);
}
.border-neutral-500\/40{
  border-color: rgb(140 140 140 / 0.4);
}
.border-neutral-500\/45{
  border-color: rgb(140 140 140 / 0.45);
}
.border-neutral-500\/5{
  border-color: rgb(140 140 140 / 0.05);
}
.border-neutral-500\/50{
  border-color: rgb(140 140 140 / 0.5);
}
.border-neutral-500\/55{
  border-color: rgb(140 140 140 / 0.55);
}
.border-neutral-500\/60{
  border-color: rgb(140 140 140 / 0.6);
}
.border-neutral-500\/65{
  border-color: rgb(140 140 140 / 0.65);
}
.border-neutral-500\/70{
  border-color: rgb(140 140 140 / 0.7);
}
.border-neutral-500\/75{
  border-color: rgb(140 140 140 / 0.75);
}
.border-neutral-500\/80{
  border-color: rgb(140 140 140 / 0.8);
}
.border-neutral-500\/85{
  border-color: rgb(140 140 140 / 0.85);
}
.border-neutral-500\/90{
  border-color: rgb(140 140 140 / 0.9);
}
.border-neutral-500\/95{
  border-color: rgb(140 140 140 / 0.95);
}
.border-neutral-600{
  --tw-border-opacity: 1;
  border-color: rgb(110 110 110 / var(--tw-border-opacity, 1));
}
.border-neutral-600\/0{
  border-color: rgb(110 110 110 / 0);
}
.border-neutral-600\/10{
  border-color: rgb(110 110 110 / 0.1);
}
.border-neutral-600\/100{
  border-color: rgb(110 110 110 / 1);
}
.border-neutral-600\/15{
  border-color: rgb(110 110 110 / 0.15);
}
.border-neutral-600\/20{
  border-color: rgb(110 110 110 / 0.2);
}
.border-neutral-600\/25{
  border-color: rgb(110 110 110 / 0.25);
}
.border-neutral-600\/30{
  border-color: rgb(110 110 110 / 0.3);
}
.border-neutral-600\/35{
  border-color: rgb(110 110 110 / 0.35);
}
.border-neutral-600\/40{
  border-color: rgb(110 110 110 / 0.4);
}
.border-neutral-600\/45{
  border-color: rgb(110 110 110 / 0.45);
}
.border-neutral-600\/5{
  border-color: rgb(110 110 110 / 0.05);
}
.border-neutral-600\/50{
  border-color: rgb(110 110 110 / 0.5);
}
.border-neutral-600\/55{
  border-color: rgb(110 110 110 / 0.55);
}
.border-neutral-600\/60{
  border-color: rgb(110 110 110 / 0.6);
}
.border-neutral-600\/65{
  border-color: rgb(110 110 110 / 0.65);
}
.border-neutral-600\/70{
  border-color: rgb(110 110 110 / 0.7);
}
.border-neutral-600\/75{
  border-color: rgb(110 110 110 / 0.75);
}
.border-neutral-600\/80{
  border-color: rgb(110 110 110 / 0.8);
}
.border-neutral-600\/85{
  border-color: rgb(110 110 110 / 0.85);
}
.border-neutral-600\/90{
  border-color: rgb(110 110 110 / 0.9);
}
.border-neutral-600\/95{
  border-color: rgb(110 110 110 / 0.95);
}
.border-neutral-700{
  --tw-border-opacity: 1;
  border-color: rgb(82 82 82 / var(--tw-border-opacity, 1));
}
.border-neutral-700\/0{
  border-color: rgb(82 82 82 / 0);
}
.border-neutral-700\/10{
  border-color: rgb(82 82 82 / 0.1);
}
.border-neutral-700\/100{
  border-color: rgb(82 82 82 / 1);
}
.border-neutral-700\/15{
  border-color: rgb(82 82 82 / 0.15);
}
.border-neutral-700\/20{
  border-color: rgb(82 82 82 / 0.2);
}
.border-neutral-700\/25{
  border-color: rgb(82 82 82 / 0.25);
}
.border-neutral-700\/30{
  border-color: rgb(82 82 82 / 0.3);
}
.border-neutral-700\/35{
  border-color: rgb(82 82 82 / 0.35);
}
.border-neutral-700\/40{
  border-color: rgb(82 82 82 / 0.4);
}
.border-neutral-700\/45{
  border-color: rgb(82 82 82 / 0.45);
}
.border-neutral-700\/5{
  border-color: rgb(82 82 82 / 0.05);
}
.border-neutral-700\/50{
  border-color: rgb(82 82 82 / 0.5);
}
.border-neutral-700\/55{
  border-color: rgb(82 82 82 / 0.55);
}
.border-neutral-700\/60{
  border-color: rgb(82 82 82 / 0.6);
}
.border-neutral-700\/65{
  border-color: rgb(82 82 82 / 0.65);
}
.border-neutral-700\/70{
  border-color: rgb(82 82 82 / 0.7);
}
.border-neutral-700\/75{
  border-color: rgb(82 82 82 / 0.75);
}
.border-neutral-700\/80{
  border-color: rgb(82 82 82 / 0.8);
}
.border-neutral-700\/85{
  border-color: rgb(82 82 82 / 0.85);
}
.border-neutral-700\/90{
  border-color: rgb(82 82 82 / 0.9);
}
.border-neutral-700\/95{
  border-color: rgb(82 82 82 / 0.95);
}
.border-neutral-800{
  --tw-border-opacity: 1;
  border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}
.border-neutral-800\/0{
  border-color: rgb(64 64 64 / 0);
}
.border-neutral-800\/10{
  border-color: rgb(64 64 64 / 0.1);
}
.border-neutral-800\/100{
  border-color: rgb(64 64 64 / 1);
}
.border-neutral-800\/15{
  border-color: rgb(64 64 64 / 0.15);
}
.border-neutral-800\/20{
  border-color: rgb(64 64 64 / 0.2);
}
.border-neutral-800\/25{
  border-color: rgb(64 64 64 / 0.25);
}
.border-neutral-800\/30{
  border-color: rgb(64 64 64 / 0.3);
}
.border-neutral-800\/35{
  border-color: rgb(64 64 64 / 0.35);
}
.border-neutral-800\/40{
  border-color: rgb(64 64 64 / 0.4);
}
.border-neutral-800\/45{
  border-color: rgb(64 64 64 / 0.45);
}
.border-neutral-800\/5{
  border-color: rgb(64 64 64 / 0.05);
}
.border-neutral-800\/50{
  border-color: rgb(64 64 64 / 0.5);
}
.border-neutral-800\/55{
  border-color: rgb(64 64 64 / 0.55);
}
.border-neutral-800\/60{
  border-color: rgb(64 64 64 / 0.6);
}
.border-neutral-800\/65{
  border-color: rgb(64 64 64 / 0.65);
}
.border-neutral-800\/70{
  border-color: rgb(64 64 64 / 0.7);
}
.border-neutral-800\/75{
  border-color: rgb(64 64 64 / 0.75);
}
.border-neutral-800\/80{
  border-color: rgb(64 64 64 / 0.8);
}
.border-neutral-800\/85{
  border-color: rgb(64 64 64 / 0.85);
}
.border-neutral-800\/90{
  border-color: rgb(64 64 64 / 0.9);
}
.border-neutral-800\/95{
  border-color: rgb(64 64 64 / 0.95);
}
.border-neutral-900{
  --tw-border-opacity: 1;
  border-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}
.border-neutral-900\/0{
  border-color: rgb(38 38 38 / 0);
}
.border-neutral-900\/10{
  border-color: rgb(38 38 38 / 0.1);
}
.border-neutral-900\/100{
  border-color: rgb(38 38 38 / 1);
}
.border-neutral-900\/15{
  border-color: rgb(38 38 38 / 0.15);
}
.border-neutral-900\/20{
  border-color: rgb(38 38 38 / 0.2);
}
.border-neutral-900\/25{
  border-color: rgb(38 38 38 / 0.25);
}
.border-neutral-900\/30{
  border-color: rgb(38 38 38 / 0.3);
}
.border-neutral-900\/35{
  border-color: rgb(38 38 38 / 0.35);
}
.border-neutral-900\/40{
  border-color: rgb(38 38 38 / 0.4);
}
.border-neutral-900\/45{
  border-color: rgb(38 38 38 / 0.45);
}
.border-neutral-900\/5{
  border-color: rgb(38 38 38 / 0.05);
}
.border-neutral-900\/50{
  border-color: rgb(38 38 38 / 0.5);
}
.border-neutral-900\/55{
  border-color: rgb(38 38 38 / 0.55);
}
.border-neutral-900\/60{
  border-color: rgb(38 38 38 / 0.6);
}
.border-neutral-900\/65{
  border-color: rgb(38 38 38 / 0.65);
}
.border-neutral-900\/70{
  border-color: rgb(38 38 38 / 0.7);
}
.border-neutral-900\/75{
  border-color: rgb(38 38 38 / 0.75);
}
.border-neutral-900\/80{
  border-color: rgb(38 38 38 / 0.8);
}
.border-neutral-900\/85{
  border-color: rgb(38 38 38 / 0.85);
}
.border-neutral-900\/90{
  border-color: rgb(38 38 38 / 0.9);
}
.border-neutral-900\/95{
  border-color: rgb(38 38 38 / 0.95);
}
.border-neutral-950{
  --tw-border-opacity: 1;
  border-color: rgb(23 23 23 / var(--tw-border-opacity, 1));
}
.border-neutral-950\/0{
  border-color: rgb(23 23 23 / 0);
}
.border-neutral-950\/10{
  border-color: rgb(23 23 23 / 0.1);
}
.border-neutral-950\/100{
  border-color: rgb(23 23 23 / 1);
}
.border-neutral-950\/15{
  border-color: rgb(23 23 23 / 0.15);
}
.border-neutral-950\/20{
  border-color: rgb(23 23 23 / 0.2);
}
.border-neutral-950\/25{
  border-color: rgb(23 23 23 / 0.25);
}
.border-neutral-950\/30{
  border-color: rgb(23 23 23 / 0.3);
}
.border-neutral-950\/35{
  border-color: rgb(23 23 23 / 0.35);
}
.border-neutral-950\/40{
  border-color: rgb(23 23 23 / 0.4);
}
.border-neutral-950\/45{
  border-color: rgb(23 23 23 / 0.45);
}
.border-neutral-950\/5{
  border-color: rgb(23 23 23 / 0.05);
}
.border-neutral-950\/50{
  border-color: rgb(23 23 23 / 0.5);
}
.border-neutral-950\/55{
  border-color: rgb(23 23 23 / 0.55);
}
.border-neutral-950\/60{
  border-color: rgb(23 23 23 / 0.6);
}
.border-neutral-950\/65{
  border-color: rgb(23 23 23 / 0.65);
}
.border-neutral-950\/70{
  border-color: rgb(23 23 23 / 0.7);
}
.border-neutral-950\/75{
  border-color: rgb(23 23 23 / 0.75);
}
.border-neutral-950\/80{
  border-color: rgb(23 23 23 / 0.8);
}
.border-neutral-950\/85{
  border-color: rgb(23 23 23 / 0.85);
}
.border-neutral-950\/90{
  border-color: rgb(23 23 23 / 0.9);
}
.border-neutral-950\/95{
  border-color: rgb(23 23 23 / 0.95);
}
.border-primary-600{
  --tw-border-opacity: 1;
  border-color: rgb(41 158 109 / var(--tw-border-opacity, 1));
}
.border-success-dark{
  --tw-border-opacity: 1;
  border-color: rgb(4 107 31 / var(--tw-border-opacity, 1));
}
.border-success-dark\/0{
  border-color: rgb(4 107 31 / 0);
}
.border-success-dark\/10{
  border-color: rgb(4 107 31 / 0.1);
}
.border-success-dark\/100{
  border-color: rgb(4 107 31 / 1);
}
.border-success-dark\/15{
  border-color: rgb(4 107 31 / 0.15);
}
.border-success-dark\/20{
  border-color: rgb(4 107 31 / 0.2);
}
.border-success-dark\/25{
  border-color: rgb(4 107 31 / 0.25);
}
.border-success-dark\/30{
  border-color: rgb(4 107 31 / 0.3);
}
.border-success-dark\/35{
  border-color: rgb(4 107 31 / 0.35);
}
.border-success-dark\/40{
  border-color: rgb(4 107 31 / 0.4);
}
.border-success-dark\/45{
  border-color: rgb(4 107 31 / 0.45);
}
.border-success-dark\/5{
  border-color: rgb(4 107 31 / 0.05);
}
.border-success-dark\/50{
  border-color: rgb(4 107 31 / 0.5);
}
.border-success-dark\/55{
  border-color: rgb(4 107 31 / 0.55);
}
.border-success-dark\/60{
  border-color: rgb(4 107 31 / 0.6);
}
.border-success-dark\/65{
  border-color: rgb(4 107 31 / 0.65);
}
.border-success-dark\/70{
  border-color: rgb(4 107 31 / 0.7);
}
.border-success-dark\/75{
  border-color: rgb(4 107 31 / 0.75);
}
.border-success-dark\/80{
  border-color: rgb(4 107 31 / 0.8);
}
.border-success-dark\/85{
  border-color: rgb(4 107 31 / 0.85);
}
.border-success-dark\/90{
  border-color: rgb(4 107 31 / 0.9);
}
.border-success-dark\/95{
  border-color: rgb(4 107 31 / 0.95);
}
.border-success-light{
  --tw-border-opacity: 1;
  border-color: rgb(16 163 55 / var(--tw-border-opacity, 1));
}
.border-success-light\/0{
  border-color: rgb(16 163 55 / 0);
}
.border-success-light\/10{
  border-color: rgb(16 163 55 / 0.1);
}
.border-success-light\/100{
  border-color: rgb(16 163 55 / 1);
}
.border-success-light\/15{
  border-color: rgb(16 163 55 / 0.15);
}
.border-success-light\/20{
  border-color: rgb(16 163 55 / 0.2);
}
.border-success-light\/25{
  border-color: rgb(16 163 55 / 0.25);
}
.border-success-light\/30{
  border-color: rgb(16 163 55 / 0.3);
}
.border-success-light\/35{
  border-color: rgb(16 163 55 / 0.35);
}
.border-success-light\/40{
  border-color: rgb(16 163 55 / 0.4);
}
.border-success-light\/45{
  border-color: rgb(16 163 55 / 0.45);
}
.border-success-light\/5{
  border-color: rgb(16 163 55 / 0.05);
}
.border-success-light\/50{
  border-color: rgb(16 163 55 / 0.5);
}
.border-success-light\/55{
  border-color: rgb(16 163 55 / 0.55);
}
.border-success-light\/60{
  border-color: rgb(16 163 55 / 0.6);
}
.border-success-light\/65{
  border-color: rgb(16 163 55 / 0.65);
}
.border-success-light\/70{
  border-color: rgb(16 163 55 / 0.7);
}
.border-success-light\/75{
  border-color: rgb(16 163 55 / 0.75);
}
.border-success-light\/80{
  border-color: rgb(16 163 55 / 0.8);
}
.border-success-light\/85{
  border-color: rgb(16 163 55 / 0.85);
}
.border-success-light\/90{
  border-color: rgb(16 163 55 / 0.9);
}
.border-success-light\/95{
  border-color: rgb(16 163 55 / 0.95);
}
.border-tango-600{
  --tw-border-opacity: 1;
  border-color: rgb(235 109 46 / var(--tw-border-opacity, 1));
}
.border-transparent{
  border-color: transparent;
}
.border-warning{
  --tw-border-opacity: 1;
  border-color: rgb(193 87 26 / var(--tw-border-opacity, 1));
}
.border-warning-dark{
  --tw-border-opacity: 1;
  border-color: rgb(154 44 10 / var(--tw-border-opacity, 1));
}
.border-warning-dark\/0{
  border-color: rgb(154 44 10 / 0);
}
.border-warning-dark\/10{
  border-color: rgb(154 44 10 / 0.1);
}
.border-warning-dark\/100{
  border-color: rgb(154 44 10 / 1);
}
.border-warning-dark\/15{
  border-color: rgb(154 44 10 / 0.15);
}
.border-warning-dark\/20{
  border-color: rgb(154 44 10 / 0.2);
}
.border-warning-dark\/25{
  border-color: rgb(154 44 10 / 0.25);
}
.border-warning-dark\/30{
  border-color: rgb(154 44 10 / 0.3);
}
.border-warning-dark\/35{
  border-color: rgb(154 44 10 / 0.35);
}
.border-warning-dark\/40{
  border-color: rgb(154 44 10 / 0.4);
}
.border-warning-dark\/45{
  border-color: rgb(154 44 10 / 0.45);
}
.border-warning-dark\/5{
  border-color: rgb(154 44 10 / 0.05);
}
.border-warning-dark\/50{
  border-color: rgb(154 44 10 / 0.5);
}
.border-warning-dark\/55{
  border-color: rgb(154 44 10 / 0.55);
}
.border-warning-dark\/60{
  border-color: rgb(154 44 10 / 0.6);
}
.border-warning-dark\/65{
  border-color: rgb(154 44 10 / 0.65);
}
.border-warning-dark\/70{
  border-color: rgb(154 44 10 / 0.7);
}
.border-warning-dark\/75{
  border-color: rgb(154 44 10 / 0.75);
}
.border-warning-dark\/80{
  border-color: rgb(154 44 10 / 0.8);
}
.border-warning-dark\/85{
  border-color: rgb(154 44 10 / 0.85);
}
.border-warning-dark\/90{
  border-color: rgb(154 44 10 / 0.9);
}
.border-warning-dark\/95{
  border-color: rgb(154 44 10 / 0.95);
}
.border-warning-light{
  --tw-border-opacity: 1;
  border-color: rgb(234 88 12 / var(--tw-border-opacity, 1));
}
.border-warning-light\/0{
  border-color: rgb(234 88 12 / 0);
}
.border-warning-light\/10{
  border-color: rgb(234 88 12 / 0.1);
}
.border-warning-light\/100{
  border-color: rgb(234 88 12 / 1);
}
.border-warning-light\/15{
  border-color: rgb(234 88 12 / 0.15);
}
.border-warning-light\/20{
  border-color: rgb(234 88 12 / 0.2);
}
.border-warning-light\/25{
  border-color: rgb(234 88 12 / 0.25);
}
.border-warning-light\/30{
  border-color: rgb(234 88 12 / 0.3);
}
.border-warning-light\/35{
  border-color: rgb(234 88 12 / 0.35);
}
.border-warning-light\/40{
  border-color: rgb(234 88 12 / 0.4);
}
.border-warning-light\/45{
  border-color: rgb(234 88 12 / 0.45);
}
.border-warning-light\/5{
  border-color: rgb(234 88 12 / 0.05);
}
.border-warning-light\/50{
  border-color: rgb(234 88 12 / 0.5);
}
.border-warning-light\/55{
  border-color: rgb(234 88 12 / 0.55);
}
.border-warning-light\/60{
  border-color: rgb(234 88 12 / 0.6);
}
.border-warning-light\/65{
  border-color: rgb(234 88 12 / 0.65);
}
.border-warning-light\/70{
  border-color: rgb(234 88 12 / 0.7);
}
.border-warning-light\/75{
  border-color: rgb(234 88 12 / 0.75);
}
.border-warning-light\/80{
  border-color: rgb(234 88 12 / 0.8);
}
.border-warning-light\/85{
  border-color: rgb(234 88 12 / 0.85);
}
.border-warning-light\/90{
  border-color: rgb(234 88 12 / 0.9);
}
.border-warning-light\/95{
  border-color: rgb(234 88 12 / 0.95);
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-yellow-500{
  --tw-border-opacity: 1;
  border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
}
.border-opacity-0{
  --tw-border-opacity: 0;
}
.bg-accent-200{
  --tw-bg-opacity: 1;
  background-color: rgb(230 252 254 / var(--tw-bg-opacity, 1));
}
.bg-accent-200\/0{
  background-color: rgb(230 252 254 / 0);
}
.bg-accent-200\/10{
  background-color: rgb(230 252 254 / 0.1);
}
.bg-accent-200\/100{
  background-color: rgb(230 252 254 / 1);
}
.bg-accent-200\/15{
  background-color: rgb(230 252 254 / 0.15);
}
.bg-accent-200\/20{
  background-color: rgb(230 252 254 / 0.2);
}
.bg-accent-200\/25{
  background-color: rgb(230 252 254 / 0.25);
}
.bg-accent-200\/30{
  background-color: rgb(230 252 254 / 0.3);
}
.bg-accent-200\/35{
  background-color: rgb(230 252 254 / 0.35);
}
.bg-accent-200\/40{
  background-color: rgb(230 252 254 / 0.4);
}
.bg-accent-200\/45{
  background-color: rgb(230 252 254 / 0.45);
}
.bg-accent-200\/5{
  background-color: rgb(230 252 254 / 0.05);
}
.bg-accent-200\/50{
  background-color: rgb(230 252 254 / 0.5);
}
.bg-accent-200\/55{
  background-color: rgb(230 252 254 / 0.55);
}
.bg-accent-200\/60{
  background-color: rgb(230 252 254 / 0.6);
}
.bg-accent-200\/65{
  background-color: rgb(230 252 254 / 0.65);
}
.bg-accent-200\/70{
  background-color: rgb(230 252 254 / 0.7);
}
.bg-accent-200\/75{
  background-color: rgb(230 252 254 / 0.75);
}
.bg-accent-200\/80{
  background-color: rgb(230 252 254 / 0.8);
}
.bg-accent-200\/85{
  background-color: rgb(230 252 254 / 0.85);
}
.bg-accent-200\/90{
  background-color: rgb(230 252 254 / 0.9);
}
.bg-accent-200\/95{
  background-color: rgb(230 252 254 / 0.95);
}
.bg-accent-300{
  --tw-bg-opacity: 1;
  background-color: rgb(138 234 244 / var(--tw-bg-opacity, 1));
}
.bg-accent-300\/0{
  background-color: rgb(138 234 244 / 0);
}
.bg-accent-300\/10{
  background-color: rgb(138 234 244 / 0.1);
}
.bg-accent-300\/100{
  background-color: rgb(138 234 244 / 1);
}
.bg-accent-300\/15{
  background-color: rgb(138 234 244 / 0.15);
}
.bg-accent-300\/20{
  background-color: rgb(138 234 244 / 0.2);
}
.bg-accent-300\/25{
  background-color: rgb(138 234 244 / 0.25);
}
.bg-accent-300\/30{
  background-color: rgb(138 234 244 / 0.3);
}
.bg-accent-300\/35{
  background-color: rgb(138 234 244 / 0.35);
}
.bg-accent-300\/40{
  background-color: rgb(138 234 244 / 0.4);
}
.bg-accent-300\/45{
  background-color: rgb(138 234 244 / 0.45);
}
.bg-accent-300\/5{
  background-color: rgb(138 234 244 / 0.05);
}
.bg-accent-300\/50{
  background-color: rgb(138 234 244 / 0.5);
}
.bg-accent-300\/55{
  background-color: rgb(138 234 244 / 0.55);
}
.bg-accent-300\/60{
  background-color: rgb(138 234 244 / 0.6);
}
.bg-accent-300\/65{
  background-color: rgb(138 234 244 / 0.65);
}
.bg-accent-300\/70{
  background-color: rgb(138 234 244 / 0.7);
}
.bg-accent-300\/75{
  background-color: rgb(138 234 244 / 0.75);
}
.bg-accent-300\/80{
  background-color: rgb(138 234 244 / 0.8);
}
.bg-accent-300\/85{
  background-color: rgb(138 234 244 / 0.85);
}
.bg-accent-300\/90{
  background-color: rgb(138 234 244 / 0.9);
}
.bg-accent-300\/95{
  background-color: rgb(138 234 244 / 0.95);
}
.bg-accent-400{
  --tw-bg-opacity: 1;
  background-color: rgb(118 222 234 / var(--tw-bg-opacity, 1));
}
.bg-accent-400\/0{
  background-color: rgb(118 222 234 / 0);
}
.bg-accent-400\/10{
  background-color: rgb(118 222 234 / 0.1);
}
.bg-accent-400\/100{
  background-color: rgb(118 222 234 / 1);
}
.bg-accent-400\/15{
  background-color: rgb(118 222 234 / 0.15);
}
.bg-accent-400\/20{
  background-color: rgb(118 222 234 / 0.2);
}
.bg-accent-400\/25{
  background-color: rgb(118 222 234 / 0.25);
}
.bg-accent-400\/30{
  background-color: rgb(118 222 234 / 0.3);
}
.bg-accent-400\/35{
  background-color: rgb(118 222 234 / 0.35);
}
.bg-accent-400\/40{
  background-color: rgb(118 222 234 / 0.4);
}
.bg-accent-400\/45{
  background-color: rgb(118 222 234 / 0.45);
}
.bg-accent-400\/5{
  background-color: rgb(118 222 234 / 0.05);
}
.bg-accent-400\/50{
  background-color: rgb(118 222 234 / 0.5);
}
.bg-accent-400\/55{
  background-color: rgb(118 222 234 / 0.55);
}
.bg-accent-400\/60{
  background-color: rgb(118 222 234 / 0.6);
}
.bg-accent-400\/65{
  background-color: rgb(118 222 234 / 0.65);
}
.bg-accent-400\/70{
  background-color: rgb(118 222 234 / 0.7);
}
.bg-accent-400\/75{
  background-color: rgb(118 222 234 / 0.75);
}
.bg-accent-400\/80{
  background-color: rgb(118 222 234 / 0.8);
}
.bg-accent-400\/85{
  background-color: rgb(118 222 234 / 0.85);
}
.bg-accent-400\/90{
  background-color: rgb(118 222 234 / 0.9);
}
.bg-accent-400\/95{
  background-color: rgb(118 222 234 / 0.95);
}
.bg-accent-500{
  --tw-bg-opacity: 1;
  background-color: rgb(122 215 225 / var(--tw-bg-opacity, 1));
}
.bg-accent-500\/0{
  background-color: rgb(122 215 225 / 0);
}
.bg-accent-500\/10{
  background-color: rgb(122 215 225 / 0.1);
}
.bg-accent-500\/100{
  background-color: rgb(122 215 225 / 1);
}
.bg-accent-500\/15{
  background-color: rgb(122 215 225 / 0.15);
}
.bg-accent-500\/20{
  background-color: rgb(122 215 225 / 0.2);
}
.bg-accent-500\/25{
  background-color: rgb(122 215 225 / 0.25);
}
.bg-accent-500\/30{
  background-color: rgb(122 215 225 / 0.3);
}
.bg-accent-500\/35{
  background-color: rgb(122 215 225 / 0.35);
}
.bg-accent-500\/40{
  background-color: rgb(122 215 225 / 0.4);
}
.bg-accent-500\/45{
  background-color: rgb(122 215 225 / 0.45);
}
.bg-accent-500\/5{
  background-color: rgb(122 215 225 / 0.05);
}
.bg-accent-500\/50{
  background-color: rgb(122 215 225 / 0.5);
}
.bg-accent-500\/55{
  background-color: rgb(122 215 225 / 0.55);
}
.bg-accent-500\/60{
  background-color: rgb(122 215 225 / 0.6);
}
.bg-accent-500\/65{
  background-color: rgb(122 215 225 / 0.65);
}
.bg-accent-500\/70{
  background-color: rgb(122 215 225 / 0.7);
}
.bg-accent-500\/75{
  background-color: rgb(122 215 225 / 0.75);
}
.bg-accent-500\/80{
  background-color: rgb(122 215 225 / 0.8);
}
.bg-accent-500\/85{
  background-color: rgb(122 215 225 / 0.85);
}
.bg-accent-500\/90{
  background-color: rgb(122 215 225 / 0.9);
}
.bg-accent-500\/95{
  background-color: rgb(122 215 225 / 0.95);
}
.bg-accent-600{
  --tw-bg-opacity: 1;
  background-color: rgb(17 151 166 / var(--tw-bg-opacity, 1));
}
.bg-accent-600\/0{
  background-color: rgb(17 151 166 / 0);
}
.bg-accent-600\/10{
  background-color: rgb(17 151 166 / 0.1);
}
.bg-accent-600\/100{
  background-color: rgb(17 151 166 / 1);
}
.bg-accent-600\/15{
  background-color: rgb(17 151 166 / 0.15);
}
.bg-accent-600\/20{
  background-color: rgb(17 151 166 / 0.2);
}
.bg-accent-600\/25{
  background-color: rgb(17 151 166 / 0.25);
}
.bg-accent-600\/30{
  background-color: rgb(17 151 166 / 0.3);
}
.bg-accent-600\/35{
  background-color: rgb(17 151 166 / 0.35);
}
.bg-accent-600\/40{
  background-color: rgb(17 151 166 / 0.4);
}
.bg-accent-600\/45{
  background-color: rgb(17 151 166 / 0.45);
}
.bg-accent-600\/5{
  background-color: rgb(17 151 166 / 0.05);
}
.bg-accent-600\/50{
  background-color: rgb(17 151 166 / 0.5);
}
.bg-accent-600\/55{
  background-color: rgb(17 151 166 / 0.55);
}
.bg-accent-600\/60{
  background-color: rgb(17 151 166 / 0.6);
}
.bg-accent-600\/65{
  background-color: rgb(17 151 166 / 0.65);
}
.bg-accent-600\/70{
  background-color: rgb(17 151 166 / 0.7);
}
.bg-accent-600\/75{
  background-color: rgb(17 151 166 / 0.75);
}
.bg-accent-600\/80{
  background-color: rgb(17 151 166 / 0.8);
}
.bg-accent-600\/85{
  background-color: rgb(17 151 166 / 0.85);
}
.bg-accent-600\/90{
  background-color: rgb(17 151 166 / 0.9);
}
.bg-accent-600\/95{
  background-color: rgb(17 151 166 / 0.95);
}
.bg-accent-700{
  --tw-bg-opacity: 1;
  background-color: rgb(12 124 136 / var(--tw-bg-opacity, 1));
}
.bg-accent-700\/0{
  background-color: rgb(12 124 136 / 0);
}
.bg-accent-700\/10{
  background-color: rgb(12 124 136 / 0.1);
}
.bg-accent-700\/100{
  background-color: rgb(12 124 136 / 1);
}
.bg-accent-700\/15{
  background-color: rgb(12 124 136 / 0.15);
}
.bg-accent-700\/20{
  background-color: rgb(12 124 136 / 0.2);
}
.bg-accent-700\/25{
  background-color: rgb(12 124 136 / 0.25);
}
.bg-accent-700\/30{
  background-color: rgb(12 124 136 / 0.3);
}
.bg-accent-700\/35{
  background-color: rgb(12 124 136 / 0.35);
}
.bg-accent-700\/40{
  background-color: rgb(12 124 136 / 0.4);
}
.bg-accent-700\/45{
  background-color: rgb(12 124 136 / 0.45);
}
.bg-accent-700\/5{
  background-color: rgb(12 124 136 / 0.05);
}
.bg-accent-700\/50{
  background-color: rgb(12 124 136 / 0.5);
}
.bg-accent-700\/55{
  background-color: rgb(12 124 136 / 0.55);
}
.bg-accent-700\/60{
  background-color: rgb(12 124 136 / 0.6);
}
.bg-accent-700\/65{
  background-color: rgb(12 124 136 / 0.65);
}
.bg-accent-700\/70{
  background-color: rgb(12 124 136 / 0.7);
}
.bg-accent-700\/75{
  background-color: rgb(12 124 136 / 0.75);
}
.bg-accent-700\/80{
  background-color: rgb(12 124 136 / 0.8);
}
.bg-accent-700\/85{
  background-color: rgb(12 124 136 / 0.85);
}
.bg-accent-700\/90{
  background-color: rgb(12 124 136 / 0.9);
}
.bg-accent-700\/95{
  background-color: rgb(12 124 136 / 0.95);
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-brand-decorative{
  --tw-bg-opacity: 1;
  background-color: rgb(90 206 158 / var(--tw-bg-opacity, 1));
}
.bg-brand-decorative\/0{
  background-color: rgb(90 206 158 / 0);
}
.bg-brand-decorative\/10{
  background-color: rgb(90 206 158 / 0.1);
}
.bg-brand-decorative\/100{
  background-color: rgb(90 206 158 / 1);
}
.bg-brand-decorative\/15{
  background-color: rgb(90 206 158 / 0.15);
}
.bg-brand-decorative\/20{
  background-color: rgb(90 206 158 / 0.2);
}
.bg-brand-decorative\/25{
  background-color: rgb(90 206 158 / 0.25);
}
.bg-brand-decorative\/30{
  background-color: rgb(90 206 158 / 0.3);
}
.bg-brand-decorative\/35{
  background-color: rgb(90 206 158 / 0.35);
}
.bg-brand-decorative\/40{
  background-color: rgb(90 206 158 / 0.4);
}
.bg-brand-decorative\/45{
  background-color: rgb(90 206 158 / 0.45);
}
.bg-brand-decorative\/5{
  background-color: rgb(90 206 158 / 0.05);
}
.bg-brand-decorative\/50{
  background-color: rgb(90 206 158 / 0.5);
}
.bg-brand-decorative\/55{
  background-color: rgb(90 206 158 / 0.55);
}
.bg-brand-decorative\/60{
  background-color: rgb(90 206 158 / 0.6);
}
.bg-brand-decorative\/65{
  background-color: rgb(90 206 158 / 0.65);
}
.bg-brand-decorative\/70{
  background-color: rgb(90 206 158 / 0.7);
}
.bg-brand-decorative\/75{
  background-color: rgb(90 206 158 / 0.75);
}
.bg-brand-decorative\/80{
  background-color: rgb(90 206 158 / 0.8);
}
.bg-brand-decorative\/85{
  background-color: rgb(90 206 158 / 0.85);
}
.bg-brand-decorative\/90{
  background-color: rgb(90 206 158 / 0.9);
}
.bg-brand-decorative\/95{
  background-color: rgb(90 206 158 / 0.95);
}
.bg-brand-primary{
  --tw-bg-opacity: 1;
  background-color: rgb(46 107 104 / var(--tw-bg-opacity, 1));
}
.bg-brand-primary-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(31 74 71 / var(--tw-bg-opacity, 1));
}
.bg-brand-primary-dark\/0{
  background-color: rgb(31 74 71 / 0);
}
.bg-brand-primary-dark\/10{
  background-color: rgb(31 74 71 / 0.1);
}
.bg-brand-primary-dark\/100{
  background-color: rgb(31 74 71 / 1);
}
.bg-brand-primary-dark\/15{
  background-color: rgb(31 74 71 / 0.15);
}
.bg-brand-primary-dark\/20{
  background-color: rgb(31 74 71 / 0.2);
}
.bg-brand-primary-dark\/25{
  background-color: rgb(31 74 71 / 0.25);
}
.bg-brand-primary-dark\/30{
  background-color: rgb(31 74 71 / 0.3);
}
.bg-brand-primary-dark\/35{
  background-color: rgb(31 74 71 / 0.35);
}
.bg-brand-primary-dark\/40{
  background-color: rgb(31 74 71 / 0.4);
}
.bg-brand-primary-dark\/45{
  background-color: rgb(31 74 71 / 0.45);
}
.bg-brand-primary-dark\/5{
  background-color: rgb(31 74 71 / 0.05);
}
.bg-brand-primary-dark\/50{
  background-color: rgb(31 74 71 / 0.5);
}
.bg-brand-primary-dark\/55{
  background-color: rgb(31 74 71 / 0.55);
}
.bg-brand-primary-dark\/60{
  background-color: rgb(31 74 71 / 0.6);
}
.bg-brand-primary-dark\/65{
  background-color: rgb(31 74 71 / 0.65);
}
.bg-brand-primary-dark\/70{
  background-color: rgb(31 74 71 / 0.7);
}
.bg-brand-primary-dark\/75{
  background-color: rgb(31 74 71 / 0.75);
}
.bg-brand-primary-dark\/80{
  background-color: rgb(31 74 71 / 0.8);
}
.bg-brand-primary-dark\/85{
  background-color: rgb(31 74 71 / 0.85);
}
.bg-brand-primary-dark\/90{
  background-color: rgb(31 74 71 / 0.9);
}
.bg-brand-primary-dark\/95{
  background-color: rgb(31 74 71 / 0.95);
}
.bg-brand-primary-darker{
  --tw-bg-opacity: 1;
  background-color: rgb(22 54 52 / var(--tw-bg-opacity, 1));
}
.bg-brand-primary-darker\/0{
  background-color: rgb(22 54 52 / 0);
}
.bg-brand-primary-darker\/10{
  background-color: rgb(22 54 52 / 0.1);
}
.bg-brand-primary-darker\/100{
  background-color: rgb(22 54 52 / 1);
}
.bg-brand-primary-darker\/15{
  background-color: rgb(22 54 52 / 0.15);
}
.bg-brand-primary-darker\/20{
  background-color: rgb(22 54 52 / 0.2);
}
.bg-brand-primary-darker\/25{
  background-color: rgb(22 54 52 / 0.25);
}
.bg-brand-primary-darker\/30{
  background-color: rgb(22 54 52 / 0.3);
}
.bg-brand-primary-darker\/35{
  background-color: rgb(22 54 52 / 0.35);
}
.bg-brand-primary-darker\/40{
  background-color: rgb(22 54 52 / 0.4);
}
.bg-brand-primary-darker\/45{
  background-color: rgb(22 54 52 / 0.45);
}
.bg-brand-primary-darker\/5{
  background-color: rgb(22 54 52 / 0.05);
}
.bg-brand-primary-darker\/50{
  background-color: rgb(22 54 52 / 0.5);
}
.bg-brand-primary-darker\/55{
  background-color: rgb(22 54 52 / 0.55);
}
.bg-brand-primary-darker\/60{
  background-color: rgb(22 54 52 / 0.6);
}
.bg-brand-primary-darker\/65{
  background-color: rgb(22 54 52 / 0.65);
}
.bg-brand-primary-darker\/70{
  background-color: rgb(22 54 52 / 0.7);
}
.bg-brand-primary-darker\/75{
  background-color: rgb(22 54 52 / 0.75);
}
.bg-brand-primary-darker\/80{
  background-color: rgb(22 54 52 / 0.8);
}
.bg-brand-primary-darker\/85{
  background-color: rgb(22 54 52 / 0.85);
}
.bg-brand-primary-darker\/90{
  background-color: rgb(22 54 52 / 0.9);
}
.bg-brand-primary-darker\/95{
  background-color: rgb(22 54 52 / 0.95);
}
.bg-brand-primary-light{
  --tw-bg-opacity: 1;
  background-color: rgb(61 138 134 / var(--tw-bg-opacity, 1));
}
.bg-brand-primary-light\/0{
  background-color: rgb(61 138 134 / 0);
}
.bg-brand-primary-light\/10{
  background-color: rgb(61 138 134 / 0.1);
}
.bg-brand-primary-light\/100{
  background-color: rgb(61 138 134 / 1);
}
.bg-brand-primary-light\/15{
  background-color: rgb(61 138 134 / 0.15);
}
.bg-brand-primary-light\/20{
  background-color: rgb(61 138 134 / 0.2);
}
.bg-brand-primary-light\/25{
  background-color: rgb(61 138 134 / 0.25);
}
.bg-brand-primary-light\/30{
  background-color: rgb(61 138 134 / 0.3);
}
.bg-brand-primary-light\/35{
  background-color: rgb(61 138 134 / 0.35);
}
.bg-brand-primary-light\/40{
  background-color: rgb(61 138 134 / 0.4);
}
.bg-brand-primary-light\/45{
  background-color: rgb(61 138 134 / 0.45);
}
.bg-brand-primary-light\/5{
  background-color: rgb(61 138 134 / 0.05);
}
.bg-brand-primary-light\/50{
  background-color: rgb(61 138 134 / 0.5);
}
.bg-brand-primary-light\/55{
  background-color: rgb(61 138 134 / 0.55);
}
.bg-brand-primary-light\/60{
  background-color: rgb(61 138 134 / 0.6);
}
.bg-brand-primary-light\/65{
  background-color: rgb(61 138 134 / 0.65);
}
.bg-brand-primary-light\/70{
  background-color: rgb(61 138 134 / 0.7);
}
.bg-brand-primary-light\/75{
  background-color: rgb(61 138 134 / 0.75);
}
.bg-brand-primary-light\/80{
  background-color: rgb(61 138 134 / 0.8);
}
.bg-brand-primary-light\/85{
  background-color: rgb(61 138 134 / 0.85);
}
.bg-brand-primary-light\/90{
  background-color: rgb(61 138 134 / 0.9);
}
.bg-brand-primary-light\/95{
  background-color: rgb(61 138 134 / 0.95);
}
.bg-brand-primary\/0{
  background-color: rgb(46 107 104 / 0);
}
.bg-brand-primary\/10{
  background-color: rgb(46 107 104 / 0.1);
}
.bg-brand-primary\/100{
  background-color: rgb(46 107 104 / 1);
}
.bg-brand-primary\/15{
  background-color: rgb(46 107 104 / 0.15);
}
.bg-brand-primary\/20{
  background-color: rgb(46 107 104 / 0.2);
}
.bg-brand-primary\/25{
  background-color: rgb(46 107 104 / 0.25);
}
.bg-brand-primary\/30{
  background-color: rgb(46 107 104 / 0.3);
}
.bg-brand-primary\/35{
  background-color: rgb(46 107 104 / 0.35);
}
.bg-brand-primary\/40{
  background-color: rgb(46 107 104 / 0.4);
}
.bg-brand-primary\/45{
  background-color: rgb(46 107 104 / 0.45);
}
.bg-brand-primary\/5{
  background-color: rgb(46 107 104 / 0.05);
}
.bg-brand-primary\/50{
  background-color: rgb(46 107 104 / 0.5);
}
.bg-brand-primary\/55{
  background-color: rgb(46 107 104 / 0.55);
}
.bg-brand-primary\/60{
  background-color: rgb(46 107 104 / 0.6);
}
.bg-brand-primary\/65{
  background-color: rgb(46 107 104 / 0.65);
}
.bg-brand-primary\/70{
  background-color: rgb(46 107 104 / 0.7);
}
.bg-brand-primary\/75{
  background-color: rgb(46 107 104 / 0.75);
}
.bg-brand-primary\/80{
  background-color: rgb(46 107 104 / 0.8);
}
.bg-brand-primary\/85{
  background-color: rgb(46 107 104 / 0.85);
}
.bg-brand-primary\/90{
  background-color: rgb(46 107 104 / 0.9);
}
.bg-brand-primary\/95{
  background-color: rgb(46 107 104 / 0.95);
}
.bg-error-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(153 27 27 / var(--tw-bg-opacity, 1));
}
.bg-error-dark\/0{
  background-color: rgb(153 27 27 / 0);
}
.bg-error-dark\/10{
  background-color: rgb(153 27 27 / 0.1);
}
.bg-error-dark\/100{
  background-color: rgb(153 27 27 / 1);
}
.bg-error-dark\/15{
  background-color: rgb(153 27 27 / 0.15);
}
.bg-error-dark\/20{
  background-color: rgb(153 27 27 / 0.2);
}
.bg-error-dark\/25{
  background-color: rgb(153 27 27 / 0.25);
}
.bg-error-dark\/30{
  background-color: rgb(153 27 27 / 0.3);
}
.bg-error-dark\/35{
  background-color: rgb(153 27 27 / 0.35);
}
.bg-error-dark\/40{
  background-color: rgb(153 27 27 / 0.4);
}
.bg-error-dark\/45{
  background-color: rgb(153 27 27 / 0.45);
}
.bg-error-dark\/5{
  background-color: rgb(153 27 27 / 0.05);
}
.bg-error-dark\/50{
  background-color: rgb(153 27 27 / 0.5);
}
.bg-error-dark\/55{
  background-color: rgb(153 27 27 / 0.55);
}
.bg-error-dark\/60{
  background-color: rgb(153 27 27 / 0.6);
}
.bg-error-dark\/65{
  background-color: rgb(153 27 27 / 0.65);
}
.bg-error-dark\/70{
  background-color: rgb(153 27 27 / 0.7);
}
.bg-error-dark\/75{
  background-color: rgb(153 27 27 / 0.75);
}
.bg-error-dark\/80{
  background-color: rgb(153 27 27 / 0.8);
}
.bg-error-dark\/85{
  background-color: rgb(153 27 27 / 0.85);
}
.bg-error-dark\/90{
  background-color: rgb(153 27 27 / 0.9);
}
.bg-error-dark\/95{
  background-color: rgb(153 27 27 / 0.95);
}
.bg-error-light{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-error-light\/0{
  background-color: rgb(220 38 38 / 0);
}
.bg-error-light\/10{
  background-color: rgb(220 38 38 / 0.1);
}
.bg-error-light\/100{
  background-color: rgb(220 38 38 / 1);
}
.bg-error-light\/15{
  background-color: rgb(220 38 38 / 0.15);
}
.bg-error-light\/20{
  background-color: rgb(220 38 38 / 0.2);
}
.bg-error-light\/25{
  background-color: rgb(220 38 38 / 0.25);
}
.bg-error-light\/30{
  background-color: rgb(220 38 38 / 0.3);
}
.bg-error-light\/35{
  background-color: rgb(220 38 38 / 0.35);
}
.bg-error-light\/40{
  background-color: rgb(220 38 38 / 0.4);
}
.bg-error-light\/45{
  background-color: rgb(220 38 38 / 0.45);
}
.bg-error-light\/5{
  background-color: rgb(220 38 38 / 0.05);
}
.bg-error-light\/50{
  background-color: rgb(220 38 38 / 0.5);
}
.bg-error-light\/55{
  background-color: rgb(220 38 38 / 0.55);
}
.bg-error-light\/60{
  background-color: rgb(220 38 38 / 0.6);
}
.bg-error-light\/65{
  background-color: rgb(220 38 38 / 0.65);
}
.bg-error-light\/70{
  background-color: rgb(220 38 38 / 0.7);
}
.bg-error-light\/75{
  background-color: rgb(220 38 38 / 0.75);
}
.bg-error-light\/80{
  background-color: rgb(220 38 38 / 0.8);
}
.bg-error-light\/85{
  background-color: rgb(220 38 38 / 0.85);
}
.bg-error-light\/90{
  background-color: rgb(220 38 38 / 0.9);
}
.bg-error-light\/95{
  background-color: rgb(220 38 38 / 0.95);
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-500{
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.bg-grayscale-100{
  --tw-bg-opacity: 1;
  background-color: rgb(247 247 247 / var(--tw-bg-opacity, 1));
}
.bg-grayscale-100\/0{
  background-color: rgb(247 247 247 / 0);
}
.bg-grayscale-100\/10{
  background-color: rgb(247 247 247 / 0.1);
}
.bg-grayscale-100\/100{
  background-color: rgb(247 247 247 / 1);
}
.bg-grayscale-100\/15{
  background-color: rgb(247 247 247 / 0.15);
}
.bg-grayscale-100\/20{
  background-color: rgb(247 247 247 / 0.2);
}
.bg-grayscale-100\/25{
  background-color: rgb(247 247 247 / 0.25);
}
.bg-grayscale-100\/30{
  background-color: rgb(247 247 247 / 0.3);
}
.bg-grayscale-100\/35{
  background-color: rgb(247 247 247 / 0.35);
}
.bg-grayscale-100\/40{
  background-color: rgb(247 247 247 / 0.4);
}
.bg-grayscale-100\/45{
  background-color: rgb(247 247 247 / 0.45);
}
.bg-grayscale-100\/5{
  background-color: rgb(247 247 247 / 0.05);
}
.bg-grayscale-100\/50{
  background-color: rgb(247 247 247 / 0.5);
}
.bg-grayscale-100\/55{
  background-color: rgb(247 247 247 / 0.55);
}
.bg-grayscale-100\/60{
  background-color: rgb(247 247 247 / 0.6);
}
.bg-grayscale-100\/65{
  background-color: rgb(247 247 247 / 0.65);
}
.bg-grayscale-100\/70{
  background-color: rgb(247 247 247 / 0.7);
}
.bg-grayscale-100\/75{
  background-color: rgb(247 247 247 / 0.75);
}
.bg-grayscale-100\/80{
  background-color: rgb(247 247 247 / 0.8);
}
.bg-grayscale-100\/85{
  background-color: rgb(247 247 247 / 0.85);
}
.bg-grayscale-100\/90{
  background-color: rgb(247 247 247 / 0.9);
}
.bg-grayscale-100\/95{
  background-color: rgb(247 247 247 / 0.95);
}
.bg-grayscale-200{
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
}
.bg-grayscale-200\/0{
  background-color: rgb(242 242 242 / 0);
}
.bg-grayscale-200\/10{
  background-color: rgb(242 242 242 / 0.1);
}
.bg-grayscale-200\/100{
  background-color: rgb(242 242 242 / 1);
}
.bg-grayscale-200\/15{
  background-color: rgb(242 242 242 / 0.15);
}
.bg-grayscale-200\/20{
  background-color: rgb(242 242 242 / 0.2);
}
.bg-grayscale-200\/25{
  background-color: rgb(242 242 242 / 0.25);
}
.bg-grayscale-200\/30{
  background-color: rgb(242 242 242 / 0.3);
}
.bg-grayscale-200\/35{
  background-color: rgb(242 242 242 / 0.35);
}
.bg-grayscale-200\/40{
  background-color: rgb(242 242 242 / 0.4);
}
.bg-grayscale-200\/45{
  background-color: rgb(242 242 242 / 0.45);
}
.bg-grayscale-200\/5{
  background-color: rgb(242 242 242 / 0.05);
}
.bg-grayscale-200\/50{
  background-color: rgb(242 242 242 / 0.5);
}
.bg-grayscale-200\/55{
  background-color: rgb(242 242 242 / 0.55);
}
.bg-grayscale-200\/60{
  background-color: rgb(242 242 242 / 0.6);
}
.bg-grayscale-200\/65{
  background-color: rgb(242 242 242 / 0.65);
}
.bg-grayscale-200\/70{
  background-color: rgb(242 242 242 / 0.7);
}
.bg-grayscale-200\/75{
  background-color: rgb(242 242 242 / 0.75);
}
.bg-grayscale-200\/80{
  background-color: rgb(242 242 242 / 0.8);
}
.bg-grayscale-200\/85{
  background-color: rgb(242 242 242 / 0.85);
}
.bg-grayscale-200\/90{
  background-color: rgb(242 242 242 / 0.9);
}
.bg-grayscale-200\/95{
  background-color: rgb(242 242 242 / 0.95);
}
.bg-grayscale-300{
  --tw-bg-opacity: 1;
  background-color: rgb(149 149 149 / var(--tw-bg-opacity, 1));
}
.bg-grayscale-300\/0{
  background-color: rgb(149 149 149 / 0);
}
.bg-grayscale-300\/10{
  background-color: rgb(149 149 149 / 0.1);
}
.bg-grayscale-300\/100{
  background-color: rgb(149 149 149 / 1);
}
.bg-grayscale-300\/15{
  background-color: rgb(149 149 149 / 0.15);
}
.bg-grayscale-300\/20{
  background-color: rgb(149 149 149 / 0.2);
}
.bg-grayscale-300\/25{
  background-color: rgb(149 149 149 / 0.25);
}
.bg-grayscale-300\/30{
  background-color: rgb(149 149 149 / 0.3);
}
.bg-grayscale-300\/35{
  background-color: rgb(149 149 149 / 0.35);
}
.bg-grayscale-300\/40{
  background-color: rgb(149 149 149 / 0.4);
}
.bg-grayscale-300\/45{
  background-color: rgb(149 149 149 / 0.45);
}
.bg-grayscale-300\/5{
  background-color: rgb(149 149 149 / 0.05);
}
.bg-grayscale-300\/50{
  background-color: rgb(149 149 149 / 0.5);
}
.bg-grayscale-300\/55{
  background-color: rgb(149 149 149 / 0.55);
}
.bg-grayscale-300\/60{
  background-color: rgb(149 149 149 / 0.6);
}
.bg-grayscale-300\/65{
  background-color: rgb(149 149 149 / 0.65);
}
.bg-grayscale-300\/70{
  background-color: rgb(149 149 149 / 0.7);
}
.bg-grayscale-300\/75{
  background-color: rgb(149 149 149 / 0.75);
}
.bg-grayscale-300\/80{
  background-color: rgb(149 149 149 / 0.8);
}
.bg-grayscale-300\/85{
  background-color: rgb(149 149 149 / 0.85);
}
.bg-grayscale-300\/90{
  background-color: rgb(149 149 149 / 0.9);
}
.bg-grayscale-300\/95{
  background-color: rgb(149 149 149 / 0.95);
}
.bg-grayscale-400{
  --tw-bg-opacity: 1;
  background-color: rgb(179 179 179 / var(--tw-bg-opacity, 1));
}
.bg-grayscale-400\/0{
  background-color: rgb(179 179 179 / 0);
}
.bg-grayscale-400\/10{
  background-color: rgb(179 179 179 / 0.1);
}
.bg-grayscale-400\/100{
  background-color: rgb(179 179 179 / 1);
}
.bg-grayscale-400\/15{
  background-color: rgb(179 179 179 / 0.15);
}
.bg-grayscale-400\/20{
  background-color: rgb(179 179 179 / 0.2);
}
.bg-grayscale-400\/25{
  background-color: rgb(179 179 179 / 0.25);
}
.bg-grayscale-400\/30{
  background-color: rgb(179 179 179 / 0.3);
}
.bg-grayscale-400\/35{
  background-color: rgb(179 179 179 / 0.35);
}
.bg-grayscale-400\/40{
  background-color: rgb(179 179 179 / 0.4);
}
.bg-grayscale-400\/45{
  background-color: rgb(179 179 179 / 0.45);
}
.bg-grayscale-400\/5{
  background-color: rgb(179 179 179 / 0.05);
}
.bg-grayscale-400\/50{
  background-color: rgb(179 179 179 / 0.5);
}
.bg-grayscale-400\/55{
  background-color: rgb(179 179 179 / 0.55);
}
.bg-grayscale-400\/60{
  background-color: rgb(179 179 179 / 0.6);
}
.bg-grayscale-400\/65{
  background-color: rgb(179 179 179 / 0.65);
}
.bg-grayscale-400\/70{
  background-color: rgb(179 179 179 / 0.7);
}
.bg-grayscale-400\/75{
  background-color: rgb(179 179 179 / 0.75);
}
.bg-grayscale-400\/80{
  background-color: rgb(179 179 179 / 0.8);
}
.bg-grayscale-400\/85{
  background-color: rgb(179 179 179 / 0.85);
}
.bg-grayscale-400\/90{
  background-color: rgb(179 179 179 / 0.9);
}
.bg-grayscale-400\/95{
  background-color: rgb(179 179 179 / 0.95);
}
.bg-grayscale-500{
  --tw-bg-opacity: 1;
  background-color: rgb(110 110 110 / var(--tw-bg-opacity, 1));
}
.bg-grayscale-500\/0{
  background-color: rgb(110 110 110 / 0);
}
.bg-grayscale-500\/10{
  background-color: rgb(110 110 110 / 0.1);
}
.bg-grayscale-500\/100{
  background-color: rgb(110 110 110 / 1);
}
.bg-grayscale-500\/15{
  background-color: rgb(110 110 110 / 0.15);
}
.bg-grayscale-500\/20{
  background-color: rgb(110 110 110 / 0.2);
}
.bg-grayscale-500\/25{
  background-color: rgb(110 110 110 / 0.25);
}
.bg-grayscale-500\/30{
  background-color: rgb(110 110 110 / 0.3);
}
.bg-grayscale-500\/35{
  background-color: rgb(110 110 110 / 0.35);
}
.bg-grayscale-500\/40{
  background-color: rgb(110 110 110 / 0.4);
}
.bg-grayscale-500\/45{
  background-color: rgb(110 110 110 / 0.45);
}
.bg-grayscale-500\/5{
  background-color: rgb(110 110 110 / 0.05);
}
.bg-grayscale-500\/50{
  background-color: rgb(110 110 110 / 0.5);
}
.bg-grayscale-500\/55{
  background-color: rgb(110 110 110 / 0.55);
}
.bg-grayscale-500\/60{
  background-color: rgb(110 110 110 / 0.6);
}
.bg-grayscale-500\/65{
  background-color: rgb(110 110 110 / 0.65);
}
.bg-grayscale-500\/70{
  background-color: rgb(110 110 110 / 0.7);
}
.bg-grayscale-500\/75{
  background-color: rgb(110 110 110 / 0.75);
}
.bg-grayscale-500\/80{
  background-color: rgb(110 110 110 / 0.8);
}
.bg-grayscale-500\/85{
  background-color: rgb(110 110 110 / 0.85);
}
.bg-grayscale-500\/90{
  background-color: rgb(110 110 110 / 0.9);
}
.bg-grayscale-500\/95{
  background-color: rgb(110 110 110 / 0.95);
}
.bg-grayscale-600{
  --tw-bg-opacity: 1;
  background-color: rgb(73 73 80 / var(--tw-bg-opacity, 1));
}
.bg-grayscale-600\/0{
  background-color: rgb(73 73 80 / 0);
}
.bg-grayscale-600\/10{
  background-color: rgb(73 73 80 / 0.1);
}
.bg-grayscale-600\/100{
  background-color: rgb(73 73 80 / 1);
}
.bg-grayscale-600\/15{
  background-color: rgb(73 73 80 / 0.15);
}
.bg-grayscale-600\/20{
  background-color: rgb(73 73 80 / 0.2);
}
.bg-grayscale-600\/25{
  background-color: rgb(73 73 80 / 0.25);
}
.bg-grayscale-600\/30{
  background-color: rgb(73 73 80 / 0.3);
}
.bg-grayscale-600\/35{
  background-color: rgb(73 73 80 / 0.35);
}
.bg-grayscale-600\/40{
  background-color: rgb(73 73 80 / 0.4);
}
.bg-grayscale-600\/45{
  background-color: rgb(73 73 80 / 0.45);
}
.bg-grayscale-600\/5{
  background-color: rgb(73 73 80 / 0.05);
}
.bg-grayscale-600\/50{
  background-color: rgb(73 73 80 / 0.5);
}
.bg-grayscale-600\/55{
  background-color: rgb(73 73 80 / 0.55);
}
.bg-grayscale-600\/60{
  background-color: rgb(73 73 80 / 0.6);
}
.bg-grayscale-600\/65{
  background-color: rgb(73 73 80 / 0.65);
}
.bg-grayscale-600\/70{
  background-color: rgb(73 73 80 / 0.7);
}
.bg-grayscale-600\/75{
  background-color: rgb(73 73 80 / 0.75);
}
.bg-grayscale-600\/80{
  background-color: rgb(73 73 80 / 0.8);
}
.bg-grayscale-600\/85{
  background-color: rgb(73 73 80 / 0.85);
}
.bg-grayscale-600\/90{
  background-color: rgb(73 73 80 / 0.9);
}
.bg-grayscale-600\/95{
  background-color: rgb(73 73 80 / 0.95);
}
.bg-grayscale-700{
  --tw-bg-opacity: 1;
  background-color: rgb(23 23 28 / var(--tw-bg-opacity, 1));
}
.bg-grayscale-700\/0{
  background-color: rgb(23 23 28 / 0);
}
.bg-grayscale-700\/10{
  background-color: rgb(23 23 28 / 0.1);
}
.bg-grayscale-700\/100{
  background-color: rgb(23 23 28 / 1);
}
.bg-grayscale-700\/15{
  background-color: rgb(23 23 28 / 0.15);
}
.bg-grayscale-700\/20{
  background-color: rgb(23 23 28 / 0.2);
}
.bg-grayscale-700\/25{
  background-color: rgb(23 23 28 / 0.25);
}
.bg-grayscale-700\/30{
  background-color: rgb(23 23 28 / 0.3);
}
.bg-grayscale-700\/35{
  background-color: rgb(23 23 28 / 0.35);
}
.bg-grayscale-700\/40{
  background-color: rgb(23 23 28 / 0.4);
}
.bg-grayscale-700\/45{
  background-color: rgb(23 23 28 / 0.45);
}
.bg-grayscale-700\/5{
  background-color: rgb(23 23 28 / 0.05);
}
.bg-grayscale-700\/50{
  background-color: rgb(23 23 28 / 0.5);
}
.bg-grayscale-700\/55{
  background-color: rgb(23 23 28 / 0.55);
}
.bg-grayscale-700\/60{
  background-color: rgb(23 23 28 / 0.6);
}
.bg-grayscale-700\/65{
  background-color: rgb(23 23 28 / 0.65);
}
.bg-grayscale-700\/70{
  background-color: rgb(23 23 28 / 0.7);
}
.bg-grayscale-700\/75{
  background-color: rgb(23 23 28 / 0.75);
}
.bg-grayscale-700\/80{
  background-color: rgb(23 23 28 / 0.8);
}
.bg-grayscale-700\/85{
  background-color: rgb(23 23 28 / 0.85);
}
.bg-grayscale-700\/90{
  background-color: rgb(23 23 28 / 0.9);
}
.bg-grayscale-700\/95{
  background-color: rgb(23 23 28 / 0.95);
}
.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(209 235 233 / var(--tw-bg-opacity, 1));
}
.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgb(232 245 244 / var(--tw-bg-opacity, 1));
}
.bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgb(46 107 104 / var(--tw-bg-opacity, 1));
}
.bg-info-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(7 89 133 / var(--tw-bg-opacity, 1));
}
.bg-info-dark\/0{
  background-color: rgb(7 89 133 / 0);
}
.bg-info-dark\/10{
  background-color: rgb(7 89 133 / 0.1);
}
.bg-info-dark\/100{
  background-color: rgb(7 89 133 / 1);
}
.bg-info-dark\/15{
  background-color: rgb(7 89 133 / 0.15);
}
.bg-info-dark\/20{
  background-color: rgb(7 89 133 / 0.2);
}
.bg-info-dark\/25{
  background-color: rgb(7 89 133 / 0.25);
}
.bg-info-dark\/30{
  background-color: rgb(7 89 133 / 0.3);
}
.bg-info-dark\/35{
  background-color: rgb(7 89 133 / 0.35);
}
.bg-info-dark\/40{
  background-color: rgb(7 89 133 / 0.4);
}
.bg-info-dark\/45{
  background-color: rgb(7 89 133 / 0.45);
}
.bg-info-dark\/5{
  background-color: rgb(7 89 133 / 0.05);
}
.bg-info-dark\/50{
  background-color: rgb(7 89 133 / 0.5);
}
.bg-info-dark\/55{
  background-color: rgb(7 89 133 / 0.55);
}
.bg-info-dark\/60{
  background-color: rgb(7 89 133 / 0.6);
}
.bg-info-dark\/65{
  background-color: rgb(7 89 133 / 0.65);
}
.bg-info-dark\/70{
  background-color: rgb(7 89 133 / 0.7);
}
.bg-info-dark\/75{
  background-color: rgb(7 89 133 / 0.75);
}
.bg-info-dark\/80{
  background-color: rgb(7 89 133 / 0.8);
}
.bg-info-dark\/85{
  background-color: rgb(7 89 133 / 0.85);
}
.bg-info-dark\/90{
  background-color: rgb(7 89 133 / 0.9);
}
.bg-info-dark\/95{
  background-color: rgb(7 89 133 / 0.95);
}
.bg-info-light{
  --tw-bg-opacity: 1;
  background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
}
.bg-info-light\/0{
  background-color: rgb(8 145 178 / 0);
}
.bg-info-light\/10{
  background-color: rgb(8 145 178 / 0.1);
}
.bg-info-light\/100{
  background-color: rgb(8 145 178 / 1);
}
.bg-info-light\/15{
  background-color: rgb(8 145 178 / 0.15);
}
.bg-info-light\/20{
  background-color: rgb(8 145 178 / 0.2);
}
.bg-info-light\/25{
  background-color: rgb(8 145 178 / 0.25);
}
.bg-info-light\/30{
  background-color: rgb(8 145 178 / 0.3);
}
.bg-info-light\/35{
  background-color: rgb(8 145 178 / 0.35);
}
.bg-info-light\/40{
  background-color: rgb(8 145 178 / 0.4);
}
.bg-info-light\/45{
  background-color: rgb(8 145 178 / 0.45);
}
.bg-info-light\/5{
  background-color: rgb(8 145 178 / 0.05);
}
.bg-info-light\/50{
  background-color: rgb(8 145 178 / 0.5);
}
.bg-info-light\/55{
  background-color: rgb(8 145 178 / 0.55);
}
.bg-info-light\/60{
  background-color: rgb(8 145 178 / 0.6);
}
.bg-info-light\/65{
  background-color: rgb(8 145 178 / 0.65);
}
.bg-info-light\/70{
  background-color: rgb(8 145 178 / 0.7);
}
.bg-info-light\/75{
  background-color: rgb(8 145 178 / 0.75);
}
.bg-info-light\/80{
  background-color: rgb(8 145 178 / 0.8);
}
.bg-info-light\/85{
  background-color: rgb(8 145 178 / 0.85);
}
.bg-info-light\/90{
  background-color: rgb(8 145 178 / 0.9);
}
.bg-info-light\/95{
  background-color: rgb(8 145 178 / 0.95);
}
.bg-neutral-100{
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
}
.bg-neutral-100\/0{
  background-color: rgb(242 242 242 / 0);
}
.bg-neutral-100\/10{
  background-color: rgb(242 242 242 / 0.1);
}
.bg-neutral-100\/100{
  background-color: rgb(242 242 242 / 1);
}
.bg-neutral-100\/15{
  background-color: rgb(242 242 242 / 0.15);
}
.bg-neutral-100\/20{
  background-color: rgb(242 242 242 / 0.2);
}
.bg-neutral-100\/25{
  background-color: rgb(242 242 242 / 0.25);
}
.bg-neutral-100\/30{
  background-color: rgb(242 242 242 / 0.3);
}
.bg-neutral-100\/35{
  background-color: rgb(242 242 242 / 0.35);
}
.bg-neutral-100\/40{
  background-color: rgb(242 242 242 / 0.4);
}
.bg-neutral-100\/45{
  background-color: rgb(242 242 242 / 0.45);
}
.bg-neutral-100\/5{
  background-color: rgb(242 242 242 / 0.05);
}
.bg-neutral-100\/50{
  background-color: rgb(242 242 242 / 0.5);
}
.bg-neutral-100\/55{
  background-color: rgb(242 242 242 / 0.55);
}
.bg-neutral-100\/60{
  background-color: rgb(242 242 242 / 0.6);
}
.bg-neutral-100\/65{
  background-color: rgb(242 242 242 / 0.65);
}
.bg-neutral-100\/70{
  background-color: rgb(242 242 242 / 0.7);
}
.bg-neutral-100\/75{
  background-color: rgb(242 242 242 / 0.75);
}
.bg-neutral-100\/80{
  background-color: rgb(242 242 242 / 0.8);
}
.bg-neutral-100\/85{
  background-color: rgb(242 242 242 / 0.85);
}
.bg-neutral-100\/90{
  background-color: rgb(242 242 242 / 0.9);
}
.bg-neutral-100\/95{
  background-color: rgb(242 242 242 / 0.95);
}
.bg-neutral-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}
.bg-neutral-200\/0{
  background-color: rgb(229 229 229 / 0);
}
.bg-neutral-200\/10{
  background-color: rgb(229 229 229 / 0.1);
}
.bg-neutral-200\/100{
  background-color: rgb(229 229 229 / 1);
}
.bg-neutral-200\/15{
  background-color: rgb(229 229 229 / 0.15);
}
.bg-neutral-200\/20{
  background-color: rgb(229 229 229 / 0.2);
}
.bg-neutral-200\/25{
  background-color: rgb(229 229 229 / 0.25);
}
.bg-neutral-200\/30{
  background-color: rgb(229 229 229 / 0.3);
}
.bg-neutral-200\/35{
  background-color: rgb(229 229 229 / 0.35);
}
.bg-neutral-200\/40{
  background-color: rgb(229 229 229 / 0.4);
}
.bg-neutral-200\/45{
  background-color: rgb(229 229 229 / 0.45);
}
.bg-neutral-200\/5{
  background-color: rgb(229 229 229 / 0.05);
}
.bg-neutral-200\/50{
  background-color: rgb(229 229 229 / 0.5);
}
.bg-neutral-200\/55{
  background-color: rgb(229 229 229 / 0.55);
}
.bg-neutral-200\/60{
  background-color: rgb(229 229 229 / 0.6);
}
.bg-neutral-200\/65{
  background-color: rgb(229 229 229 / 0.65);
}
.bg-neutral-200\/70{
  background-color: rgb(229 229 229 / 0.7);
}
.bg-neutral-200\/75{
  background-color: rgb(229 229 229 / 0.75);
}
.bg-neutral-200\/80{
  background-color: rgb(229 229 229 / 0.8);
}
.bg-neutral-200\/85{
  background-color: rgb(229 229 229 / 0.85);
}
.bg-neutral-200\/90{
  background-color: rgb(229 229 229 / 0.9);
}
.bg-neutral-200\/95{
  background-color: rgb(229 229 229 / 0.95);
}
.bg-neutral-300{
  --tw-bg-opacity: 1;
  background-color: rgb(212 212 212 / var(--tw-bg-opacity, 1));
}
.bg-neutral-300\/0{
  background-color: rgb(212 212 212 / 0);
}
.bg-neutral-300\/10{
  background-color: rgb(212 212 212 / 0.1);
}
.bg-neutral-300\/100{
  background-color: rgb(212 212 212 / 1);
}
.bg-neutral-300\/15{
  background-color: rgb(212 212 212 / 0.15);
}
.bg-neutral-300\/20{
  background-color: rgb(212 212 212 / 0.2);
}
.bg-neutral-300\/25{
  background-color: rgb(212 212 212 / 0.25);
}
.bg-neutral-300\/30{
  background-color: rgb(212 212 212 / 0.3);
}
.bg-neutral-300\/35{
  background-color: rgb(212 212 212 / 0.35);
}
.bg-neutral-300\/40{
  background-color: rgb(212 212 212 / 0.4);
}
.bg-neutral-300\/45{
  background-color: rgb(212 212 212 / 0.45);
}
.bg-neutral-300\/5{
  background-color: rgb(212 212 212 / 0.05);
}
.bg-neutral-300\/50{
  background-color: rgb(212 212 212 / 0.5);
}
.bg-neutral-300\/55{
  background-color: rgb(212 212 212 / 0.55);
}
.bg-neutral-300\/60{
  background-color: rgb(212 212 212 / 0.6);
}
.bg-neutral-300\/65{
  background-color: rgb(212 212 212 / 0.65);
}
.bg-neutral-300\/70{
  background-color: rgb(212 212 212 / 0.7);
}
.bg-neutral-300\/75{
  background-color: rgb(212 212 212 / 0.75);
}
.bg-neutral-300\/80{
  background-color: rgb(212 212 212 / 0.8);
}
.bg-neutral-300\/85{
  background-color: rgb(212 212 212 / 0.85);
}
.bg-neutral-300\/90{
  background-color: rgb(212 212 212 / 0.9);
}
.bg-neutral-300\/95{
  background-color: rgb(212 212 212 / 0.95);
}
.bg-neutral-400{
  --tw-bg-opacity: 1;
  background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
}
.bg-neutral-400\/0{
  background-color: rgb(163 163 163 / 0);
}
.bg-neutral-400\/10{
  background-color: rgb(163 163 163 / 0.1);
}
.bg-neutral-400\/100{
  background-color: rgb(163 163 163 / 1);
}
.bg-neutral-400\/15{
  background-color: rgb(163 163 163 / 0.15);
}
.bg-neutral-400\/20{
  background-color: rgb(163 163 163 / 0.2);
}
.bg-neutral-400\/25{
  background-color: rgb(163 163 163 / 0.25);
}
.bg-neutral-400\/30{
  background-color: rgb(163 163 163 / 0.3);
}
.bg-neutral-400\/35{
  background-color: rgb(163 163 163 / 0.35);
}
.bg-neutral-400\/40{
  background-color: rgb(163 163 163 / 0.4);
}
.bg-neutral-400\/45{
  background-color: rgb(163 163 163 / 0.45);
}
.bg-neutral-400\/5{
  background-color: rgb(163 163 163 / 0.05);
}
.bg-neutral-400\/50{
  background-color: rgb(163 163 163 / 0.5);
}
.bg-neutral-400\/55{
  background-color: rgb(163 163 163 / 0.55);
}
.bg-neutral-400\/60{
  background-color: rgb(163 163 163 / 0.6);
}
.bg-neutral-400\/65{
  background-color: rgb(163 163 163 / 0.65);
}
.bg-neutral-400\/70{
  background-color: rgb(163 163 163 / 0.7);
}
.bg-neutral-400\/75{
  background-color: rgb(163 163 163 / 0.75);
}
.bg-neutral-400\/80{
  background-color: rgb(163 163 163 / 0.8);
}
.bg-neutral-400\/85{
  background-color: rgb(163 163 163 / 0.85);
}
.bg-neutral-400\/90{
  background-color: rgb(163 163 163 / 0.9);
}
.bg-neutral-400\/95{
  background-color: rgb(163 163 163 / 0.95);
}
.bg-neutral-50{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.bg-neutral-50\/0{
  background-color: rgb(250 250 250 / 0);
}
.bg-neutral-50\/10{
  background-color: rgb(250 250 250 / 0.1);
}
.bg-neutral-50\/100{
  background-color: rgb(250 250 250 / 1);
}
.bg-neutral-50\/15{
  background-color: rgb(250 250 250 / 0.15);
}
.bg-neutral-50\/20{
  background-color: rgb(250 250 250 / 0.2);
}
.bg-neutral-50\/25{
  background-color: rgb(250 250 250 / 0.25);
}
.bg-neutral-50\/30{
  background-color: rgb(250 250 250 / 0.3);
}
.bg-neutral-50\/35{
  background-color: rgb(250 250 250 / 0.35);
}
.bg-neutral-50\/40{
  background-color: rgb(250 250 250 / 0.4);
}
.bg-neutral-50\/45{
  background-color: rgb(250 250 250 / 0.45);
}
.bg-neutral-50\/5{
  background-color: rgb(250 250 250 / 0.05);
}
.bg-neutral-50\/50{
  background-color: rgb(250 250 250 / 0.5);
}
.bg-neutral-50\/55{
  background-color: rgb(250 250 250 / 0.55);
}
.bg-neutral-50\/60{
  background-color: rgb(250 250 250 / 0.6);
}
.bg-neutral-50\/65{
  background-color: rgb(250 250 250 / 0.65);
}
.bg-neutral-50\/70{
  background-color: rgb(250 250 250 / 0.7);
}
.bg-neutral-50\/75{
  background-color: rgb(250 250 250 / 0.75);
}
.bg-neutral-50\/80{
  background-color: rgb(250 250 250 / 0.8);
}
.bg-neutral-50\/85{
  background-color: rgb(250 250 250 / 0.85);
}
.bg-neutral-50\/90{
  background-color: rgb(250 250 250 / 0.9);
}
.bg-neutral-50\/95{
  background-color: rgb(250 250 250 / 0.95);
}
.bg-neutral-500{
  --tw-bg-opacity: 1;
  background-color: rgb(140 140 140 / var(--tw-bg-opacity, 1));
}
.bg-neutral-500\/0{
  background-color: rgb(140 140 140 / 0);
}
.bg-neutral-500\/10{
  background-color: rgb(140 140 140 / 0.1);
}
.bg-neutral-500\/100{
  background-color: rgb(140 140 140 / 1);
}
.bg-neutral-500\/15{
  background-color: rgb(140 140 140 / 0.15);
}
.bg-neutral-500\/20{
  background-color: rgb(140 140 140 / 0.2);
}
.bg-neutral-500\/25{
  background-color: rgb(140 140 140 / 0.25);
}
.bg-neutral-500\/30{
  background-color: rgb(140 140 140 / 0.3);
}
.bg-neutral-500\/35{
  background-color: rgb(140 140 140 / 0.35);
}
.bg-neutral-500\/40{
  background-color: rgb(140 140 140 / 0.4);
}
.bg-neutral-500\/45{
  background-color: rgb(140 140 140 / 0.45);
}
.bg-neutral-500\/5{
  background-color: rgb(140 140 140 / 0.05);
}
.bg-neutral-500\/50{
  background-color: rgb(140 140 140 / 0.5);
}
.bg-neutral-500\/55{
  background-color: rgb(140 140 140 / 0.55);
}
.bg-neutral-500\/60{
  background-color: rgb(140 140 140 / 0.6);
}
.bg-neutral-500\/65{
  background-color: rgb(140 140 140 / 0.65);
}
.bg-neutral-500\/70{
  background-color: rgb(140 140 140 / 0.7);
}
.bg-neutral-500\/75{
  background-color: rgb(140 140 140 / 0.75);
}
.bg-neutral-500\/80{
  background-color: rgb(140 140 140 / 0.8);
}
.bg-neutral-500\/85{
  background-color: rgb(140 140 140 / 0.85);
}
.bg-neutral-500\/90{
  background-color: rgb(140 140 140 / 0.9);
}
.bg-neutral-500\/95{
  background-color: rgb(140 140 140 / 0.95);
}
.bg-neutral-600{
  --tw-bg-opacity: 1;
  background-color: rgb(110 110 110 / var(--tw-bg-opacity, 1));
}
.bg-neutral-600\/0{
  background-color: rgb(110 110 110 / 0);
}
.bg-neutral-600\/10{
  background-color: rgb(110 110 110 / 0.1);
}
.bg-neutral-600\/100{
  background-color: rgb(110 110 110 / 1);
}
.bg-neutral-600\/15{
  background-color: rgb(110 110 110 / 0.15);
}
.bg-neutral-600\/20{
  background-color: rgb(110 110 110 / 0.2);
}
.bg-neutral-600\/25{
  background-color: rgb(110 110 110 / 0.25);
}
.bg-neutral-600\/30{
  background-color: rgb(110 110 110 / 0.3);
}
.bg-neutral-600\/35{
  background-color: rgb(110 110 110 / 0.35);
}
.bg-neutral-600\/40{
  background-color: rgb(110 110 110 / 0.4);
}
.bg-neutral-600\/45{
  background-color: rgb(110 110 110 / 0.45);
}
.bg-neutral-600\/5{
  background-color: rgb(110 110 110 / 0.05);
}
.bg-neutral-600\/50{
  background-color: rgb(110 110 110 / 0.5);
}
.bg-neutral-600\/55{
  background-color: rgb(110 110 110 / 0.55);
}
.bg-neutral-600\/60{
  background-color: rgb(110 110 110 / 0.6);
}
.bg-neutral-600\/65{
  background-color: rgb(110 110 110 / 0.65);
}
.bg-neutral-600\/70{
  background-color: rgb(110 110 110 / 0.7);
}
.bg-neutral-600\/75{
  background-color: rgb(110 110 110 / 0.75);
}
.bg-neutral-600\/80{
  background-color: rgb(110 110 110 / 0.8);
}
.bg-neutral-600\/85{
  background-color: rgb(110 110 110 / 0.85);
}
.bg-neutral-600\/90{
  background-color: rgb(110 110 110 / 0.9);
}
.bg-neutral-600\/95{
  background-color: rgb(110 110 110 / 0.95);
}
.bg-neutral-700{
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 82 / var(--tw-bg-opacity, 1));
}
.bg-neutral-700\/0{
  background-color: rgb(82 82 82 / 0);
}
.bg-neutral-700\/10{
  background-color: rgb(82 82 82 / 0.1);
}
.bg-neutral-700\/100{
  background-color: rgb(82 82 82 / 1);
}
.bg-neutral-700\/15{
  background-color: rgb(82 82 82 / 0.15);
}
.bg-neutral-700\/20{
  background-color: rgb(82 82 82 / 0.2);
}
.bg-neutral-700\/25{
  background-color: rgb(82 82 82 / 0.25);
}
.bg-neutral-700\/30{
  background-color: rgb(82 82 82 / 0.3);
}
.bg-neutral-700\/35{
  background-color: rgb(82 82 82 / 0.35);
}
.bg-neutral-700\/40{
  background-color: rgb(82 82 82 / 0.4);
}
.bg-neutral-700\/45{
  background-color: rgb(82 82 82 / 0.45);
}
.bg-neutral-700\/5{
  background-color: rgb(82 82 82 / 0.05);
}
.bg-neutral-700\/50{
  background-color: rgb(82 82 82 / 0.5);
}
.bg-neutral-700\/55{
  background-color: rgb(82 82 82 / 0.55);
}
.bg-neutral-700\/60{
  background-color: rgb(82 82 82 / 0.6);
}
.bg-neutral-700\/65{
  background-color: rgb(82 82 82 / 0.65);
}
.bg-neutral-700\/70{
  background-color: rgb(82 82 82 / 0.7);
}
.bg-neutral-700\/75{
  background-color: rgb(82 82 82 / 0.75);
}
.bg-neutral-700\/80{
  background-color: rgb(82 82 82 / 0.8);
}
.bg-neutral-700\/85{
  background-color: rgb(82 82 82 / 0.85);
}
.bg-neutral-700\/90{
  background-color: rgb(82 82 82 / 0.9);
}
.bg-neutral-700\/95{
  background-color: rgb(82 82 82 / 0.95);
}
.bg-neutral-800{
  --tw-bg-opacity: 1;
  background-color: rgb(64 64 64 / var(--tw-bg-opacity, 1));
}
.bg-neutral-800\/0{
  background-color: rgb(64 64 64 / 0);
}
.bg-neutral-800\/10{
  background-color: rgb(64 64 64 / 0.1);
}
.bg-neutral-800\/100{
  background-color: rgb(64 64 64 / 1);
}
.bg-neutral-800\/15{
  background-color: rgb(64 64 64 / 0.15);
}
.bg-neutral-800\/20{
  background-color: rgb(64 64 64 / 0.2);
}
.bg-neutral-800\/25{
  background-color: rgb(64 64 64 / 0.25);
}
.bg-neutral-800\/30{
  background-color: rgb(64 64 64 / 0.3);
}
.bg-neutral-800\/35{
  background-color: rgb(64 64 64 / 0.35);
}
.bg-neutral-800\/40{
  background-color: rgb(64 64 64 / 0.4);
}
.bg-neutral-800\/45{
  background-color: rgb(64 64 64 / 0.45);
}
.bg-neutral-800\/5{
  background-color: rgb(64 64 64 / 0.05);
}
.bg-neutral-800\/50{
  background-color: rgb(64 64 64 / 0.5);
}
.bg-neutral-800\/55{
  background-color: rgb(64 64 64 / 0.55);
}
.bg-neutral-800\/60{
  background-color: rgb(64 64 64 / 0.6);
}
.bg-neutral-800\/65{
  background-color: rgb(64 64 64 / 0.65);
}
.bg-neutral-800\/70{
  background-color: rgb(64 64 64 / 0.7);
}
.bg-neutral-800\/75{
  background-color: rgb(64 64 64 / 0.75);
}
.bg-neutral-800\/80{
  background-color: rgb(64 64 64 / 0.8);
}
.bg-neutral-800\/85{
  background-color: rgb(64 64 64 / 0.85);
}
.bg-neutral-800\/90{
  background-color: rgb(64 64 64 / 0.9);
}
.bg-neutral-800\/95{
  background-color: rgb(64 64 64 / 0.95);
}
.bg-neutral-900{
  --tw-bg-opacity: 1;
  background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
}
.bg-neutral-900\/0{
  background-color: rgb(38 38 38 / 0);
}
.bg-neutral-900\/10{
  background-color: rgb(38 38 38 / 0.1);
}
.bg-neutral-900\/100{
  background-color: rgb(38 38 38 / 1);
}
.bg-neutral-900\/15{
  background-color: rgb(38 38 38 / 0.15);
}
.bg-neutral-900\/20{
  background-color: rgb(38 38 38 / 0.2);
}
.bg-neutral-900\/25{
  background-color: rgb(38 38 38 / 0.25);
}
.bg-neutral-900\/30{
  background-color: rgb(38 38 38 / 0.3);
}
.bg-neutral-900\/35{
  background-color: rgb(38 38 38 / 0.35);
}
.bg-neutral-900\/40{
  background-color: rgb(38 38 38 / 0.4);
}
.bg-neutral-900\/45{
  background-color: rgb(38 38 38 / 0.45);
}
.bg-neutral-900\/5{
  background-color: rgb(38 38 38 / 0.05);
}
.bg-neutral-900\/50{
  background-color: rgb(38 38 38 / 0.5);
}
.bg-neutral-900\/55{
  background-color: rgb(38 38 38 / 0.55);
}
.bg-neutral-900\/60{
  background-color: rgb(38 38 38 / 0.6);
}
.bg-neutral-900\/65{
  background-color: rgb(38 38 38 / 0.65);
}
.bg-neutral-900\/70{
  background-color: rgb(38 38 38 / 0.7);
}
.bg-neutral-900\/75{
  background-color: rgb(38 38 38 / 0.75);
}
.bg-neutral-900\/80{
  background-color: rgb(38 38 38 / 0.8);
}
.bg-neutral-900\/85{
  background-color: rgb(38 38 38 / 0.85);
}
.bg-neutral-900\/90{
  background-color: rgb(38 38 38 / 0.9);
}
.bg-neutral-900\/95{
  background-color: rgb(38 38 38 / 0.95);
}
.bg-neutral-950{
  --tw-bg-opacity: 1;
  background-color: rgb(23 23 23 / var(--tw-bg-opacity, 1));
}
.bg-neutral-950\/0{
  background-color: rgb(23 23 23 / 0);
}
.bg-neutral-950\/10{
  background-color: rgb(23 23 23 / 0.1);
}
.bg-neutral-950\/100{
  background-color: rgb(23 23 23 / 1);
}
.bg-neutral-950\/15{
  background-color: rgb(23 23 23 / 0.15);
}
.bg-neutral-950\/20{
  background-color: rgb(23 23 23 / 0.2);
}
.bg-neutral-950\/25{
  background-color: rgb(23 23 23 / 0.25);
}
.bg-neutral-950\/30{
  background-color: rgb(23 23 23 / 0.3);
}
.bg-neutral-950\/35{
  background-color: rgb(23 23 23 / 0.35);
}
.bg-neutral-950\/40{
  background-color: rgb(23 23 23 / 0.4);
}
.bg-neutral-950\/45{
  background-color: rgb(23 23 23 / 0.45);
}
.bg-neutral-950\/5{
  background-color: rgb(23 23 23 / 0.05);
}
.bg-neutral-950\/50{
  background-color: rgb(23 23 23 / 0.5);
}
.bg-neutral-950\/55{
  background-color: rgb(23 23 23 / 0.55);
}
.bg-neutral-950\/60{
  background-color: rgb(23 23 23 / 0.6);
}
.bg-neutral-950\/65{
  background-color: rgb(23 23 23 / 0.65);
}
.bg-neutral-950\/70{
  background-color: rgb(23 23 23 / 0.7);
}
.bg-neutral-950\/75{
  background-color: rgb(23 23 23 / 0.75);
}
.bg-neutral-950\/80{
  background-color: rgb(23 23 23 / 0.8);
}
.bg-neutral-950\/85{
  background-color: rgb(23 23 23 / 0.85);
}
.bg-neutral-950\/90{
  background-color: rgb(23 23 23 / 0.9);
}
.bg-neutral-950\/95{
  background-color: rgb(23 23 23 / 0.95);
}
.bg-primary-200{
  --tw-bg-opacity: 1;
  background-color: rgb(207 252 233 / var(--tw-bg-opacity, 1));
}
.bg-primary-200\/0{
  background-color: rgb(207 252 233 / 0);
}
.bg-primary-200\/10{
  background-color: rgb(207 252 233 / 0.1);
}
.bg-primary-200\/100{
  background-color: rgb(207 252 233 / 1);
}
.bg-primary-200\/15{
  background-color: rgb(207 252 233 / 0.15);
}
.bg-primary-200\/20{
  background-color: rgb(207 252 233 / 0.2);
}
.bg-primary-200\/25{
  background-color: rgb(207 252 233 / 0.25);
}
.bg-primary-200\/30{
  background-color: rgb(207 252 233 / 0.3);
}
.bg-primary-200\/35{
  background-color: rgb(207 252 233 / 0.35);
}
.bg-primary-200\/40{
  background-color: rgb(207 252 233 / 0.4);
}
.bg-primary-200\/45{
  background-color: rgb(207 252 233 / 0.45);
}
.bg-primary-200\/5{
  background-color: rgb(207 252 233 / 0.05);
}
.bg-primary-200\/50{
  background-color: rgb(207 252 233 / 0.5);
}
.bg-primary-200\/55{
  background-color: rgb(207 252 233 / 0.55);
}
.bg-primary-200\/60{
  background-color: rgb(207 252 233 / 0.6);
}
.bg-primary-200\/65{
  background-color: rgb(207 252 233 / 0.65);
}
.bg-primary-200\/70{
  background-color: rgb(207 252 233 / 0.7);
}
.bg-primary-200\/75{
  background-color: rgb(207 252 233 / 0.75);
}
.bg-primary-200\/80{
  background-color: rgb(207 252 233 / 0.8);
}
.bg-primary-200\/85{
  background-color: rgb(207 252 233 / 0.85);
}
.bg-primary-200\/90{
  background-color: rgb(207 252 233 / 0.9);
}
.bg-primary-200\/95{
  background-color: rgb(207 252 233 / 0.95);
}
.bg-primary-300{
  --tw-bg-opacity: 1;
  background-color: rgb(134 234 192 / var(--tw-bg-opacity, 1));
}
.bg-primary-300\/0{
  background-color: rgb(134 234 192 / 0);
}
.bg-primary-300\/10{
  background-color: rgb(134 234 192 / 0.1);
}
.bg-primary-300\/100{
  background-color: rgb(134 234 192 / 1);
}
.bg-primary-300\/15{
  background-color: rgb(134 234 192 / 0.15);
}
.bg-primary-300\/20{
  background-color: rgb(134 234 192 / 0.2);
}
.bg-primary-300\/25{
  background-color: rgb(134 234 192 / 0.25);
}
.bg-primary-300\/30{
  background-color: rgb(134 234 192 / 0.3);
}
.bg-primary-300\/35{
  background-color: rgb(134 234 192 / 0.35);
}
.bg-primary-300\/40{
  background-color: rgb(134 234 192 / 0.4);
}
.bg-primary-300\/45{
  background-color: rgb(134 234 192 / 0.45);
}
.bg-primary-300\/5{
  background-color: rgb(134 234 192 / 0.05);
}
.bg-primary-300\/50{
  background-color: rgb(134 234 192 / 0.5);
}
.bg-primary-300\/55{
  background-color: rgb(134 234 192 / 0.55);
}
.bg-primary-300\/60{
  background-color: rgb(134 234 192 / 0.6);
}
.bg-primary-300\/65{
  background-color: rgb(134 234 192 / 0.65);
}
.bg-primary-300\/70{
  background-color: rgb(134 234 192 / 0.7);
}
.bg-primary-300\/75{
  background-color: rgb(134 234 192 / 0.75);
}
.bg-primary-300\/80{
  background-color: rgb(134 234 192 / 0.8);
}
.bg-primary-300\/85{
  background-color: rgb(134 234 192 / 0.85);
}
.bg-primary-300\/90{
  background-color: rgb(134 234 192 / 0.9);
}
.bg-primary-300\/95{
  background-color: rgb(134 234 192 / 0.95);
}
.bg-primary-400{
  --tw-bg-opacity: 1;
  background-color: rgb(92 214 163 / var(--tw-bg-opacity, 1));
}
.bg-primary-400\/0{
  background-color: rgb(92 214 163 / 0);
}
.bg-primary-400\/10{
  background-color: rgb(92 214 163 / 0.1);
}
.bg-primary-400\/100{
  background-color: rgb(92 214 163 / 1);
}
.bg-primary-400\/15{
  background-color: rgb(92 214 163 / 0.15);
}
.bg-primary-400\/20{
  background-color: rgb(92 214 163 / 0.2);
}
.bg-primary-400\/25{
  background-color: rgb(92 214 163 / 0.25);
}
.bg-primary-400\/30{
  background-color: rgb(92 214 163 / 0.3);
}
.bg-primary-400\/35{
  background-color: rgb(92 214 163 / 0.35);
}
.bg-primary-400\/40{
  background-color: rgb(92 214 163 / 0.4);
}
.bg-primary-400\/45{
  background-color: rgb(92 214 163 / 0.45);
}
.bg-primary-400\/5{
  background-color: rgb(92 214 163 / 0.05);
}
.bg-primary-400\/50{
  background-color: rgb(92 214 163 / 0.5);
}
.bg-primary-400\/55{
  background-color: rgb(92 214 163 / 0.55);
}
.bg-primary-400\/60{
  background-color: rgb(92 214 163 / 0.6);
}
.bg-primary-400\/65{
  background-color: rgb(92 214 163 / 0.65);
}
.bg-primary-400\/70{
  background-color: rgb(92 214 163 / 0.7);
}
.bg-primary-400\/75{
  background-color: rgb(92 214 163 / 0.75);
}
.bg-primary-400\/80{
  background-color: rgb(92 214 163 / 0.8);
}
.bg-primary-400\/85{
  background-color: rgb(92 214 163 / 0.85);
}
.bg-primary-400\/90{
  background-color: rgb(92 214 163 / 0.9);
}
.bg-primary-400\/95{
  background-color: rgb(92 214 163 / 0.95);
}
.bg-primary-500{
  --tw-bg-opacity: 1;
  background-color: rgb(56 188 133 / var(--tw-bg-opacity, 1));
}
.bg-primary-500\/0{
  background-color: rgb(56 188 133 / 0);
}
.bg-primary-500\/10{
  background-color: rgb(56 188 133 / 0.1);
}
.bg-primary-500\/100{
  background-color: rgb(56 188 133 / 1);
}
.bg-primary-500\/15{
  background-color: rgb(56 188 133 / 0.15);
}
.bg-primary-500\/20{
  background-color: rgb(56 188 133 / 0.2);
}
.bg-primary-500\/25{
  background-color: rgb(56 188 133 / 0.25);
}
.bg-primary-500\/30{
  background-color: rgb(56 188 133 / 0.3);
}
.bg-primary-500\/35{
  background-color: rgb(56 188 133 / 0.35);
}
.bg-primary-500\/40{
  background-color: rgb(56 188 133 / 0.4);
}
.bg-primary-500\/45{
  background-color: rgb(56 188 133 / 0.45);
}
.bg-primary-500\/5{
  background-color: rgb(56 188 133 / 0.05);
}
.bg-primary-500\/50{
  background-color: rgb(56 188 133 / 0.5);
}
.bg-primary-500\/55{
  background-color: rgb(56 188 133 / 0.55);
}
.bg-primary-500\/60{
  background-color: rgb(56 188 133 / 0.6);
}
.bg-primary-500\/65{
  background-color: rgb(56 188 133 / 0.65);
}
.bg-primary-500\/70{
  background-color: rgb(56 188 133 / 0.7);
}
.bg-primary-500\/75{
  background-color: rgb(56 188 133 / 0.75);
}
.bg-primary-500\/80{
  background-color: rgb(56 188 133 / 0.8);
}
.bg-primary-500\/85{
  background-color: rgb(56 188 133 / 0.85);
}
.bg-primary-500\/90{
  background-color: rgb(56 188 133 / 0.9);
}
.bg-primary-500\/95{
  background-color: rgb(56 188 133 / 0.95);
}
.bg-primary-600{
  --tw-bg-opacity: 1;
  background-color: rgb(41 158 109 / var(--tw-bg-opacity, 1));
}
.bg-primary-600\/0{
  background-color: rgb(41 158 109 / 0);
}
.bg-primary-600\/10{
  background-color: rgb(41 158 109 / 0.1);
}
.bg-primary-600\/100{
  background-color: rgb(41 158 109 / 1);
}
.bg-primary-600\/15{
  background-color: rgb(41 158 109 / 0.15);
}
.bg-primary-600\/20{
  background-color: rgb(41 158 109 / 0.2);
}
.bg-primary-600\/25{
  background-color: rgb(41 158 109 / 0.25);
}
.bg-primary-600\/30{
  background-color: rgb(41 158 109 / 0.3);
}
.bg-primary-600\/35{
  background-color: rgb(41 158 109 / 0.35);
}
.bg-primary-600\/40{
  background-color: rgb(41 158 109 / 0.4);
}
.bg-primary-600\/45{
  background-color: rgb(41 158 109 / 0.45);
}
.bg-primary-600\/5{
  background-color: rgb(41 158 109 / 0.05);
}
.bg-primary-600\/50{
  background-color: rgb(41 158 109 / 0.5);
}
.bg-primary-600\/55{
  background-color: rgb(41 158 109 / 0.55);
}
.bg-primary-600\/60{
  background-color: rgb(41 158 109 / 0.6);
}
.bg-primary-600\/65{
  background-color: rgb(41 158 109 / 0.65);
}
.bg-primary-600\/70{
  background-color: rgb(41 158 109 / 0.7);
}
.bg-primary-600\/75{
  background-color: rgb(41 158 109 / 0.75);
}
.bg-primary-600\/80{
  background-color: rgb(41 158 109 / 0.8);
}
.bg-primary-600\/85{
  background-color: rgb(41 158 109 / 0.85);
}
.bg-primary-600\/90{
  background-color: rgb(41 158 109 / 0.9);
}
.bg-primary-600\/95{
  background-color: rgb(41 158 109 / 0.95);
}
.bg-primary-700{
  --tw-bg-opacity: 1;
  background-color: rgb(16 101 66 / var(--tw-bg-opacity, 1));
}
.bg-primary-700\/0{
  background-color: rgb(16 101 66 / 0);
}
.bg-primary-700\/10{
  background-color: rgb(16 101 66 / 0.1);
}
.bg-primary-700\/100{
  background-color: rgb(16 101 66 / 1);
}
.bg-primary-700\/15{
  background-color: rgb(16 101 66 / 0.15);
}
.bg-primary-700\/20{
  background-color: rgb(16 101 66 / 0.2);
}
.bg-primary-700\/25{
  background-color: rgb(16 101 66 / 0.25);
}
.bg-primary-700\/30{
  background-color: rgb(16 101 66 / 0.3);
}
.bg-primary-700\/35{
  background-color: rgb(16 101 66 / 0.35);
}
.bg-primary-700\/40{
  background-color: rgb(16 101 66 / 0.4);
}
.bg-primary-700\/45{
  background-color: rgb(16 101 66 / 0.45);
}
.bg-primary-700\/5{
  background-color: rgb(16 101 66 / 0.05);
}
.bg-primary-700\/50{
  background-color: rgb(16 101 66 / 0.5);
}
.bg-primary-700\/55{
  background-color: rgb(16 101 66 / 0.55);
}
.bg-primary-700\/60{
  background-color: rgb(16 101 66 / 0.6);
}
.bg-primary-700\/65{
  background-color: rgb(16 101 66 / 0.65);
}
.bg-primary-700\/70{
  background-color: rgb(16 101 66 / 0.7);
}
.bg-primary-700\/75{
  background-color: rgb(16 101 66 / 0.75);
}
.bg-primary-700\/80{
  background-color: rgb(16 101 66 / 0.8);
}
.bg-primary-700\/85{
  background-color: rgb(16 101 66 / 0.85);
}
.bg-primary-700\/90{
  background-color: rgb(16 101 66 / 0.9);
}
.bg-primary-700\/95{
  background-color: rgb(16 101 66 / 0.95);
}
.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-stone-800{
  --tw-bg-opacity: 1;
  background-color: rgb(41 37 36 / var(--tw-bg-opacity, 1));
}
.bg-success{
  --tw-bg-opacity: 1;
  background-color: rgb(6 137 39 / var(--tw-bg-opacity, 1));
}
.bg-success-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(4 107 31 / var(--tw-bg-opacity, 1));
}
.bg-success-dark\/0{
  background-color: rgb(4 107 31 / 0);
}
.bg-success-dark\/10{
  background-color: rgb(4 107 31 / 0.1);
}
.bg-success-dark\/100{
  background-color: rgb(4 107 31 / 1);
}
.bg-success-dark\/15{
  background-color: rgb(4 107 31 / 0.15);
}
.bg-success-dark\/20{
  background-color: rgb(4 107 31 / 0.2);
}
.bg-success-dark\/25{
  background-color: rgb(4 107 31 / 0.25);
}
.bg-success-dark\/30{
  background-color: rgb(4 107 31 / 0.3);
}
.bg-success-dark\/35{
  background-color: rgb(4 107 31 / 0.35);
}
.bg-success-dark\/40{
  background-color: rgb(4 107 31 / 0.4);
}
.bg-success-dark\/45{
  background-color: rgb(4 107 31 / 0.45);
}
.bg-success-dark\/5{
  background-color: rgb(4 107 31 / 0.05);
}
.bg-success-dark\/50{
  background-color: rgb(4 107 31 / 0.5);
}
.bg-success-dark\/55{
  background-color: rgb(4 107 31 / 0.55);
}
.bg-success-dark\/60{
  background-color: rgb(4 107 31 / 0.6);
}
.bg-success-dark\/65{
  background-color: rgb(4 107 31 / 0.65);
}
.bg-success-dark\/70{
  background-color: rgb(4 107 31 / 0.7);
}
.bg-success-dark\/75{
  background-color: rgb(4 107 31 / 0.75);
}
.bg-success-dark\/80{
  background-color: rgb(4 107 31 / 0.8);
}
.bg-success-dark\/85{
  background-color: rgb(4 107 31 / 0.85);
}
.bg-success-dark\/90{
  background-color: rgb(4 107 31 / 0.9);
}
.bg-success-dark\/95{
  background-color: rgb(4 107 31 / 0.95);
}
.bg-success-light{
  --tw-bg-opacity: 1;
  background-color: rgb(16 163 55 / var(--tw-bg-opacity, 1));
}
.bg-success-light\/0{
  background-color: rgb(16 163 55 / 0);
}
.bg-success-light\/10{
  background-color: rgb(16 163 55 / 0.1);
}
.bg-success-light\/100{
  background-color: rgb(16 163 55 / 1);
}
.bg-success-light\/15{
  background-color: rgb(16 163 55 / 0.15);
}
.bg-success-light\/20{
  background-color: rgb(16 163 55 / 0.2);
}
.bg-success-light\/25{
  background-color: rgb(16 163 55 / 0.25);
}
.bg-success-light\/30{
  background-color: rgb(16 163 55 / 0.3);
}
.bg-success-light\/35{
  background-color: rgb(16 163 55 / 0.35);
}
.bg-success-light\/40{
  background-color: rgb(16 163 55 / 0.4);
}
.bg-success-light\/45{
  background-color: rgb(16 163 55 / 0.45);
}
.bg-success-light\/5{
  background-color: rgb(16 163 55 / 0.05);
}
.bg-success-light\/50{
  background-color: rgb(16 163 55 / 0.5);
}
.bg-success-light\/55{
  background-color: rgb(16 163 55 / 0.55);
}
.bg-success-light\/60{
  background-color: rgb(16 163 55 / 0.6);
}
.bg-success-light\/65{
  background-color: rgb(16 163 55 / 0.65);
}
.bg-success-light\/70{
  background-color: rgb(16 163 55 / 0.7);
}
.bg-success-light\/75{
  background-color: rgb(16 163 55 / 0.75);
}
.bg-success-light\/80{
  background-color: rgb(16 163 55 / 0.8);
}
.bg-success-light\/85{
  background-color: rgb(16 163 55 / 0.85);
}
.bg-success-light\/90{
  background-color: rgb(16 163 55 / 0.9);
}
.bg-success-light\/95{
  background-color: rgb(16 163 55 / 0.95);
}
.bg-tango-600{
  --tw-bg-opacity: 1;
  background-color: rgb(235 109 46 / var(--tw-bg-opacity, 1));
}
.bg-transparent{
  background-color: transparent;
}
.bg-warning-dark{
  --tw-bg-opacity: 1;
  background-color: rgb(154 44 10 / var(--tw-bg-opacity, 1));
}
.bg-warning-dark\/0{
  background-color: rgb(154 44 10 / 0);
}
.bg-warning-dark\/10{
  background-color: rgb(154 44 10 / 0.1);
}
.bg-warning-dark\/100{
  background-color: rgb(154 44 10 / 1);
}
.bg-warning-dark\/15{
  background-color: rgb(154 44 10 / 0.15);
}
.bg-warning-dark\/20{
  background-color: rgb(154 44 10 / 0.2);
}
.bg-warning-dark\/25{
  background-color: rgb(154 44 10 / 0.25);
}
.bg-warning-dark\/30{
  background-color: rgb(154 44 10 / 0.3);
}
.bg-warning-dark\/35{
  background-color: rgb(154 44 10 / 0.35);
}
.bg-warning-dark\/40{
  background-color: rgb(154 44 10 / 0.4);
}
.bg-warning-dark\/45{
  background-color: rgb(154 44 10 / 0.45);
}
.bg-warning-dark\/5{
  background-color: rgb(154 44 10 / 0.05);
}
.bg-warning-dark\/50{
  background-color: rgb(154 44 10 / 0.5);
}
.bg-warning-dark\/55{
  background-color: rgb(154 44 10 / 0.55);
}
.bg-warning-dark\/60{
  background-color: rgb(154 44 10 / 0.6);
}
.bg-warning-dark\/65{
  background-color: rgb(154 44 10 / 0.65);
}
.bg-warning-dark\/70{
  background-color: rgb(154 44 10 / 0.7);
}
.bg-warning-dark\/75{
  background-color: rgb(154 44 10 / 0.75);
}
.bg-warning-dark\/80{
  background-color: rgb(154 44 10 / 0.8);
}
.bg-warning-dark\/85{
  background-color: rgb(154 44 10 / 0.85);
}
.bg-warning-dark\/90{
  background-color: rgb(154 44 10 / 0.9);
}
.bg-warning-dark\/95{
  background-color: rgb(154 44 10 / 0.95);
}
.bg-warning-light{
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.bg-warning-light\/0{
  background-color: rgb(234 88 12 / 0);
}
.bg-warning-light\/10{
  background-color: rgb(234 88 12 / 0.1);
}
.bg-warning-light\/100{
  background-color: rgb(234 88 12 / 1);
}
.bg-warning-light\/15{
  background-color: rgb(234 88 12 / 0.15);
}
.bg-warning-light\/20{
  background-color: rgb(234 88 12 / 0.2);
}
.bg-warning-light\/25{
  background-color: rgb(234 88 12 / 0.25);
}
.bg-warning-light\/30{
  background-color: rgb(234 88 12 / 0.3);
}
.bg-warning-light\/35{
  background-color: rgb(234 88 12 / 0.35);
}
.bg-warning-light\/40{
  background-color: rgb(234 88 12 / 0.4);
}
.bg-warning-light\/45{
  background-color: rgb(234 88 12 / 0.45);
}
.bg-warning-light\/5{
  background-color: rgb(234 88 12 / 0.05);
}
.bg-warning-light\/50{
  background-color: rgb(234 88 12 / 0.5);
}
.bg-warning-light\/55{
  background-color: rgb(234 88 12 / 0.55);
}
.bg-warning-light\/60{
  background-color: rgb(234 88 12 / 0.6);
}
.bg-warning-light\/65{
  background-color: rgb(234 88 12 / 0.65);
}
.bg-warning-light\/70{
  background-color: rgb(234 88 12 / 0.7);
}
.bg-warning-light\/75{
  background-color: rgb(234 88 12 / 0.75);
}
.bg-warning-light\/80{
  background-color: rgb(234 88 12 / 0.8);
}
.bg-warning-light\/85{
  background-color: rgb(234 88 12 / 0.85);
}
.bg-warning-light\/90{
  background-color: rgb(234 88 12 / 0.9);
}
.bg-warning-light\/95{
  background-color: rgb(234 88 12 / 0.95);
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-yellow-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.bg-yellow-600{
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
}
.bg-opacity-20{
  --tw-bg-opacity: 0.2;
}
.bg-opacity-75{
  --tw-bg-opacity: 0.75;
}
.bg-opacity-80{
  --tw-bg-opacity: 0.8;
}
.bg-opacity-90{
  --tw-bg-opacity: 0.9;
}
.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-none{
  background-image: none;
}
.from-transparent{
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-gray-200{
  --tw-gradient-to: #e5e7eb var(--tw-gradient-to-position);
}
.bg-cover{
  background-size: cover;
}
.bg-center{
  background-position: center;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.stroke-brand-primary{
  stroke: #2E6B68;
}
.stroke-grayscale-600{
  stroke: #494950;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center{
  -o-object-position: center;
     object-position: center;
}
.\!p-0{
  padding: 0px !important;
}
.p-0{
  padding: 0px;
}
.p-0\.5{
  padding: 0.125rem;
}
.p-1{
  padding: 0.25rem;
}
.p-12{
  padding: 3rem;
}
.p-2{
  padding: 0.5rem;
}
.p-2\.5{
  padding: 0.625rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.p-8{
  padding: 2rem;
}
.p-\[3px\]{
  padding: 3px;
}
.p-\[5px\]{
  padding: 5px;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-\[1px\]{
  padding-top: 1px;
  padding-bottom: 1px;
}
.py-px{
  padding-top: 1px;
  padding-bottom: 1px;
}
.pb-0{
  padding-bottom: 0px;
}
.pb-1{
  padding-bottom: 0.25rem;
}
.pb-2{
  padding-bottom: 0.5rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pl-0{
  padding-left: 0px;
}
.pl-1{
  padding-left: 0.25rem;
}
.pl-10{
  padding-left: 2.5rem;
}
.pl-2{
  padding-left: 0.5rem;
}
.pl-3{
  padding-left: 0.75rem;
}
.pl-4{
  padding-left: 1rem;
}
.pl-8{
  padding-left: 2rem;
}
.pr-0{
  padding-right: 0px;
}
.pr-1{
  padding-right: 0.25rem;
}
.pr-10{
  padding-right: 2.5rem;
}
.pr-2{
  padding-right: 0.5rem;
}
.pr-3{
  padding-right: 0.75rem;
}
.pr-4{
  padding-right: 1rem;
}
.pr-8{
  padding-right: 2rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.align-middle{
  vertical-align: middle;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl{
  font-size: 3rem;
  line-height: 1;
}
.text-\[0px\]{
  font-size: 0px;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold{
  font-weight: 700;
}
.font-light{
  font-weight: 300;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.capitalize{
  text-transform: capitalize;
}
.italic{
  font-style: italic;
}
.leading-3{
  line-height: .75rem;
}
.leading-5{
  line-height: 1.25rem;
}
.leading-6{
  line-height: 1.5rem;
}
.leading-7{
  line-height: 1.75rem;
}
.leading-none{
  line-height: 1;
}
.leading-relaxed{
  line-height: 1.625;
}
.tracking-tight{
  letter-spacing: -0.025em;
}
.tracking-wide{
  letter-spacing: 0.025em;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.tracking-widest{
  letter-spacing: 0.1em;
}
.text-\[var\(--color-feedback-error\)\]{
  color: var(--color-feedback-error);
}
.text-accent-200{
  --tw-text-opacity: 1;
  color: rgb(230 252 254 / var(--tw-text-opacity, 1));
}
.text-accent-200\/0{
  color: rgb(230 252 254 / 0);
}
.text-accent-200\/10{
  color: rgb(230 252 254 / 0.1);
}
.text-accent-200\/100{
  color: rgb(230 252 254 / 1);
}
.text-accent-200\/15{
  color: rgb(230 252 254 / 0.15);
}
.text-accent-200\/20{
  color: rgb(230 252 254 / 0.2);
}
.text-accent-200\/25{
  color: rgb(230 252 254 / 0.25);
}
.text-accent-200\/30{
  color: rgb(230 252 254 / 0.3);
}
.text-accent-200\/35{
  color: rgb(230 252 254 / 0.35);
}
.text-accent-200\/40{
  color: rgb(230 252 254 / 0.4);
}
.text-accent-200\/45{
  color: rgb(230 252 254 / 0.45);
}
.text-accent-200\/5{
  color: rgb(230 252 254 / 0.05);
}
.text-accent-200\/50{
  color: rgb(230 252 254 / 0.5);
}
.text-accent-200\/55{
  color: rgb(230 252 254 / 0.55);
}
.text-accent-200\/60{
  color: rgb(230 252 254 / 0.6);
}
.text-accent-200\/65{
  color: rgb(230 252 254 / 0.65);
}
.text-accent-200\/70{
  color: rgb(230 252 254 / 0.7);
}
.text-accent-200\/75{
  color: rgb(230 252 254 / 0.75);
}
.text-accent-200\/80{
  color: rgb(230 252 254 / 0.8);
}
.text-accent-200\/85{
  color: rgb(230 252 254 / 0.85);
}
.text-accent-200\/90{
  color: rgb(230 252 254 / 0.9);
}
.text-accent-200\/95{
  color: rgb(230 252 254 / 0.95);
}
.text-accent-300{
  --tw-text-opacity: 1;
  color: rgb(138 234 244 / var(--tw-text-opacity, 1));
}
.text-accent-300\/0{
  color: rgb(138 234 244 / 0);
}
.text-accent-300\/10{
  color: rgb(138 234 244 / 0.1);
}
.text-accent-300\/100{
  color: rgb(138 234 244 / 1);
}
.text-accent-300\/15{
  color: rgb(138 234 244 / 0.15);
}
.text-accent-300\/20{
  color: rgb(138 234 244 / 0.2);
}
.text-accent-300\/25{
  color: rgb(138 234 244 / 0.25);
}
.text-accent-300\/30{
  color: rgb(138 234 244 / 0.3);
}
.text-accent-300\/35{
  color: rgb(138 234 244 / 0.35);
}
.text-accent-300\/40{
  color: rgb(138 234 244 / 0.4);
}
.text-accent-300\/45{
  color: rgb(138 234 244 / 0.45);
}
.text-accent-300\/5{
  color: rgb(138 234 244 / 0.05);
}
.text-accent-300\/50{
  color: rgb(138 234 244 / 0.5);
}
.text-accent-300\/55{
  color: rgb(138 234 244 / 0.55);
}
.text-accent-300\/60{
  color: rgb(138 234 244 / 0.6);
}
.text-accent-300\/65{
  color: rgb(138 234 244 / 0.65);
}
.text-accent-300\/70{
  color: rgb(138 234 244 / 0.7);
}
.text-accent-300\/75{
  color: rgb(138 234 244 / 0.75);
}
.text-accent-300\/80{
  color: rgb(138 234 244 / 0.8);
}
.text-accent-300\/85{
  color: rgb(138 234 244 / 0.85);
}
.text-accent-300\/90{
  color: rgb(138 234 244 / 0.9);
}
.text-accent-300\/95{
  color: rgb(138 234 244 / 0.95);
}
.text-accent-400{
  --tw-text-opacity: 1;
  color: rgb(118 222 234 / var(--tw-text-opacity, 1));
}
.text-accent-400\/0{
  color: rgb(118 222 234 / 0);
}
.text-accent-400\/10{
  color: rgb(118 222 234 / 0.1);
}
.text-accent-400\/100{
  color: rgb(118 222 234 / 1);
}
.text-accent-400\/15{
  color: rgb(118 222 234 / 0.15);
}
.text-accent-400\/20{
  color: rgb(118 222 234 / 0.2);
}
.text-accent-400\/25{
  color: rgb(118 222 234 / 0.25);
}
.text-accent-400\/30{
  color: rgb(118 222 234 / 0.3);
}
.text-accent-400\/35{
  color: rgb(118 222 234 / 0.35);
}
.text-accent-400\/40{
  color: rgb(118 222 234 / 0.4);
}
.text-accent-400\/45{
  color: rgb(118 222 234 / 0.45);
}
.text-accent-400\/5{
  color: rgb(118 222 234 / 0.05);
}
.text-accent-400\/50{
  color: rgb(118 222 234 / 0.5);
}
.text-accent-400\/55{
  color: rgb(118 222 234 / 0.55);
}
.text-accent-400\/60{
  color: rgb(118 222 234 / 0.6);
}
.text-accent-400\/65{
  color: rgb(118 222 234 / 0.65);
}
.text-accent-400\/70{
  color: rgb(118 222 234 / 0.7);
}
.text-accent-400\/75{
  color: rgb(118 222 234 / 0.75);
}
.text-accent-400\/80{
  color: rgb(118 222 234 / 0.8);
}
.text-accent-400\/85{
  color: rgb(118 222 234 / 0.85);
}
.text-accent-400\/90{
  color: rgb(118 222 234 / 0.9);
}
.text-accent-400\/95{
  color: rgb(118 222 234 / 0.95);
}
.text-accent-500{
  --tw-text-opacity: 1;
  color: rgb(122 215 225 / var(--tw-text-opacity, 1));
}
.text-accent-500\/0{
  color: rgb(122 215 225 / 0);
}
.text-accent-500\/10{
  color: rgb(122 215 225 / 0.1);
}
.text-accent-500\/100{
  color: rgb(122 215 225 / 1);
}
.text-accent-500\/15{
  color: rgb(122 215 225 / 0.15);
}
.text-accent-500\/20{
  color: rgb(122 215 225 / 0.2);
}
.text-accent-500\/25{
  color: rgb(122 215 225 / 0.25);
}
.text-accent-500\/30{
  color: rgb(122 215 225 / 0.3);
}
.text-accent-500\/35{
  color: rgb(122 215 225 / 0.35);
}
.text-accent-500\/40{
  color: rgb(122 215 225 / 0.4);
}
.text-accent-500\/45{
  color: rgb(122 215 225 / 0.45);
}
.text-accent-500\/5{
  color: rgb(122 215 225 / 0.05);
}
.text-accent-500\/50{
  color: rgb(122 215 225 / 0.5);
}
.text-accent-500\/55{
  color: rgb(122 215 225 / 0.55);
}
.text-accent-500\/60{
  color: rgb(122 215 225 / 0.6);
}
.text-accent-500\/65{
  color: rgb(122 215 225 / 0.65);
}
.text-accent-500\/70{
  color: rgb(122 215 225 / 0.7);
}
.text-accent-500\/75{
  color: rgb(122 215 225 / 0.75);
}
.text-accent-500\/80{
  color: rgb(122 215 225 / 0.8);
}
.text-accent-500\/85{
  color: rgb(122 215 225 / 0.85);
}
.text-accent-500\/90{
  color: rgb(122 215 225 / 0.9);
}
.text-accent-500\/95{
  color: rgb(122 215 225 / 0.95);
}
.text-accent-600{
  --tw-text-opacity: 1;
  color: rgb(17 151 166 / var(--tw-text-opacity, 1));
}
.text-accent-600\/0{
  color: rgb(17 151 166 / 0);
}
.text-accent-600\/10{
  color: rgb(17 151 166 / 0.1);
}
.text-accent-600\/100{
  color: rgb(17 151 166 / 1);
}
.text-accent-600\/15{
  color: rgb(17 151 166 / 0.15);
}
.text-accent-600\/20{
  color: rgb(17 151 166 / 0.2);
}
.text-accent-600\/25{
  color: rgb(17 151 166 / 0.25);
}
.text-accent-600\/30{
  color: rgb(17 151 166 / 0.3);
}
.text-accent-600\/35{
  color: rgb(17 151 166 / 0.35);
}
.text-accent-600\/40{
  color: rgb(17 151 166 / 0.4);
}
.text-accent-600\/45{
  color: rgb(17 151 166 / 0.45);
}
.text-accent-600\/5{
  color: rgb(17 151 166 / 0.05);
}
.text-accent-600\/50{
  color: rgb(17 151 166 / 0.5);
}
.text-accent-600\/55{
  color: rgb(17 151 166 / 0.55);
}
.text-accent-600\/60{
  color: rgb(17 151 166 / 0.6);
}
.text-accent-600\/65{
  color: rgb(17 151 166 / 0.65);
}
.text-accent-600\/70{
  color: rgb(17 151 166 / 0.7);
}
.text-accent-600\/75{
  color: rgb(17 151 166 / 0.75);
}
.text-accent-600\/80{
  color: rgb(17 151 166 / 0.8);
}
.text-accent-600\/85{
  color: rgb(17 151 166 / 0.85);
}
.text-accent-600\/90{
  color: rgb(17 151 166 / 0.9);
}
.text-accent-600\/95{
  color: rgb(17 151 166 / 0.95);
}
.text-accent-700{
  --tw-text-opacity: 1;
  color: rgb(12 124 136 / var(--tw-text-opacity, 1));
}
.text-accent-700\/0{
  color: rgb(12 124 136 / 0);
}
.text-accent-700\/10{
  color: rgb(12 124 136 / 0.1);
}
.text-accent-700\/100{
  color: rgb(12 124 136 / 1);
}
.text-accent-700\/15{
  color: rgb(12 124 136 / 0.15);
}
.text-accent-700\/20{
  color: rgb(12 124 136 / 0.2);
}
.text-accent-700\/25{
  color: rgb(12 124 136 / 0.25);
}
.text-accent-700\/30{
  color: rgb(12 124 136 / 0.3);
}
.text-accent-700\/35{
  color: rgb(12 124 136 / 0.35);
}
.text-accent-700\/40{
  color: rgb(12 124 136 / 0.4);
}
.text-accent-700\/45{
  color: rgb(12 124 136 / 0.45);
}
.text-accent-700\/5{
  color: rgb(12 124 136 / 0.05);
}
.text-accent-700\/50{
  color: rgb(12 124 136 / 0.5);
}
.text-accent-700\/55{
  color: rgb(12 124 136 / 0.55);
}
.text-accent-700\/60{
  color: rgb(12 124 136 / 0.6);
}
.text-accent-700\/65{
  color: rgb(12 124 136 / 0.65);
}
.text-accent-700\/70{
  color: rgb(12 124 136 / 0.7);
}
.text-accent-700\/75{
  color: rgb(12 124 136 / 0.75);
}
.text-accent-700\/80{
  color: rgb(12 124 136 / 0.8);
}
.text-accent-700\/85{
  color: rgb(12 124 136 / 0.85);
}
.text-accent-700\/90{
  color: rgb(12 124 136 / 0.9);
}
.text-accent-700\/95{
  color: rgb(12 124 136 / 0.95);
}
.text-black{
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-brand-decorative{
  --tw-text-opacity: 1;
  color: rgb(90 206 158 / var(--tw-text-opacity, 1));
}
.text-brand-decorative\/0{
  color: rgb(90 206 158 / 0);
}
.text-brand-decorative\/10{
  color: rgb(90 206 158 / 0.1);
}
.text-brand-decorative\/100{
  color: rgb(90 206 158 / 1);
}
.text-brand-decorative\/15{
  color: rgb(90 206 158 / 0.15);
}
.text-brand-decorative\/20{
  color: rgb(90 206 158 / 0.2);
}
.text-brand-decorative\/25{
  color: rgb(90 206 158 / 0.25);
}
.text-brand-decorative\/30{
  color: rgb(90 206 158 / 0.3);
}
.text-brand-decorative\/35{
  color: rgb(90 206 158 / 0.35);
}
.text-brand-decorative\/40{
  color: rgb(90 206 158 / 0.4);
}
.text-brand-decorative\/45{
  color: rgb(90 206 158 / 0.45);
}
.text-brand-decorative\/5{
  color: rgb(90 206 158 / 0.05);
}
.text-brand-decorative\/50{
  color: rgb(90 206 158 / 0.5);
}
.text-brand-decorative\/55{
  color: rgb(90 206 158 / 0.55);
}
.text-brand-decorative\/60{
  color: rgb(90 206 158 / 0.6);
}
.text-brand-decorative\/65{
  color: rgb(90 206 158 / 0.65);
}
.text-brand-decorative\/70{
  color: rgb(90 206 158 / 0.7);
}
.text-brand-decorative\/75{
  color: rgb(90 206 158 / 0.75);
}
.text-brand-decorative\/80{
  color: rgb(90 206 158 / 0.8);
}
.text-brand-decorative\/85{
  color: rgb(90 206 158 / 0.85);
}
.text-brand-decorative\/90{
  color: rgb(90 206 158 / 0.9);
}
.text-brand-decorative\/95{
  color: rgb(90 206 158 / 0.95);
}
.text-brand-primary{
  --tw-text-opacity: 1;
  color: rgb(46 107 104 / var(--tw-text-opacity, 1));
}
.text-brand-primary-dark{
  --tw-text-opacity: 1;
  color: rgb(31 74 71 / var(--tw-text-opacity, 1));
}
.text-brand-primary-dark\/0{
  color: rgb(31 74 71 / 0);
}
.text-brand-primary-dark\/10{
  color: rgb(31 74 71 / 0.1);
}
.text-brand-primary-dark\/100{
  color: rgb(31 74 71 / 1);
}
.text-brand-primary-dark\/15{
  color: rgb(31 74 71 / 0.15);
}
.text-brand-primary-dark\/20{
  color: rgb(31 74 71 / 0.2);
}
.text-brand-primary-dark\/25{
  color: rgb(31 74 71 / 0.25);
}
.text-brand-primary-dark\/30{
  color: rgb(31 74 71 / 0.3);
}
.text-brand-primary-dark\/35{
  color: rgb(31 74 71 / 0.35);
}
.text-brand-primary-dark\/40{
  color: rgb(31 74 71 / 0.4);
}
.text-brand-primary-dark\/45{
  color: rgb(31 74 71 / 0.45);
}
.text-brand-primary-dark\/5{
  color: rgb(31 74 71 / 0.05);
}
.text-brand-primary-dark\/50{
  color: rgb(31 74 71 / 0.5);
}
.text-brand-primary-dark\/55{
  color: rgb(31 74 71 / 0.55);
}
.text-brand-primary-dark\/60{
  color: rgb(31 74 71 / 0.6);
}
.text-brand-primary-dark\/65{
  color: rgb(31 74 71 / 0.65);
}
.text-brand-primary-dark\/70{
  color: rgb(31 74 71 / 0.7);
}
.text-brand-primary-dark\/75{
  color: rgb(31 74 71 / 0.75);
}
.text-brand-primary-dark\/80{
  color: rgb(31 74 71 / 0.8);
}
.text-brand-primary-dark\/85{
  color: rgb(31 74 71 / 0.85);
}
.text-brand-primary-dark\/90{
  color: rgb(31 74 71 / 0.9);
}
.text-brand-primary-dark\/95{
  color: rgb(31 74 71 / 0.95);
}
.text-brand-primary-darker{
  --tw-text-opacity: 1;
  color: rgb(22 54 52 / var(--tw-text-opacity, 1));
}
.text-brand-primary-darker\/0{
  color: rgb(22 54 52 / 0);
}
.text-brand-primary-darker\/10{
  color: rgb(22 54 52 / 0.1);
}
.text-brand-primary-darker\/100{
  color: rgb(22 54 52 / 1);
}
.text-brand-primary-darker\/15{
  color: rgb(22 54 52 / 0.15);
}
.text-brand-primary-darker\/20{
  color: rgb(22 54 52 / 0.2);
}
.text-brand-primary-darker\/25{
  color: rgb(22 54 52 / 0.25);
}
.text-brand-primary-darker\/30{
  color: rgb(22 54 52 / 0.3);
}
.text-brand-primary-darker\/35{
  color: rgb(22 54 52 / 0.35);
}
.text-brand-primary-darker\/40{
  color: rgb(22 54 52 / 0.4);
}
.text-brand-primary-darker\/45{
  color: rgb(22 54 52 / 0.45);
}
.text-brand-primary-darker\/5{
  color: rgb(22 54 52 / 0.05);
}
.text-brand-primary-darker\/50{
  color: rgb(22 54 52 / 0.5);
}
.text-brand-primary-darker\/55{
  color: rgb(22 54 52 / 0.55);
}
.text-brand-primary-darker\/60{
  color: rgb(22 54 52 / 0.6);
}
.text-brand-primary-darker\/65{
  color: rgb(22 54 52 / 0.65);
}
.text-brand-primary-darker\/70{
  color: rgb(22 54 52 / 0.7);
}
.text-brand-primary-darker\/75{
  color: rgb(22 54 52 / 0.75);
}
.text-brand-primary-darker\/80{
  color: rgb(22 54 52 / 0.8);
}
.text-brand-primary-darker\/85{
  color: rgb(22 54 52 / 0.85);
}
.text-brand-primary-darker\/90{
  color: rgb(22 54 52 / 0.9);
}
.text-brand-primary-darker\/95{
  color: rgb(22 54 52 / 0.95);
}
.text-brand-primary-light{
  --tw-text-opacity: 1;
  color: rgb(61 138 134 / var(--tw-text-opacity, 1));
}
.text-brand-primary-light\/0{
  color: rgb(61 138 134 / 0);
}
.text-brand-primary-light\/10{
  color: rgb(61 138 134 / 0.1);
}
.text-brand-primary-light\/100{
  color: rgb(61 138 134 / 1);
}
.text-brand-primary-light\/15{
  color: rgb(61 138 134 / 0.15);
}
.text-brand-primary-light\/20{
  color: rgb(61 138 134 / 0.2);
}
.text-brand-primary-light\/25{
  color: rgb(61 138 134 / 0.25);
}
.text-brand-primary-light\/30{
  color: rgb(61 138 134 / 0.3);
}
.text-brand-primary-light\/35{
  color: rgb(61 138 134 / 0.35);
}
.text-brand-primary-light\/40{
  color: rgb(61 138 134 / 0.4);
}
.text-brand-primary-light\/45{
  color: rgb(61 138 134 / 0.45);
}
.text-brand-primary-light\/5{
  color: rgb(61 138 134 / 0.05);
}
.text-brand-primary-light\/50{
  color: rgb(61 138 134 / 0.5);
}
.text-brand-primary-light\/55{
  color: rgb(61 138 134 / 0.55);
}
.text-brand-primary-light\/60{
  color: rgb(61 138 134 / 0.6);
}
.text-brand-primary-light\/65{
  color: rgb(61 138 134 / 0.65);
}
.text-brand-primary-light\/70{
  color: rgb(61 138 134 / 0.7);
}
.text-brand-primary-light\/75{
  color: rgb(61 138 134 / 0.75);
}
.text-brand-primary-light\/80{
  color: rgb(61 138 134 / 0.8);
}
.text-brand-primary-light\/85{
  color: rgb(61 138 134 / 0.85);
}
.text-brand-primary-light\/90{
  color: rgb(61 138 134 / 0.9);
}
.text-brand-primary-light\/95{
  color: rgb(61 138 134 / 0.95);
}
.text-brand-primary\/0{
  color: rgb(46 107 104 / 0);
}
.text-brand-primary\/10{
  color: rgb(46 107 104 / 0.1);
}
.text-brand-primary\/100{
  color: rgb(46 107 104 / 1);
}
.text-brand-primary\/15{
  color: rgb(46 107 104 / 0.15);
}
.text-brand-primary\/20{
  color: rgb(46 107 104 / 0.2);
}
.text-brand-primary\/25{
  color: rgb(46 107 104 / 0.25);
}
.text-brand-primary\/30{
  color: rgb(46 107 104 / 0.3);
}
.text-brand-primary\/35{
  color: rgb(46 107 104 / 0.35);
}
.text-brand-primary\/40{
  color: rgb(46 107 104 / 0.4);
}
.text-brand-primary\/45{
  color: rgb(46 107 104 / 0.45);
}
.text-brand-primary\/5{
  color: rgb(46 107 104 / 0.05);
}
.text-brand-primary\/50{
  color: rgb(46 107 104 / 0.5);
}
.text-brand-primary\/55{
  color: rgb(46 107 104 / 0.55);
}
.text-brand-primary\/60{
  color: rgb(46 107 104 / 0.6);
}
.text-brand-primary\/65{
  color: rgb(46 107 104 / 0.65);
}
.text-brand-primary\/70{
  color: rgb(46 107 104 / 0.7);
}
.text-brand-primary\/75{
  color: rgb(46 107 104 / 0.75);
}
.text-brand-primary\/80{
  color: rgb(46 107 104 / 0.8);
}
.text-brand-primary\/85{
  color: rgb(46 107 104 / 0.85);
}
.text-brand-primary\/90{
  color: rgb(46 107 104 / 0.9);
}
.text-brand-primary\/95{
  color: rgb(46 107 104 / 0.95);
}
.text-error{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-error-dark{
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.text-error-dark\/0{
  color: rgb(153 27 27 / 0);
}
.text-error-dark\/10{
  color: rgb(153 27 27 / 0.1);
}
.text-error-dark\/100{
  color: rgb(153 27 27 / 1);
}
.text-error-dark\/15{
  color: rgb(153 27 27 / 0.15);
}
.text-error-dark\/20{
  color: rgb(153 27 27 / 0.2);
}
.text-error-dark\/25{
  color: rgb(153 27 27 / 0.25);
}
.text-error-dark\/30{
  color: rgb(153 27 27 / 0.3);
}
.text-error-dark\/35{
  color: rgb(153 27 27 / 0.35);
}
.text-error-dark\/40{
  color: rgb(153 27 27 / 0.4);
}
.text-error-dark\/45{
  color: rgb(153 27 27 / 0.45);
}
.text-error-dark\/5{
  color: rgb(153 27 27 / 0.05);
}
.text-error-dark\/50{
  color: rgb(153 27 27 / 0.5);
}
.text-error-dark\/55{
  color: rgb(153 27 27 / 0.55);
}
.text-error-dark\/60{
  color: rgb(153 27 27 / 0.6);
}
.text-error-dark\/65{
  color: rgb(153 27 27 / 0.65);
}
.text-error-dark\/70{
  color: rgb(153 27 27 / 0.7);
}
.text-error-dark\/75{
  color: rgb(153 27 27 / 0.75);
}
.text-error-dark\/80{
  color: rgb(153 27 27 / 0.8);
}
.text-error-dark\/85{
  color: rgb(153 27 27 / 0.85);
}
.text-error-dark\/90{
  color: rgb(153 27 27 / 0.9);
}
.text-error-dark\/95{
  color: rgb(153 27 27 / 0.95);
}
.text-error-light{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-error-light\/0{
  color: rgb(220 38 38 / 0);
}
.text-error-light\/10{
  color: rgb(220 38 38 / 0.1);
}
.text-error-light\/100{
  color: rgb(220 38 38 / 1);
}
.text-error-light\/15{
  color: rgb(220 38 38 / 0.15);
}
.text-error-light\/20{
  color: rgb(220 38 38 / 0.2);
}
.text-error-light\/25{
  color: rgb(220 38 38 / 0.25);
}
.text-error-light\/30{
  color: rgb(220 38 38 / 0.3);
}
.text-error-light\/35{
  color: rgb(220 38 38 / 0.35);
}
.text-error-light\/40{
  color: rgb(220 38 38 / 0.4);
}
.text-error-light\/45{
  color: rgb(220 38 38 / 0.45);
}
.text-error-light\/5{
  color: rgb(220 38 38 / 0.05);
}
.text-error-light\/50{
  color: rgb(220 38 38 / 0.5);
}
.text-error-light\/55{
  color: rgb(220 38 38 / 0.55);
}
.text-error-light\/60{
  color: rgb(220 38 38 / 0.6);
}
.text-error-light\/65{
  color: rgb(220 38 38 / 0.65);
}
.text-error-light\/70{
  color: rgb(220 38 38 / 0.7);
}
.text-error-light\/75{
  color: rgb(220 38 38 / 0.75);
}
.text-error-light\/80{
  color: rgb(220 38 38 / 0.8);
}
.text-error-light\/85{
  color: rgb(220 38 38 / 0.85);
}
.text-error-light\/90{
  color: rgb(220 38 38 / 0.9);
}
.text-error-light\/95{
  color: rgb(220 38 38 / 0.95);
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-grayscale-100{
  --tw-text-opacity: 1;
  color: rgb(247 247 247 / var(--tw-text-opacity, 1));
}
.text-grayscale-100\/0{
  color: rgb(247 247 247 / 0);
}
.text-grayscale-100\/10{
  color: rgb(247 247 247 / 0.1);
}
.text-grayscale-100\/100{
  color: rgb(247 247 247 / 1);
}
.text-grayscale-100\/15{
  color: rgb(247 247 247 / 0.15);
}
.text-grayscale-100\/20{
  color: rgb(247 247 247 / 0.2);
}
.text-grayscale-100\/25{
  color: rgb(247 247 247 / 0.25);
}
.text-grayscale-100\/30{
  color: rgb(247 247 247 / 0.3);
}
.text-grayscale-100\/35{
  color: rgb(247 247 247 / 0.35);
}
.text-grayscale-100\/40{
  color: rgb(247 247 247 / 0.4);
}
.text-grayscale-100\/45{
  color: rgb(247 247 247 / 0.45);
}
.text-grayscale-100\/5{
  color: rgb(247 247 247 / 0.05);
}
.text-grayscale-100\/50{
  color: rgb(247 247 247 / 0.5);
}
.text-grayscale-100\/55{
  color: rgb(247 247 247 / 0.55);
}
.text-grayscale-100\/60{
  color: rgb(247 247 247 / 0.6);
}
.text-grayscale-100\/65{
  color: rgb(247 247 247 / 0.65);
}
.text-grayscale-100\/70{
  color: rgb(247 247 247 / 0.7);
}
.text-grayscale-100\/75{
  color: rgb(247 247 247 / 0.75);
}
.text-grayscale-100\/80{
  color: rgb(247 247 247 / 0.8);
}
.text-grayscale-100\/85{
  color: rgb(247 247 247 / 0.85);
}
.text-grayscale-100\/90{
  color: rgb(247 247 247 / 0.9);
}
.text-grayscale-100\/95{
  color: rgb(247 247 247 / 0.95);
}
.text-grayscale-200{
  --tw-text-opacity: 1;
  color: rgb(242 242 242 / var(--tw-text-opacity, 1));
}
.text-grayscale-200\/0{
  color: rgb(242 242 242 / 0);
}
.text-grayscale-200\/10{
  color: rgb(242 242 242 / 0.1);
}
.text-grayscale-200\/100{
  color: rgb(242 242 242 / 1);
}
.text-grayscale-200\/15{
  color: rgb(242 242 242 / 0.15);
}
.text-grayscale-200\/20{
  color: rgb(242 242 242 / 0.2);
}
.text-grayscale-200\/25{
  color: rgb(242 242 242 / 0.25);
}
.text-grayscale-200\/30{
  color: rgb(242 242 242 / 0.3);
}
.text-grayscale-200\/35{
  color: rgb(242 242 242 / 0.35);
}
.text-grayscale-200\/40{
  color: rgb(242 242 242 / 0.4);
}
.text-grayscale-200\/45{
  color: rgb(242 242 242 / 0.45);
}
.text-grayscale-200\/5{
  color: rgb(242 242 242 / 0.05);
}
.text-grayscale-200\/50{
  color: rgb(242 242 242 / 0.5);
}
.text-grayscale-200\/55{
  color: rgb(242 242 242 / 0.55);
}
.text-grayscale-200\/60{
  color: rgb(242 242 242 / 0.6);
}
.text-grayscale-200\/65{
  color: rgb(242 242 242 / 0.65);
}
.text-grayscale-200\/70{
  color: rgb(242 242 242 / 0.7);
}
.text-grayscale-200\/75{
  color: rgb(242 242 242 / 0.75);
}
.text-grayscale-200\/80{
  color: rgb(242 242 242 / 0.8);
}
.text-grayscale-200\/85{
  color: rgb(242 242 242 / 0.85);
}
.text-grayscale-200\/90{
  color: rgb(242 242 242 / 0.9);
}
.text-grayscale-200\/95{
  color: rgb(242 242 242 / 0.95);
}
.text-grayscale-300{
  --tw-text-opacity: 1;
  color: rgb(149 149 149 / var(--tw-text-opacity, 1));
}
.text-grayscale-300\/0{
  color: rgb(149 149 149 / 0);
}
.text-grayscale-300\/10{
  color: rgb(149 149 149 / 0.1);
}
.text-grayscale-300\/100{
  color: rgb(149 149 149 / 1);
}
.text-grayscale-300\/15{
  color: rgb(149 149 149 / 0.15);
}
.text-grayscale-300\/20{
  color: rgb(149 149 149 / 0.2);
}
.text-grayscale-300\/25{
  color: rgb(149 149 149 / 0.25);
}
.text-grayscale-300\/30{
  color: rgb(149 149 149 / 0.3);
}
.text-grayscale-300\/35{
  color: rgb(149 149 149 / 0.35);
}
.text-grayscale-300\/40{
  color: rgb(149 149 149 / 0.4);
}
.text-grayscale-300\/45{
  color: rgb(149 149 149 / 0.45);
}
.text-grayscale-300\/5{
  color: rgb(149 149 149 / 0.05);
}
.text-grayscale-300\/50{
  color: rgb(149 149 149 / 0.5);
}
.text-grayscale-300\/55{
  color: rgb(149 149 149 / 0.55);
}
.text-grayscale-300\/60{
  color: rgb(149 149 149 / 0.6);
}
.text-grayscale-300\/65{
  color: rgb(149 149 149 / 0.65);
}
.text-grayscale-300\/70{
  color: rgb(149 149 149 / 0.7);
}
.text-grayscale-300\/75{
  color: rgb(149 149 149 / 0.75);
}
.text-grayscale-300\/80{
  color: rgb(149 149 149 / 0.8);
}
.text-grayscale-300\/85{
  color: rgb(149 149 149 / 0.85);
}
.text-grayscale-300\/90{
  color: rgb(149 149 149 / 0.9);
}
.text-grayscale-300\/95{
  color: rgb(149 149 149 / 0.95);
}
.text-grayscale-400{
  --tw-text-opacity: 1;
  color: rgb(179 179 179 / var(--tw-text-opacity, 1));
}
.text-grayscale-400\/0{
  color: rgb(179 179 179 / 0);
}
.text-grayscale-400\/10{
  color: rgb(179 179 179 / 0.1);
}
.text-grayscale-400\/100{
  color: rgb(179 179 179 / 1);
}
.text-grayscale-400\/15{
  color: rgb(179 179 179 / 0.15);
}
.text-grayscale-400\/20{
  color: rgb(179 179 179 / 0.2);
}
.text-grayscale-400\/25{
  color: rgb(179 179 179 / 0.25);
}
.text-grayscale-400\/30{
  color: rgb(179 179 179 / 0.3);
}
.text-grayscale-400\/35{
  color: rgb(179 179 179 / 0.35);
}
.text-grayscale-400\/40{
  color: rgb(179 179 179 / 0.4);
}
.text-grayscale-400\/45{
  color: rgb(179 179 179 / 0.45);
}
.text-grayscale-400\/5{
  color: rgb(179 179 179 / 0.05);
}
.text-grayscale-400\/50{
  color: rgb(179 179 179 / 0.5);
}
.text-grayscale-400\/55{
  color: rgb(179 179 179 / 0.55);
}
.text-grayscale-400\/60{
  color: rgb(179 179 179 / 0.6);
}
.text-grayscale-400\/65{
  color: rgb(179 179 179 / 0.65);
}
.text-grayscale-400\/70{
  color: rgb(179 179 179 / 0.7);
}
.text-grayscale-400\/75{
  color: rgb(179 179 179 / 0.75);
}
.text-grayscale-400\/80{
  color: rgb(179 179 179 / 0.8);
}
.text-grayscale-400\/85{
  color: rgb(179 179 179 / 0.85);
}
.text-grayscale-400\/90{
  color: rgb(179 179 179 / 0.9);
}
.text-grayscale-400\/95{
  color: rgb(179 179 179 / 0.95);
}
.text-grayscale-500{
  --tw-text-opacity: 1;
  color: rgb(110 110 110 / var(--tw-text-opacity, 1));
}
.text-grayscale-500\/0{
  color: rgb(110 110 110 / 0);
}
.text-grayscale-500\/10{
  color: rgb(110 110 110 / 0.1);
}
.text-grayscale-500\/100{
  color: rgb(110 110 110 / 1);
}
.text-grayscale-500\/15{
  color: rgb(110 110 110 / 0.15);
}
.text-grayscale-500\/20{
  color: rgb(110 110 110 / 0.2);
}
.text-grayscale-500\/25{
  color: rgb(110 110 110 / 0.25);
}
.text-grayscale-500\/30{
  color: rgb(110 110 110 / 0.3);
}
.text-grayscale-500\/35{
  color: rgb(110 110 110 / 0.35);
}
.text-grayscale-500\/40{
  color: rgb(110 110 110 / 0.4);
}
.text-grayscale-500\/45{
  color: rgb(110 110 110 / 0.45);
}
.text-grayscale-500\/5{
  color: rgb(110 110 110 / 0.05);
}
.text-grayscale-500\/50{
  color: rgb(110 110 110 / 0.5);
}
.text-grayscale-500\/55{
  color: rgb(110 110 110 / 0.55);
}
.text-grayscale-500\/60{
  color: rgb(110 110 110 / 0.6);
}
.text-grayscale-500\/65{
  color: rgb(110 110 110 / 0.65);
}
.text-grayscale-500\/70{
  color: rgb(110 110 110 / 0.7);
}
.text-grayscale-500\/75{
  color: rgb(110 110 110 / 0.75);
}
.text-grayscale-500\/80{
  color: rgb(110 110 110 / 0.8);
}
.text-grayscale-500\/85{
  color: rgb(110 110 110 / 0.85);
}
.text-grayscale-500\/90{
  color: rgb(110 110 110 / 0.9);
}
.text-grayscale-500\/95{
  color: rgb(110 110 110 / 0.95);
}
.text-grayscale-600{
  --tw-text-opacity: 1;
  color: rgb(73 73 80 / var(--tw-text-opacity, 1));
}
.text-grayscale-600\/0{
  color: rgb(73 73 80 / 0);
}
.text-grayscale-600\/10{
  color: rgb(73 73 80 / 0.1);
}
.text-grayscale-600\/100{
  color: rgb(73 73 80 / 1);
}
.text-grayscale-600\/15{
  color: rgb(73 73 80 / 0.15);
}
.text-grayscale-600\/20{
  color: rgb(73 73 80 / 0.2);
}
.text-grayscale-600\/25{
  color: rgb(73 73 80 / 0.25);
}
.text-grayscale-600\/30{
  color: rgb(73 73 80 / 0.3);
}
.text-grayscale-600\/35{
  color: rgb(73 73 80 / 0.35);
}
.text-grayscale-600\/40{
  color: rgb(73 73 80 / 0.4);
}
.text-grayscale-600\/45{
  color: rgb(73 73 80 / 0.45);
}
.text-grayscale-600\/5{
  color: rgb(73 73 80 / 0.05);
}
.text-grayscale-600\/50{
  color: rgb(73 73 80 / 0.5);
}
.text-grayscale-600\/55{
  color: rgb(73 73 80 / 0.55);
}
.text-grayscale-600\/60{
  color: rgb(73 73 80 / 0.6);
}
.text-grayscale-600\/65{
  color: rgb(73 73 80 / 0.65);
}
.text-grayscale-600\/70{
  color: rgb(73 73 80 / 0.7);
}
.text-grayscale-600\/75{
  color: rgb(73 73 80 / 0.75);
}
.text-grayscale-600\/80{
  color: rgb(73 73 80 / 0.8);
}
.text-grayscale-600\/85{
  color: rgb(73 73 80 / 0.85);
}
.text-grayscale-600\/90{
  color: rgb(73 73 80 / 0.9);
}
.text-grayscale-600\/95{
  color: rgb(73 73 80 / 0.95);
}
.text-grayscale-700{
  --tw-text-opacity: 1;
  color: rgb(23 23 28 / var(--tw-text-opacity, 1));
}
.text-grayscale-700\/0{
  color: rgb(23 23 28 / 0);
}
.text-grayscale-700\/10{
  color: rgb(23 23 28 / 0.1);
}
.text-grayscale-700\/100{
  color: rgb(23 23 28 / 1);
}
.text-grayscale-700\/15{
  color: rgb(23 23 28 / 0.15);
}
.text-grayscale-700\/20{
  color: rgb(23 23 28 / 0.2);
}
.text-grayscale-700\/25{
  color: rgb(23 23 28 / 0.25);
}
.text-grayscale-700\/30{
  color: rgb(23 23 28 / 0.3);
}
.text-grayscale-700\/35{
  color: rgb(23 23 28 / 0.35);
}
.text-grayscale-700\/40{
  color: rgb(23 23 28 / 0.4);
}
.text-grayscale-700\/45{
  color: rgb(23 23 28 / 0.45);
}
.text-grayscale-700\/5{
  color: rgb(23 23 28 / 0.05);
}
.text-grayscale-700\/50{
  color: rgb(23 23 28 / 0.5);
}
.text-grayscale-700\/55{
  color: rgb(23 23 28 / 0.55);
}
.text-grayscale-700\/60{
  color: rgb(23 23 28 / 0.6);
}
.text-grayscale-700\/65{
  color: rgb(23 23 28 / 0.65);
}
.text-grayscale-700\/70{
  color: rgb(23 23 28 / 0.7);
}
.text-grayscale-700\/75{
  color: rgb(23 23 28 / 0.75);
}
.text-grayscale-700\/80{
  color: rgb(23 23 28 / 0.8);
}
.text-grayscale-700\/85{
  color: rgb(23 23 28 / 0.85);
}
.text-grayscale-700\/90{
  color: rgb(23 23 28 / 0.9);
}
.text-grayscale-700\/95{
  color: rgb(23 23 28 / 0.95);
}
.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(46 107 104 / var(--tw-text-opacity, 1));
}
.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(37 86 81 / var(--tw-text-opacity, 1));
}
.text-green-800{
  --tw-text-opacity: 1;
  color: rgb(22 54 52 / var(--tw-text-opacity, 1));
}
.text-info-dark{
  --tw-text-opacity: 1;
  color: rgb(7 89 133 / var(--tw-text-opacity, 1));
}
.text-info-dark\/0{
  color: rgb(7 89 133 / 0);
}
.text-info-dark\/10{
  color: rgb(7 89 133 / 0.1);
}
.text-info-dark\/100{
  color: rgb(7 89 133 / 1);
}
.text-info-dark\/15{
  color: rgb(7 89 133 / 0.15);
}
.text-info-dark\/20{
  color: rgb(7 89 133 / 0.2);
}
.text-info-dark\/25{
  color: rgb(7 89 133 / 0.25);
}
.text-info-dark\/30{
  color: rgb(7 89 133 / 0.3);
}
.text-info-dark\/35{
  color: rgb(7 89 133 / 0.35);
}
.text-info-dark\/40{
  color: rgb(7 89 133 / 0.4);
}
.text-info-dark\/45{
  color: rgb(7 89 133 / 0.45);
}
.text-info-dark\/5{
  color: rgb(7 89 133 / 0.05);
}
.text-info-dark\/50{
  color: rgb(7 89 133 / 0.5);
}
.text-info-dark\/55{
  color: rgb(7 89 133 / 0.55);
}
.text-info-dark\/60{
  color: rgb(7 89 133 / 0.6);
}
.text-info-dark\/65{
  color: rgb(7 89 133 / 0.65);
}
.text-info-dark\/70{
  color: rgb(7 89 133 / 0.7);
}
.text-info-dark\/75{
  color: rgb(7 89 133 / 0.75);
}
.text-info-dark\/80{
  color: rgb(7 89 133 / 0.8);
}
.text-info-dark\/85{
  color: rgb(7 89 133 / 0.85);
}
.text-info-dark\/90{
  color: rgb(7 89 133 / 0.9);
}
.text-info-dark\/95{
  color: rgb(7 89 133 / 0.95);
}
.text-info-light{
  --tw-text-opacity: 1;
  color: rgb(8 145 178 / var(--tw-text-opacity, 1));
}
.text-info-light\/0{
  color: rgb(8 145 178 / 0);
}
.text-info-light\/10{
  color: rgb(8 145 178 / 0.1);
}
.text-info-light\/100{
  color: rgb(8 145 178 / 1);
}
.text-info-light\/15{
  color: rgb(8 145 178 / 0.15);
}
.text-info-light\/20{
  color: rgb(8 145 178 / 0.2);
}
.text-info-light\/25{
  color: rgb(8 145 178 / 0.25);
}
.text-info-light\/30{
  color: rgb(8 145 178 / 0.3);
}
.text-info-light\/35{
  color: rgb(8 145 178 / 0.35);
}
.text-info-light\/40{
  color: rgb(8 145 178 / 0.4);
}
.text-info-light\/45{
  color: rgb(8 145 178 / 0.45);
}
.text-info-light\/5{
  color: rgb(8 145 178 / 0.05);
}
.text-info-light\/50{
  color: rgb(8 145 178 / 0.5);
}
.text-info-light\/55{
  color: rgb(8 145 178 / 0.55);
}
.text-info-light\/60{
  color: rgb(8 145 178 / 0.6);
}
.text-info-light\/65{
  color: rgb(8 145 178 / 0.65);
}
.text-info-light\/70{
  color: rgb(8 145 178 / 0.7);
}
.text-info-light\/75{
  color: rgb(8 145 178 / 0.75);
}
.text-info-light\/80{
  color: rgb(8 145 178 / 0.8);
}
.text-info-light\/85{
  color: rgb(8 145 178 / 0.85);
}
.text-info-light\/90{
  color: rgb(8 145 178 / 0.9);
}
.text-info-light\/95{
  color: rgb(8 145 178 / 0.95);
}
.text-inherit{
  color: inherit;
}
.text-neutral-100{
  --tw-text-opacity: 1;
  color: rgb(242 242 242 / var(--tw-text-opacity, 1));
}
.text-neutral-100\/0{
  color: rgb(242 242 242 / 0);
}
.text-neutral-100\/10{
  color: rgb(242 242 242 / 0.1);
}
.text-neutral-100\/100{
  color: rgb(242 242 242 / 1);
}
.text-neutral-100\/15{
  color: rgb(242 242 242 / 0.15);
}
.text-neutral-100\/20{
  color: rgb(242 242 242 / 0.2);
}
.text-neutral-100\/25{
  color: rgb(242 242 242 / 0.25);
}
.text-neutral-100\/30{
  color: rgb(242 242 242 / 0.3);
}
.text-neutral-100\/35{
  color: rgb(242 242 242 / 0.35);
}
.text-neutral-100\/40{
  color: rgb(242 242 242 / 0.4);
}
.text-neutral-100\/45{
  color: rgb(242 242 242 / 0.45);
}
.text-neutral-100\/5{
  color: rgb(242 242 242 / 0.05);
}
.text-neutral-100\/50{
  color: rgb(242 242 242 / 0.5);
}
.text-neutral-100\/55{
  color: rgb(242 242 242 / 0.55);
}
.text-neutral-100\/60{
  color: rgb(242 242 242 / 0.6);
}
.text-neutral-100\/65{
  color: rgb(242 242 242 / 0.65);
}
.text-neutral-100\/70{
  color: rgb(242 242 242 / 0.7);
}
.text-neutral-100\/75{
  color: rgb(242 242 242 / 0.75);
}
.text-neutral-100\/80{
  color: rgb(242 242 242 / 0.8);
}
.text-neutral-100\/85{
  color: rgb(242 242 242 / 0.85);
}
.text-neutral-100\/90{
  color: rgb(242 242 242 / 0.9);
}
.text-neutral-100\/95{
  color: rgb(242 242 242 / 0.95);
}
.text-neutral-200{
  --tw-text-opacity: 1;
  color: rgb(229 229 229 / var(--tw-text-opacity, 1));
}
.text-neutral-200\/0{
  color: rgb(229 229 229 / 0);
}
.text-neutral-200\/10{
  color: rgb(229 229 229 / 0.1);
}
.text-neutral-200\/100{
  color: rgb(229 229 229 / 1);
}
.text-neutral-200\/15{
  color: rgb(229 229 229 / 0.15);
}
.text-neutral-200\/20{
  color: rgb(229 229 229 / 0.2);
}
.text-neutral-200\/25{
  color: rgb(229 229 229 / 0.25);
}
.text-neutral-200\/30{
  color: rgb(229 229 229 / 0.3);
}
.text-neutral-200\/35{
  color: rgb(229 229 229 / 0.35);
}
.text-neutral-200\/40{
  color: rgb(229 229 229 / 0.4);
}
.text-neutral-200\/45{
  color: rgb(229 229 229 / 0.45);
}
.text-neutral-200\/5{
  color: rgb(229 229 229 / 0.05);
}
.text-neutral-200\/50{
  color: rgb(229 229 229 / 0.5);
}
.text-neutral-200\/55{
  color: rgb(229 229 229 / 0.55);
}
.text-neutral-200\/60{
  color: rgb(229 229 229 / 0.6);
}
.text-neutral-200\/65{
  color: rgb(229 229 229 / 0.65);
}
.text-neutral-200\/70{
  color: rgb(229 229 229 / 0.7);
}
.text-neutral-200\/75{
  color: rgb(229 229 229 / 0.75);
}
.text-neutral-200\/80{
  color: rgb(229 229 229 / 0.8);
}
.text-neutral-200\/85{
  color: rgb(229 229 229 / 0.85);
}
.text-neutral-200\/90{
  color: rgb(229 229 229 / 0.9);
}
.text-neutral-200\/95{
  color: rgb(229 229 229 / 0.95);
}
.text-neutral-300{
  --tw-text-opacity: 1;
  color: rgb(212 212 212 / var(--tw-text-opacity, 1));
}
.text-neutral-300\/0{
  color: rgb(212 212 212 / 0);
}
.text-neutral-300\/10{
  color: rgb(212 212 212 / 0.1);
}
.text-neutral-300\/100{
  color: rgb(212 212 212 / 1);
}
.text-neutral-300\/15{
  color: rgb(212 212 212 / 0.15);
}
.text-neutral-300\/20{
  color: rgb(212 212 212 / 0.2);
}
.text-neutral-300\/25{
  color: rgb(212 212 212 / 0.25);
}
.text-neutral-300\/30{
  color: rgb(212 212 212 / 0.3);
}
.text-neutral-300\/35{
  color: rgb(212 212 212 / 0.35);
}
.text-neutral-300\/40{
  color: rgb(212 212 212 / 0.4);
}
.text-neutral-300\/45{
  color: rgb(212 212 212 / 0.45);
}
.text-neutral-300\/5{
  color: rgb(212 212 212 / 0.05);
}
.text-neutral-300\/50{
  color: rgb(212 212 212 / 0.5);
}
.text-neutral-300\/55{
  color: rgb(212 212 212 / 0.55);
}
.text-neutral-300\/60{
  color: rgb(212 212 212 / 0.6);
}
.text-neutral-300\/65{
  color: rgb(212 212 212 / 0.65);
}
.text-neutral-300\/70{
  color: rgb(212 212 212 / 0.7);
}
.text-neutral-300\/75{
  color: rgb(212 212 212 / 0.75);
}
.text-neutral-300\/80{
  color: rgb(212 212 212 / 0.8);
}
.text-neutral-300\/85{
  color: rgb(212 212 212 / 0.85);
}
.text-neutral-300\/90{
  color: rgb(212 212 212 / 0.9);
}
.text-neutral-300\/95{
  color: rgb(212 212 212 / 0.95);
}
.text-neutral-400{
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1));
}
.text-neutral-400\/0{
  color: rgb(163 163 163 / 0);
}
.text-neutral-400\/10{
  color: rgb(163 163 163 / 0.1);
}
.text-neutral-400\/100{
  color: rgb(163 163 163 / 1);
}
.text-neutral-400\/15{
  color: rgb(163 163 163 / 0.15);
}
.text-neutral-400\/20{
  color: rgb(163 163 163 / 0.2);
}
.text-neutral-400\/25{
  color: rgb(163 163 163 / 0.25);
}
.text-neutral-400\/30{
  color: rgb(163 163 163 / 0.3);
}
.text-neutral-400\/35{
  color: rgb(163 163 163 / 0.35);
}
.text-neutral-400\/40{
  color: rgb(163 163 163 / 0.4);
}
.text-neutral-400\/45{
  color: rgb(163 163 163 / 0.45);
}
.text-neutral-400\/5{
  color: rgb(163 163 163 / 0.05);
}
.text-neutral-400\/50{
  color: rgb(163 163 163 / 0.5);
}
.text-neutral-400\/55{
  color: rgb(163 163 163 / 0.55);
}
.text-neutral-400\/60{
  color: rgb(163 163 163 / 0.6);
}
.text-neutral-400\/65{
  color: rgb(163 163 163 / 0.65);
}
.text-neutral-400\/70{
  color: rgb(163 163 163 / 0.7);
}
.text-neutral-400\/75{
  color: rgb(163 163 163 / 0.75);
}
.text-neutral-400\/80{
  color: rgb(163 163 163 / 0.8);
}
.text-neutral-400\/85{
  color: rgb(163 163 163 / 0.85);
}
.text-neutral-400\/90{
  color: rgb(163 163 163 / 0.9);
}
.text-neutral-400\/95{
  color: rgb(163 163 163 / 0.95);
}
.text-neutral-50{
  --tw-text-opacity: 1;
  color: rgb(250 250 250 / var(--tw-text-opacity, 1));
}
.text-neutral-50\/0{
  color: rgb(250 250 250 / 0);
}
.text-neutral-50\/10{
  color: rgb(250 250 250 / 0.1);
}
.text-neutral-50\/100{
  color: rgb(250 250 250 / 1);
}
.text-neutral-50\/15{
  color: rgb(250 250 250 / 0.15);
}
.text-neutral-50\/20{
  color: rgb(250 250 250 / 0.2);
}
.text-neutral-50\/25{
  color: rgb(250 250 250 / 0.25);
}
.text-neutral-50\/30{
  color: rgb(250 250 250 / 0.3);
}
.text-neutral-50\/35{
  color: rgb(250 250 250 / 0.35);
}
.text-neutral-50\/40{
  color: rgb(250 250 250 / 0.4);
}
.text-neutral-50\/45{
  color: rgb(250 250 250 / 0.45);
}
.text-neutral-50\/5{
  color: rgb(250 250 250 / 0.05);
}
.text-neutral-50\/50{
  color: rgb(250 250 250 / 0.5);
}
.text-neutral-50\/55{
  color: rgb(250 250 250 / 0.55);
}
.text-neutral-50\/60{
  color: rgb(250 250 250 / 0.6);
}
.text-neutral-50\/65{
  color: rgb(250 250 250 / 0.65);
}
.text-neutral-50\/70{
  color: rgb(250 250 250 / 0.7);
}
.text-neutral-50\/75{
  color: rgb(250 250 250 / 0.75);
}
.text-neutral-50\/80{
  color: rgb(250 250 250 / 0.8);
}
.text-neutral-50\/85{
  color: rgb(250 250 250 / 0.85);
}
.text-neutral-50\/90{
  color: rgb(250 250 250 / 0.9);
}
.text-neutral-50\/95{
  color: rgb(250 250 250 / 0.95);
}
.text-neutral-500{
  --tw-text-opacity: 1;
  color: rgb(140 140 140 / var(--tw-text-opacity, 1));
}
.text-neutral-500\/0{
  color: rgb(140 140 140 / 0);
}
.text-neutral-500\/10{
  color: rgb(140 140 140 / 0.1);
}
.text-neutral-500\/100{
  color: rgb(140 140 140 / 1);
}
.text-neutral-500\/15{
  color: rgb(140 140 140 / 0.15);
}
.text-neutral-500\/20{
  color: rgb(140 140 140 / 0.2);
}
.text-neutral-500\/25{
  color: rgb(140 140 140 / 0.25);
}
.text-neutral-500\/30{
  color: rgb(140 140 140 / 0.3);
}
.text-neutral-500\/35{
  color: rgb(140 140 140 / 0.35);
}
.text-neutral-500\/40{
  color: rgb(140 140 140 / 0.4);
}
.text-neutral-500\/45{
  color: rgb(140 140 140 / 0.45);
}
.text-neutral-500\/5{
  color: rgb(140 140 140 / 0.05);
}
.text-neutral-500\/50{
  color: rgb(140 140 140 / 0.5);
}
.text-neutral-500\/55{
  color: rgb(140 140 140 / 0.55);
}
.text-neutral-500\/60{
  color: rgb(140 140 140 / 0.6);
}
.text-neutral-500\/65{
  color: rgb(140 140 140 / 0.65);
}
.text-neutral-500\/70{
  color: rgb(140 140 140 / 0.7);
}
.text-neutral-500\/75{
  color: rgb(140 140 140 / 0.75);
}
.text-neutral-500\/80{
  color: rgb(140 140 140 / 0.8);
}
.text-neutral-500\/85{
  color: rgb(140 140 140 / 0.85);
}
.text-neutral-500\/90{
  color: rgb(140 140 140 / 0.9);
}
.text-neutral-500\/95{
  color: rgb(140 140 140 / 0.95);
}
.text-neutral-600{
  --tw-text-opacity: 1;
  color: rgb(110 110 110 / var(--tw-text-opacity, 1));
}
.text-neutral-600\/0{
  color: rgb(110 110 110 / 0);
}
.text-neutral-600\/10{
  color: rgb(110 110 110 / 0.1);
}
.text-neutral-600\/100{
  color: rgb(110 110 110 / 1);
}
.text-neutral-600\/15{
  color: rgb(110 110 110 / 0.15);
}
.text-neutral-600\/20{
  color: rgb(110 110 110 / 0.2);
}
.text-neutral-600\/25{
  color: rgb(110 110 110 / 0.25);
}
.text-neutral-600\/30{
  color: rgb(110 110 110 / 0.3);
}
.text-neutral-600\/35{
  color: rgb(110 110 110 / 0.35);
}
.text-neutral-600\/40{
  color: rgb(110 110 110 / 0.4);
}
.text-neutral-600\/45{
  color: rgb(110 110 110 / 0.45);
}
.text-neutral-600\/5{
  color: rgb(110 110 110 / 0.05);
}
.text-neutral-600\/50{
  color: rgb(110 110 110 / 0.5);
}
.text-neutral-600\/55{
  color: rgb(110 110 110 / 0.55);
}
.text-neutral-600\/60{
  color: rgb(110 110 110 / 0.6);
}
.text-neutral-600\/65{
  color: rgb(110 110 110 / 0.65);
}
.text-neutral-600\/70{
  color: rgb(110 110 110 / 0.7);
}
.text-neutral-600\/75{
  color: rgb(110 110 110 / 0.75);
}
.text-neutral-600\/80{
  color: rgb(110 110 110 / 0.8);
}
.text-neutral-600\/85{
  color: rgb(110 110 110 / 0.85);
}
.text-neutral-600\/90{
  color: rgb(110 110 110 / 0.9);
}
.text-neutral-600\/95{
  color: rgb(110 110 110 / 0.95);
}
.text-neutral-700{
  --tw-text-opacity: 1;
  color: rgb(82 82 82 / var(--tw-text-opacity, 1));
}
.text-neutral-700\/0{
  color: rgb(82 82 82 / 0);
}
.text-neutral-700\/10{
  color: rgb(82 82 82 / 0.1);
}
.text-neutral-700\/100{
  color: rgb(82 82 82 / 1);
}
.text-neutral-700\/15{
  color: rgb(82 82 82 / 0.15);
}
.text-neutral-700\/20{
  color: rgb(82 82 82 / 0.2);
}
.text-neutral-700\/25{
  color: rgb(82 82 82 / 0.25);
}
.text-neutral-700\/30{
  color: rgb(82 82 82 / 0.3);
}
.text-neutral-700\/35{
  color: rgb(82 82 82 / 0.35);
}
.text-neutral-700\/40{
  color: rgb(82 82 82 / 0.4);
}
.text-neutral-700\/45{
  color: rgb(82 82 82 / 0.45);
}
.text-neutral-700\/5{
  color: rgb(82 82 82 / 0.05);
}
.text-neutral-700\/50{
  color: rgb(82 82 82 / 0.5);
}
.text-neutral-700\/55{
  color: rgb(82 82 82 / 0.55);
}
.text-neutral-700\/60{
  color: rgb(82 82 82 / 0.6);
}
.text-neutral-700\/65{
  color: rgb(82 82 82 / 0.65);
}
.text-neutral-700\/70{
  color: rgb(82 82 82 / 0.7);
}
.text-neutral-700\/75{
  color: rgb(82 82 82 / 0.75);
}
.text-neutral-700\/80{
  color: rgb(82 82 82 / 0.8);
}
.text-neutral-700\/85{
  color: rgb(82 82 82 / 0.85);
}
.text-neutral-700\/90{
  color: rgb(82 82 82 / 0.9);
}
.text-neutral-700\/95{
  color: rgb(82 82 82 / 0.95);
}
.text-neutral-800{
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity, 1));
}
.text-neutral-800\/0{
  color: rgb(64 64 64 / 0);
}
.text-neutral-800\/10{
  color: rgb(64 64 64 / 0.1);
}
.text-neutral-800\/100{
  color: rgb(64 64 64 / 1);
}
.text-neutral-800\/15{
  color: rgb(64 64 64 / 0.15);
}
.text-neutral-800\/20{
  color: rgb(64 64 64 / 0.2);
}
.text-neutral-800\/25{
  color: rgb(64 64 64 / 0.25);
}
.text-neutral-800\/30{
  color: rgb(64 64 64 / 0.3);
}
.text-neutral-800\/35{
  color: rgb(64 64 64 / 0.35);
}
.text-neutral-800\/40{
  color: rgb(64 64 64 / 0.4);
}
.text-neutral-800\/45{
  color: rgb(64 64 64 / 0.45);
}
.text-neutral-800\/5{
  color: rgb(64 64 64 / 0.05);
}
.text-neutral-800\/50{
  color: rgb(64 64 64 / 0.5);
}
.text-neutral-800\/55{
  color: rgb(64 64 64 / 0.55);
}
.text-neutral-800\/60{
  color: rgb(64 64 64 / 0.6);
}
.text-neutral-800\/65{
  color: rgb(64 64 64 / 0.65);
}
.text-neutral-800\/70{
  color: rgb(64 64 64 / 0.7);
}
.text-neutral-800\/75{
  color: rgb(64 64 64 / 0.75);
}
.text-neutral-800\/80{
  color: rgb(64 64 64 / 0.8);
}
.text-neutral-800\/85{
  color: rgb(64 64 64 / 0.85);
}
.text-neutral-800\/90{
  color: rgb(64 64 64 / 0.9);
}
.text-neutral-800\/95{
  color: rgb(64 64 64 / 0.95);
}
.text-neutral-900{
  --tw-text-opacity: 1;
  color: rgb(38 38 38 / var(--tw-text-opacity, 1));
}
.text-neutral-900\/0{
  color: rgb(38 38 38 / 0);
}
.text-neutral-900\/10{
  color: rgb(38 38 38 / 0.1);
}
.text-neutral-900\/100{
  color: rgb(38 38 38 / 1);
}
.text-neutral-900\/15{
  color: rgb(38 38 38 / 0.15);
}
.text-neutral-900\/20{
  color: rgb(38 38 38 / 0.2);
}
.text-neutral-900\/25{
  color: rgb(38 38 38 / 0.25);
}
.text-neutral-900\/30{
  color: rgb(38 38 38 / 0.3);
}
.text-neutral-900\/35{
  color: rgb(38 38 38 / 0.35);
}
.text-neutral-900\/40{
  color: rgb(38 38 38 / 0.4);
}
.text-neutral-900\/45{
  color: rgb(38 38 38 / 0.45);
}
.text-neutral-900\/5{
  color: rgb(38 38 38 / 0.05);
}
.text-neutral-900\/50{
  color: rgb(38 38 38 / 0.5);
}
.text-neutral-900\/55{
  color: rgb(38 38 38 / 0.55);
}
.text-neutral-900\/60{
  color: rgb(38 38 38 / 0.6);
}
.text-neutral-900\/65{
  color: rgb(38 38 38 / 0.65);
}
.text-neutral-900\/70{
  color: rgb(38 38 38 / 0.7);
}
.text-neutral-900\/75{
  color: rgb(38 38 38 / 0.75);
}
.text-neutral-900\/80{
  color: rgb(38 38 38 / 0.8);
}
.text-neutral-900\/85{
  color: rgb(38 38 38 / 0.85);
}
.text-neutral-900\/90{
  color: rgb(38 38 38 / 0.9);
}
.text-neutral-900\/95{
  color: rgb(38 38 38 / 0.95);
}
.text-neutral-950{
  --tw-text-opacity: 1;
  color: rgb(23 23 23 / var(--tw-text-opacity, 1));
}
.text-neutral-950\/0{
  color: rgb(23 23 23 / 0);
}
.text-neutral-950\/10{
  color: rgb(23 23 23 / 0.1);
}
.text-neutral-950\/100{
  color: rgb(23 23 23 / 1);
}
.text-neutral-950\/15{
  color: rgb(23 23 23 / 0.15);
}
.text-neutral-950\/20{
  color: rgb(23 23 23 / 0.2);
}
.text-neutral-950\/25{
  color: rgb(23 23 23 / 0.25);
}
.text-neutral-950\/30{
  color: rgb(23 23 23 / 0.3);
}
.text-neutral-950\/35{
  color: rgb(23 23 23 / 0.35);
}
.text-neutral-950\/40{
  color: rgb(23 23 23 / 0.4);
}
.text-neutral-950\/45{
  color: rgb(23 23 23 / 0.45);
}
.text-neutral-950\/5{
  color: rgb(23 23 23 / 0.05);
}
.text-neutral-950\/50{
  color: rgb(23 23 23 / 0.5);
}
.text-neutral-950\/55{
  color: rgb(23 23 23 / 0.55);
}
.text-neutral-950\/60{
  color: rgb(23 23 23 / 0.6);
}
.text-neutral-950\/65{
  color: rgb(23 23 23 / 0.65);
}
.text-neutral-950\/70{
  color: rgb(23 23 23 / 0.7);
}
.text-neutral-950\/75{
  color: rgb(23 23 23 / 0.75);
}
.text-neutral-950\/80{
  color: rgb(23 23 23 / 0.8);
}
.text-neutral-950\/85{
  color: rgb(23 23 23 / 0.85);
}
.text-neutral-950\/90{
  color: rgb(23 23 23 / 0.9);
}
.text-neutral-950\/95{
  color: rgb(23 23 23 / 0.95);
}
.text-primary-200{
  --tw-text-opacity: 1;
  color: rgb(207 252 233 / var(--tw-text-opacity, 1));
}
.text-primary-200\/0{
  color: rgb(207 252 233 / 0);
}
.text-primary-200\/10{
  color: rgb(207 252 233 / 0.1);
}
.text-primary-200\/100{
  color: rgb(207 252 233 / 1);
}
.text-primary-200\/15{
  color: rgb(207 252 233 / 0.15);
}
.text-primary-200\/20{
  color: rgb(207 252 233 / 0.2);
}
.text-primary-200\/25{
  color: rgb(207 252 233 / 0.25);
}
.text-primary-200\/30{
  color: rgb(207 252 233 / 0.3);
}
.text-primary-200\/35{
  color: rgb(207 252 233 / 0.35);
}
.text-primary-200\/40{
  color: rgb(207 252 233 / 0.4);
}
.text-primary-200\/45{
  color: rgb(207 252 233 / 0.45);
}
.text-primary-200\/5{
  color: rgb(207 252 233 / 0.05);
}
.text-primary-200\/50{
  color: rgb(207 252 233 / 0.5);
}
.text-primary-200\/55{
  color: rgb(207 252 233 / 0.55);
}
.text-primary-200\/60{
  color: rgb(207 252 233 / 0.6);
}
.text-primary-200\/65{
  color: rgb(207 252 233 / 0.65);
}
.text-primary-200\/70{
  color: rgb(207 252 233 / 0.7);
}
.text-primary-200\/75{
  color: rgb(207 252 233 / 0.75);
}
.text-primary-200\/80{
  color: rgb(207 252 233 / 0.8);
}
.text-primary-200\/85{
  color: rgb(207 252 233 / 0.85);
}
.text-primary-200\/90{
  color: rgb(207 252 233 / 0.9);
}
.text-primary-200\/95{
  color: rgb(207 252 233 / 0.95);
}
.text-primary-300{
  --tw-text-opacity: 1;
  color: rgb(134 234 192 / var(--tw-text-opacity, 1));
}
.text-primary-300\/0{
  color: rgb(134 234 192 / 0);
}
.text-primary-300\/10{
  color: rgb(134 234 192 / 0.1);
}
.text-primary-300\/100{
  color: rgb(134 234 192 / 1);
}
.text-primary-300\/15{
  color: rgb(134 234 192 / 0.15);
}
.text-primary-300\/20{
  color: rgb(134 234 192 / 0.2);
}
.text-primary-300\/25{
  color: rgb(134 234 192 / 0.25);
}
.text-primary-300\/30{
  color: rgb(134 234 192 / 0.3);
}
.text-primary-300\/35{
  color: rgb(134 234 192 / 0.35);
}
.text-primary-300\/40{
  color: rgb(134 234 192 / 0.4);
}
.text-primary-300\/45{
  color: rgb(134 234 192 / 0.45);
}
.text-primary-300\/5{
  color: rgb(134 234 192 / 0.05);
}
.text-primary-300\/50{
  color: rgb(134 234 192 / 0.5);
}
.text-primary-300\/55{
  color: rgb(134 234 192 / 0.55);
}
.text-primary-300\/60{
  color: rgb(134 234 192 / 0.6);
}
.text-primary-300\/65{
  color: rgb(134 234 192 / 0.65);
}
.text-primary-300\/70{
  color: rgb(134 234 192 / 0.7);
}
.text-primary-300\/75{
  color: rgb(134 234 192 / 0.75);
}
.text-primary-300\/80{
  color: rgb(134 234 192 / 0.8);
}
.text-primary-300\/85{
  color: rgb(134 234 192 / 0.85);
}
.text-primary-300\/90{
  color: rgb(134 234 192 / 0.9);
}
.text-primary-300\/95{
  color: rgb(134 234 192 / 0.95);
}
.text-primary-400{
  --tw-text-opacity: 1;
  color: rgb(92 214 163 / var(--tw-text-opacity, 1));
}
.text-primary-400\/0{
  color: rgb(92 214 163 / 0);
}
.text-primary-400\/10{
  color: rgb(92 214 163 / 0.1);
}
.text-primary-400\/100{
  color: rgb(92 214 163 / 1);
}
.text-primary-400\/15{
  color: rgb(92 214 163 / 0.15);
}
.text-primary-400\/20{
  color: rgb(92 214 163 / 0.2);
}
.text-primary-400\/25{
  color: rgb(92 214 163 / 0.25);
}
.text-primary-400\/30{
  color: rgb(92 214 163 / 0.3);
}
.text-primary-400\/35{
  color: rgb(92 214 163 / 0.35);
}
.text-primary-400\/40{
  color: rgb(92 214 163 / 0.4);
}
.text-primary-400\/45{
  color: rgb(92 214 163 / 0.45);
}
.text-primary-400\/5{
  color: rgb(92 214 163 / 0.05);
}
.text-primary-400\/50{
  color: rgb(92 214 163 / 0.5);
}
.text-primary-400\/55{
  color: rgb(92 214 163 / 0.55);
}
.text-primary-400\/60{
  color: rgb(92 214 163 / 0.6);
}
.text-primary-400\/65{
  color: rgb(92 214 163 / 0.65);
}
.text-primary-400\/70{
  color: rgb(92 214 163 / 0.7);
}
.text-primary-400\/75{
  color: rgb(92 214 163 / 0.75);
}
.text-primary-400\/80{
  color: rgb(92 214 163 / 0.8);
}
.text-primary-400\/85{
  color: rgb(92 214 163 / 0.85);
}
.text-primary-400\/90{
  color: rgb(92 214 163 / 0.9);
}
.text-primary-400\/95{
  color: rgb(92 214 163 / 0.95);
}
.text-primary-500{
  --tw-text-opacity: 1;
  color: rgb(56 188 133 / var(--tw-text-opacity, 1));
}
.text-primary-500\/0{
  color: rgb(56 188 133 / 0);
}
.text-primary-500\/10{
  color: rgb(56 188 133 / 0.1);
}
.text-primary-500\/100{
  color: rgb(56 188 133 / 1);
}
.text-primary-500\/15{
  color: rgb(56 188 133 / 0.15);
}
.text-primary-500\/20{
  color: rgb(56 188 133 / 0.2);
}
.text-primary-500\/25{
  color: rgb(56 188 133 / 0.25);
}
.text-primary-500\/30{
  color: rgb(56 188 133 / 0.3);
}
.text-primary-500\/35{
  color: rgb(56 188 133 / 0.35);
}
.text-primary-500\/40{
  color: rgb(56 188 133 / 0.4);
}
.text-primary-500\/45{
  color: rgb(56 188 133 / 0.45);
}
.text-primary-500\/5{
  color: rgb(56 188 133 / 0.05);
}
.text-primary-500\/50{
  color: rgb(56 188 133 / 0.5);
}
.text-primary-500\/55{
  color: rgb(56 188 133 / 0.55);
}
.text-primary-500\/60{
  color: rgb(56 188 133 / 0.6);
}
.text-primary-500\/65{
  color: rgb(56 188 133 / 0.65);
}
.text-primary-500\/70{
  color: rgb(56 188 133 / 0.7);
}
.text-primary-500\/75{
  color: rgb(56 188 133 / 0.75);
}
.text-primary-500\/80{
  color: rgb(56 188 133 / 0.8);
}
.text-primary-500\/85{
  color: rgb(56 188 133 / 0.85);
}
.text-primary-500\/90{
  color: rgb(56 188 133 / 0.9);
}
.text-primary-500\/95{
  color: rgb(56 188 133 / 0.95);
}
.text-primary-600{
  --tw-text-opacity: 1;
  color: rgb(41 158 109 / var(--tw-text-opacity, 1));
}
.text-primary-600\/0{
  color: rgb(41 158 109 / 0);
}
.text-primary-600\/10{
  color: rgb(41 158 109 / 0.1);
}
.text-primary-600\/100{
  color: rgb(41 158 109 / 1);
}
.text-primary-600\/15{
  color: rgb(41 158 109 / 0.15);
}
.text-primary-600\/20{
  color: rgb(41 158 109 / 0.2);
}
.text-primary-600\/25{
  color: rgb(41 158 109 / 0.25);
}
.text-primary-600\/30{
  color: rgb(41 158 109 / 0.3);
}
.text-primary-600\/35{
  color: rgb(41 158 109 / 0.35);
}
.text-primary-600\/40{
  color: rgb(41 158 109 / 0.4);
}
.text-primary-600\/45{
  color: rgb(41 158 109 / 0.45);
}
.text-primary-600\/5{
  color: rgb(41 158 109 / 0.05);
}
.text-primary-600\/50{
  color: rgb(41 158 109 / 0.5);
}
.text-primary-600\/55{
  color: rgb(41 158 109 / 0.55);
}
.text-primary-600\/60{
  color: rgb(41 158 109 / 0.6);
}
.text-primary-600\/65{
  color: rgb(41 158 109 / 0.65);
}
.text-primary-600\/70{
  color: rgb(41 158 109 / 0.7);
}
.text-primary-600\/75{
  color: rgb(41 158 109 / 0.75);
}
.text-primary-600\/80{
  color: rgb(41 158 109 / 0.8);
}
.text-primary-600\/85{
  color: rgb(41 158 109 / 0.85);
}
.text-primary-600\/90{
  color: rgb(41 158 109 / 0.9);
}
.text-primary-600\/95{
  color: rgb(41 158 109 / 0.95);
}
.text-primary-700{
  --tw-text-opacity: 1;
  color: rgb(16 101 66 / var(--tw-text-opacity, 1));
}
.text-primary-700\/0{
  color: rgb(16 101 66 / 0);
}
.text-primary-700\/10{
  color: rgb(16 101 66 / 0.1);
}
.text-primary-700\/100{
  color: rgb(16 101 66 / 1);
}
.text-primary-700\/15{
  color: rgb(16 101 66 / 0.15);
}
.text-primary-700\/20{
  color: rgb(16 101 66 / 0.2);
}
.text-primary-700\/25{
  color: rgb(16 101 66 / 0.25);
}
.text-primary-700\/30{
  color: rgb(16 101 66 / 0.3);
}
.text-primary-700\/35{
  color: rgb(16 101 66 / 0.35);
}
.text-primary-700\/40{
  color: rgb(16 101 66 / 0.4);
}
.text-primary-700\/45{
  color: rgb(16 101 66 / 0.45);
}
.text-primary-700\/5{
  color: rgb(16 101 66 / 0.05);
}
.text-primary-700\/50{
  color: rgb(16 101 66 / 0.5);
}
.text-primary-700\/55{
  color: rgb(16 101 66 / 0.55);
}
.text-primary-700\/60{
  color: rgb(16 101 66 / 0.6);
}
.text-primary-700\/65{
  color: rgb(16 101 66 / 0.65);
}
.text-primary-700\/70{
  color: rgb(16 101 66 / 0.7);
}
.text-primary-700\/75{
  color: rgb(16 101 66 / 0.75);
}
.text-primary-700\/80{
  color: rgb(16 101 66 / 0.8);
}
.text-primary-700\/85{
  color: rgb(16 101 66 / 0.85);
}
.text-primary-700\/90{
  color: rgb(16 101 66 / 0.9);
}
.text-primary-700\/95{
  color: rgb(16 101 66 / 0.95);
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-success-dark{
  --tw-text-opacity: 1;
  color: rgb(4 107 31 / var(--tw-text-opacity, 1));
}
.text-success-dark\/0{
  color: rgb(4 107 31 / 0);
}
.text-success-dark\/10{
  color: rgb(4 107 31 / 0.1);
}
.text-success-dark\/100{
  color: rgb(4 107 31 / 1);
}
.text-success-dark\/15{
  color: rgb(4 107 31 / 0.15);
}
.text-success-dark\/20{
  color: rgb(4 107 31 / 0.2);
}
.text-success-dark\/25{
  color: rgb(4 107 31 / 0.25);
}
.text-success-dark\/30{
  color: rgb(4 107 31 / 0.3);
}
.text-success-dark\/35{
  color: rgb(4 107 31 / 0.35);
}
.text-success-dark\/40{
  color: rgb(4 107 31 / 0.4);
}
.text-success-dark\/45{
  color: rgb(4 107 31 / 0.45);
}
.text-success-dark\/5{
  color: rgb(4 107 31 / 0.05);
}
.text-success-dark\/50{
  color: rgb(4 107 31 / 0.5);
}
.text-success-dark\/55{
  color: rgb(4 107 31 / 0.55);
}
.text-success-dark\/60{
  color: rgb(4 107 31 / 0.6);
}
.text-success-dark\/65{
  color: rgb(4 107 31 / 0.65);
}
.text-success-dark\/70{
  color: rgb(4 107 31 / 0.7);
}
.text-success-dark\/75{
  color: rgb(4 107 31 / 0.75);
}
.text-success-dark\/80{
  color: rgb(4 107 31 / 0.8);
}
.text-success-dark\/85{
  color: rgb(4 107 31 / 0.85);
}
.text-success-dark\/90{
  color: rgb(4 107 31 / 0.9);
}
.text-success-dark\/95{
  color: rgb(4 107 31 / 0.95);
}
.text-success-light{
  --tw-text-opacity: 1;
  color: rgb(16 163 55 / var(--tw-text-opacity, 1));
}
.text-success-light\/0{
  color: rgb(16 163 55 / 0);
}
.text-success-light\/10{
  color: rgb(16 163 55 / 0.1);
}
.text-success-light\/100{
  color: rgb(16 163 55 / 1);
}
.text-success-light\/15{
  color: rgb(16 163 55 / 0.15);
}
.text-success-light\/20{
  color: rgb(16 163 55 / 0.2);
}
.text-success-light\/25{
  color: rgb(16 163 55 / 0.25);
}
.text-success-light\/30{
  color: rgb(16 163 55 / 0.3);
}
.text-success-light\/35{
  color: rgb(16 163 55 / 0.35);
}
.text-success-light\/40{
  color: rgb(16 163 55 / 0.4);
}
.text-success-light\/45{
  color: rgb(16 163 55 / 0.45);
}
.text-success-light\/5{
  color: rgb(16 163 55 / 0.05);
}
.text-success-light\/50{
  color: rgb(16 163 55 / 0.5);
}
.text-success-light\/55{
  color: rgb(16 163 55 / 0.55);
}
.text-success-light\/60{
  color: rgb(16 163 55 / 0.6);
}
.text-success-light\/65{
  color: rgb(16 163 55 / 0.65);
}
.text-success-light\/70{
  color: rgb(16 163 55 / 0.7);
}
.text-success-light\/75{
  color: rgb(16 163 55 / 0.75);
}
.text-success-light\/80{
  color: rgb(16 163 55 / 0.8);
}
.text-success-light\/85{
  color: rgb(16 163 55 / 0.85);
}
.text-success-light\/90{
  color: rgb(16 163 55 / 0.9);
}
.text-success-light\/95{
  color: rgb(16 163 55 / 0.95);
}
.text-transparent{
  color: transparent;
}
.text-warning-dark{
  --tw-text-opacity: 1;
  color: rgb(154 44 10 / var(--tw-text-opacity, 1));
}
.text-warning-dark\/0{
  color: rgb(154 44 10 / 0);
}
.text-warning-dark\/10{
  color: rgb(154 44 10 / 0.1);
}
.text-warning-dark\/100{
  color: rgb(154 44 10 / 1);
}
.text-warning-dark\/15{
  color: rgb(154 44 10 / 0.15);
}
.text-warning-dark\/20{
  color: rgb(154 44 10 / 0.2);
}
.text-warning-dark\/25{
  color: rgb(154 44 10 / 0.25);
}
.text-warning-dark\/30{
  color: rgb(154 44 10 / 0.3);
}
.text-warning-dark\/35{
  color: rgb(154 44 10 / 0.35);
}
.text-warning-dark\/40{
  color: rgb(154 44 10 / 0.4);
}
.text-warning-dark\/45{
  color: rgb(154 44 10 / 0.45);
}
.text-warning-dark\/5{
  color: rgb(154 44 10 / 0.05);
}
.text-warning-dark\/50{
  color: rgb(154 44 10 / 0.5);
}
.text-warning-dark\/55{
  color: rgb(154 44 10 / 0.55);
}
.text-warning-dark\/60{
  color: rgb(154 44 10 / 0.6);
}
.text-warning-dark\/65{
  color: rgb(154 44 10 / 0.65);
}
.text-warning-dark\/70{
  color: rgb(154 44 10 / 0.7);
}
.text-warning-dark\/75{
  color: rgb(154 44 10 / 0.75);
}
.text-warning-dark\/80{
  color: rgb(154 44 10 / 0.8);
}
.text-warning-dark\/85{
  color: rgb(154 44 10 / 0.85);
}
.text-warning-dark\/90{
  color: rgb(154 44 10 / 0.9);
}
.text-warning-dark\/95{
  color: rgb(154 44 10 / 0.95);
}
.text-warning-light{
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.text-warning-light\/0{
  color: rgb(234 88 12 / 0);
}
.text-warning-light\/10{
  color: rgb(234 88 12 / 0.1);
}
.text-warning-light\/100{
  color: rgb(234 88 12 / 1);
}
.text-warning-light\/15{
  color: rgb(234 88 12 / 0.15);
}
.text-warning-light\/20{
  color: rgb(234 88 12 / 0.2);
}
.text-warning-light\/25{
  color: rgb(234 88 12 / 0.25);
}
.text-warning-light\/30{
  color: rgb(234 88 12 / 0.3);
}
.text-warning-light\/35{
  color: rgb(234 88 12 / 0.35);
}
.text-warning-light\/40{
  color: rgb(234 88 12 / 0.4);
}
.text-warning-light\/45{
  color: rgb(234 88 12 / 0.45);
}
.text-warning-light\/5{
  color: rgb(234 88 12 / 0.05);
}
.text-warning-light\/50{
  color: rgb(234 88 12 / 0.5);
}
.text-warning-light\/55{
  color: rgb(234 88 12 / 0.55);
}
.text-warning-light\/60{
  color: rgb(234 88 12 / 0.6);
}
.text-warning-light\/65{
  color: rgb(234 88 12 / 0.65);
}
.text-warning-light\/70{
  color: rgb(234 88 12 / 0.7);
}
.text-warning-light\/75{
  color: rgb(234 88 12 / 0.75);
}
.text-warning-light\/80{
  color: rgb(234 88 12 / 0.8);
}
.text-warning-light\/85{
  color: rgb(234 88 12 / 0.85);
}
.text-warning-light\/90{
  color: rgb(234 88 12 / 0.9);
}
.text-warning-light\/95{
  color: rgb(234 88 12 / 0.95);
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-yellow-400{
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity, 1));
}
.text-yellow-600{
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.text-yellow-700{
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.no-underline{
  text-decoration-line: none;
}
.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.placeholder-neutral-600::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(110 110 110 / var(--tw-placeholder-opacity, 1));
}
.placeholder-neutral-600::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(110 110 110 / var(--tw-placeholder-opacity, 1));
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-60{
  opacity: 0.6;
}
.opacity-70{
  opacity: 0.7;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline{
  outline-style: solid;
}
.\!ring-0{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}
.ring{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-0{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-1{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-inset{
  --tw-ring-inset: inset;
}
.ring-brand-primary{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(46 107 104 / var(--tw-ring-opacity, 1));
}
.ring-gray-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
.ring-gray-900\/5{
  --tw-ring-color: rgb(17 24 39 / 0.05);
}
.ring-grayscale-300{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(149 149 149 / var(--tw-ring-opacity, 1));
}
.ring-neutral-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(140 140 140 / var(--tw-ring-opacity, 1));
}
.ring-red-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-\[0_0_1\.25em_rgba\(0\2c 0\2c 0\2c \.25\)\]{
  --tw-drop-shadow: drop-shadow(0 0 1.25em rgba(0,0,0,.25));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow-lg{
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale{
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert{
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-md{
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-300{
  transition-duration: 300ms;
}
.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.heading{
  margin-bottom: 1rem;
  --tw-text-opacity: 1;
  color: rgb(73 73 80 / var(--tw-text-opacity, 1));
}
h1.heading{
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
}
h2.heading{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}
h3.heading{
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
}
.card{
  overflow: hidden;
  border-radius: 0.375rem;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.card-heading{
  --tw-bg-opacity: 1;
  background-color: rgb(149 149 149 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  --tw-text-opacity: 1;
  color: rgb(23 23 28 / var(--tw-text-opacity, 1));
}
.card-content{
  padding: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(23 23 28 / var(--tw-text-opacity, 1));
}
.swal2-confirm {
  background-color: var(--color-brand-primary) !important;
  color: var(--color-text-inverse) !important;
}
:disabled{
  cursor: not-allowed;
  opacity: 0.5;
}
/* WCAG Contrast Fix for intl-tel-input country dropdown highlight */
.iti__country.iti__highlight,
.iti__country:hover {
  background-color: var(--color-brand-primary) !important;
  color: var(--color-text-inverse) !important;
}
.selection\:bg-brand-primary *::-moz-selection{
  --tw-bg-opacity: 1;
  background-color: rgb(46 107 104 / var(--tw-bg-opacity, 1));
}
.selection\:bg-brand-primary *::selection{
  --tw-bg-opacity: 1;
  background-color: rgb(46 107 104 / var(--tw-bg-opacity, 1));
}
.selection\:text-white *::-moz-selection{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:text-white *::selection{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:bg-brand-primary::-moz-selection{
  --tw-bg-opacity: 1;
  background-color: rgb(46 107 104 / var(--tw-bg-opacity, 1));
}
.selection\:bg-brand-primary::selection{
  --tw-bg-opacity: 1;
  background-color: rgb(46 107 104 / var(--tw-bg-opacity, 1));
}
.selection\:text-white::-moz-selection{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.selection\:text-white::selection{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.first\:-mt-px:first-child{
  margin-top: -1px;
}
.first\:rounded-l:first-child{
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.first\:border-t:first-child{
  border-top-width: 1px;
}
.last\:mb-0:last-child{
  margin-bottom: 0px;
}
.last\:rounded-r:last-child{
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.focus-within\:shadow-\[0_0_0_2px_\#fff\2c 0_0_0_6px_var\(--color-border-focus\)\]:focus-within{
  --tw-shadow: 0 0 0 2px #fff,0 0 0 6px var(--color-border-focus);
  --tw-shadow-colored: 0 0 0 2px var(--tw-shadow-color), 0 0 0 6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus-within\:outline-none:focus-within{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-within\:ring-0:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-within\:ring-2:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-within\:ring-blue-600:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity, 1));
}
.focus-within\:ring-brand-primary:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(46 107 104 / var(--tw-ring-opacity, 1));
}
.hover\:z-10:hover{
  z-index: 10;
}
.hover\:rounded:hover{
  border-radius: 0.25rem;
}
.hover\:rounded-lg:hover{
  border-radius: 0.5rem;
}
.hover\:border-brand-primary:hover{
  --tw-border-opacity: 1;
  border-color: rgb(46 107 104 / var(--tw-border-opacity, 1));
}
.hover\:border-brand-primary-dark:hover{
  --tw-border-opacity: 1;
  border-color: rgb(31 74 71 / var(--tw-border-opacity, 1));
}
.hover\:border-grayscale-400:hover{
  --tw-border-opacity: 1;
  border-color: rgb(179 179 179 / var(--tw-border-opacity, 1));
}
.hover\:bg-accent-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(12 124 136 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-brand-primary:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(46 107 104 / var(--tw-bg-opacity, 1));
}
.hover\:bg-brand-primary-dark:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(31 74 71 / var(--tw-bg-opacity, 1));
}
.hover\:bg-brand-primary-darker:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(22 54 52 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.hover\:bg-primary-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(56 188 133 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.hover\:bg-tango-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(205 82 20 / var(--tw-bg-opacity, 1));
}
.hover\:bg-yellow-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
}
.hover\:text-brand-primary:hover{
  --tw-text-opacity: 1;
  color: rgb(46 107 104 / var(--tw-text-opacity, 1));
}
.hover\:text-brand-primary-dark:hover{
  --tw-text-opacity: 1;
  color: rgb(31 74 71 / var(--tw-text-opacity, 1));
}
.hover\:text-brand-primary-light:hover{
  --tw-text-opacity: 1;
  color: rgb(61 138 134 / var(--tw-text-opacity, 1));
}
.hover\:text-grayscale-600:hover{
  --tw-text-opacity: 1;
  color: rgb(73 73 80 / var(--tw-text-opacity, 1));
}
.hover\:text-grayscale-700:hover{
  --tw-text-opacity: 1;
  color: rgb(23 23 28 / var(--tw-text-opacity, 1));
}
.hover\:text-neutral-800:hover{
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity, 1));
}
.hover\:text-primary-500:hover{
  --tw-text-opacity: 1;
  color: rgb(56 188 133 / var(--tw-text-opacity, 1));
}
.hover\:text-red-500:hover{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.hover\:text-red-700:hover{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:shadow-lg:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:outline:hover{
  outline-style: solid;
}
.hover\:outline-1:hover{
  outline-width: 1px;
}
.hover\:outline-black:hover{
  outline-color: #000;
}
.focus\:z-10:focus{
  z-index: 10;
}
.focus\:border-brand-primary:focus{
  --tw-border-opacity: 1;
  border-color: rgb(46 107 104 / var(--tw-border-opacity, 1));
}
.focus\:bg-gray-200:focus{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.focus\:text-white:focus{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.focus\:shadow-\[0_0_0_2px_\#fff\2c 0_0_0_6px_var\(--color-border-focus\)\]:focus{
  --tw-shadow: 0 0 0 2px #fff,0 0 0 6px var(--color-border-focus);
  --tw-shadow-colored: 0 0 0 2px var(--tw-shadow-color), 0 0 0 6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:shadow-none:focus{
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:outline:focus{
  outline-style: solid;
}
.focus\:outline-2:focus{
  outline-width: 2px;
}
.focus\:outline-offset-2:focus{
  outline-offset: 2px;
}
.focus\:outline-brand-primary:focus{
  outline-color: #2E6B68;
}
.focus\:ring:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-0:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-1:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-brand-primary:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(46 107 104 / var(--tw-ring-opacity, 1));
}
.focus\:ring-grayscale-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(179 179 179 / var(--tw-ring-opacity, 1));
}
.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}
.focus-visible\:z-10:focus-visible{
  z-index: 10;
}
.focus-visible\:bg-brand-primary:focus-visible{
  --tw-bg-opacity: 1;
  background-color: rgb(46 107 104 / var(--tw-bg-opacity, 1));
}
.focus-visible\:text-white:focus-visible{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.focus-visible\:shadow-\[0_0_0_2px_white\2c 0_0_0_6px_theme\(colors\.brand\.primary\)\]:focus-visible{
  --tw-shadow: 0 0 0 2px white,0 0 0 6px #2E6B68;
  --tw-shadow-colored: 0 0 0 2px var(--tw-shadow-color), 0 0 0 6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus-visible\:outline-none:focus-visible{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:outline:focus-visible{
  outline-style: solid;
}
.focus-visible\:outline-2:focus-visible{
  outline-width: 2px;
}
.focus-visible\:outline-offset-0:focus-visible{
  outline-offset: 0px;
}
.focus-visible\:outline-offset-2:focus-visible{
  outline-offset: 2px;
}
.focus-visible\:outline-blue-600:focus-visible{
  outline-color: #2563eb;
}
.focus-visible\:outline-brand-primary:focus-visible{
  outline-color: #2E6B68;
}
.focus-visible\:outline-brand-primary-dark:focus-visible{
  outline-color: #1F4A47;
}
.focus-visible\:outline-primary-600:focus-visible{
  outline-color: #299e6d;
}
.focus-visible\:outline-red-600:focus-visible{
  outline-color: #dc2626;
}
.focus-visible\:outline-yellow-600:focus-visible{
  outline-color: #ca8a04;
}
.focus-visible\:ring-0:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-2:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-brand-primary:focus-visible{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(46 107 104 / var(--tw-ring-opacity, 1));
}
.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}
.disabled\:bg-gray-200:disabled{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.disabled\:opacity-25:disabled{
  opacity: 0.25;
}
.disabled\:opacity-50:disabled{
  opacity: 0.5;
}
.disabled\:hover\:text-current:hover:disabled{
  color: currentColor;
}
.disabled\:hover\:text-inherit:hover:disabled{
  color: inherit;
}
.disabled\:hover\:outline-none:hover:disabled{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.group:hover .group-hover\:block{
  display: block;
}
.peer:checked ~ .peer-checked\:bg-\[var\(--color-primary-deep\)\]{
  background-color: var(--color-primary-deep);
}
.peer:checked ~ .peer-checked\:text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.peer:checked ~ .peer-checked\:ring-\[var\(--color-primary-deep\)\]{
  --tw-ring-color: var(--color-primary-deep);
}
.peer:focus-visible ~ .peer-focus-visible\:shadow-\[0_0_0_2px_\#fff\2c 0_0_0_6px_var\(--color-border-focus\)\]{
  --tw-shadow: 0 0 0 2px #fff,0 0 0 6px var(--color-border-focus);
  --tw-shadow-colored: 0 0 0 2px var(--tw-shadow-color), 0 0 0 6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.peer:focus-visible ~ .peer-focus-visible\:outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.peer:focus-visible ~ .peer-focus-visible\:ring-0{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.aria-selected\:border-brand-primary[aria-selected="true"]{
  --tw-border-opacity: 1;
  border-color: rgb(46 107 104 / var(--tw-border-opacity, 1));
}
.aria-selected\:bg-blue-600[aria-selected="true"]{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.aria-selected\:bg-brand-primary[aria-selected="true"]{
  --tw-bg-opacity: 1;
  background-color: rgb(46 107 104 / var(--tw-bg-opacity, 1));
}
.aria-selected\:text-white[aria-selected="true"]{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.data-\[is-active\=\"true\"\]\:bg-brand-primary[data-is-active="true"]{
  --tw-bg-opacity: 1;
  background-color: rgb(46 107 104 / var(--tw-bg-opacity, 1));
}
.data-\[is-active\=true\]\:bg-gray-100[data-is-active="true"]{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.data-\[is-active\=\"true\"\]\:text-white[data-is-active="true"]{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.data-\[is-active\=true\]\:text-primary-500[data-is-active="true"]{
  --tw-text-opacity: 1;
  color: rgb(56 188 133 / var(--tw-text-opacity, 1));
}
.data-\[placeholder\=\"true\"\]\:text-neutral-600[data-placeholder="true"]{
  --tw-text-opacity: 1;
  color: rgb(110 110 110 / var(--tw-text-opacity, 1));
}
.data-\[is-extra\=true\]\:opacity-25[data-is-extra="true"]{
  opacity: 0.25;
}
.aria-selected\:data-\[is-active\=true\]\:bg-blue-600[data-is-active="true"][aria-selected="true"]{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.aria-selected\:data-\[is-active\=true\]\:text-white[data-is-active="true"][aria-selected="true"]{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.group[data-is-max="true"] .group-data-\[is-max\=true\]\:cursor-not-allowed{
  cursor: not-allowed;
}
.group[data-is-max="true"] .group-data-\[is-max\=true\]\:opacity-50{
  opacity: 0.5;
}
.peer[data-has-multiple="true"] ~ .peer-data-\[has-multiple\=true\]\:mb-2{
  margin-bottom: 0.5rem;
}
.peer[data-has-multiple="true"] ~ .peer-data-\[has-multiple\=true\]\:ml-3{
  margin-left: 0.75rem;
}
.peer[data-has-multiple="true"] ~ .peer-data-\[has-multiple\=true\]\:text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.peer[data-has-multiple="true"] ~ .peer-data-\[has-multiple\=true\]\:text-primary-500{
  --tw-text-opacity: 1;
  color: rgb(56 188 133 / var(--tw-text-opacity, 1));
}
.prose-a\:underline :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  text-decoration-line: underline;
}
.hover\:prose-a\:text-brand-primary-dark :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))):hover{
  --tw-text-opacity: 1;
  color: rgb(31 74 71 / var(--tw-text-opacity, 1));
}
.prose-li\:m-0 :is(:where(li):not(:where([class~="not-prose"],[class~="not-prose"] *))){
  margin: 0px;
}
@media (min-width: 640px){
  .sm\:relative{
    position: relative;
  }
  .sm\:bottom-auto{
    bottom: auto;
  }
  .sm\:-mx-6{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .sm\:mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  .sm\:my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .sm\:my-auto{
    margin-top: auto;
    margin-bottom: auto;
  }
  .sm\:ml-6{
    margin-left: 1.5rem;
  }
  .sm\:mt-20{
    margin-top: 5rem;
  }
  .sm\:mt-6{
    margin-top: 1.5rem;
  }
  .sm\:block{
    display: block;
  }
  .sm\:inline{
    display: inline;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:grid{
    display: grid;
  }
  .sm\:h-\[60vh\]{
    height: 60vh;
  }
  .sm\:w-1\/2{
    width: 50%;
  }
  .sm\:w-2\/3{
    width: 66.666667%;
  }
  .sm\:w-3\/5{
    width: 60%;
  }
  .sm\:w-full{
    width: 100%;
  }
  .sm\:max-w-2xl{
    max-width: 42rem;
  }
  .sm\:max-w-4xl{
    max-width: 56rem;
  }
  .sm\:max-w-5xl{
    max-width: 64rem;
  }
  .sm\:max-w-6xl{
    max-width: 72rem;
  }
  .sm\:max-w-7xl{
    max-width: 80rem;
  }
  .sm\:max-w-lg{
    max-width: 32rem;
  }
  .sm\:max-w-xl{
    max-width: 36rem;
  }
  .sm\:max-w-xs{
    max-width: 20rem;
  }
  .sm\:translate-y-0{
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .sm\:rotate-0{
    --tw-rotate: 0deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .sm\:scale-100{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .sm\:scale-95{
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
  .sm\:grid-flow-row-dense{
    grid-auto-flow: row dense;
  }
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:flex-col{
    flex-direction: column;
  }
  .sm\:items-center{
    align-items: center;
  }
  .sm\:justify-end{
    justify-content: flex-end;
  }
  .sm\:gap-3{
    gap: 0.75rem;
  }
  .sm\:gap-4{
    gap: 1rem;
  }
  .sm\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .sm\:rounded-md{
    border-radius: 0.375rem;
  }
  .sm\:bg-inherit{
    background-color: inherit;
  }
  .sm\:p-0{
    padding: 0px;
  }
  .sm\:p-10{
    padding: 2.5rem;
  }
  .sm\:p-6{
    padding: 1.5rem;
  }
  .sm\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .sm\:text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  .sm\:text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
  .sm\:first\:rounded-t:first-child{
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .sm\:last\:rounded-b:last-child{
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
}
@media (min-width: 768px){
  .md\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .md\:mb-0{
    margin-bottom: 0px;
  }
  .md\:ml-8{
    margin-left: 2rem;
  }
  .md\:mt-0{
    margin-top: 0px;
  }
  .md\:mt-16{
    margin-top: 4rem;
  }
  .md\:mt-24{
    margin-top: 6rem;
  }
  .md\:flex{
    display: flex;
  }
  .md\:w-1\/2{
    width: 50%;
  }
  .md\:w-2\/5{
    width: 40%;
  }
  .md\:w-3\/5{
    width: 60%;
  }
  .md\:w-4\/5{
    width: 80%;
  }
  .md\:w-80{
    width: 20rem;
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:items-end{
    align-items: flex-end;
  }
  .md\:items-center{
    align-items: center;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .md\:p-5{
    padding: 1.25rem;
  }
}
@media (min-width: 1024px){
  .lg\:order-1{
    order: 1;
  }
  .lg\:order-2{
    order: 2;
  }
  .lg\:-mx-4{
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .lg\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }
  .lg\:ml-2{
    margin-left: 0.5rem;
  }
  .lg\:mt-0{
    margin-top: 0px;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:w-1\/2{
    width: 50%;
  }
  .lg\:w-1\/3{
    width: 33.333333%;
  }
  .lg\:w-2\/3{
    width: 66.666667%;
  }
  .lg\:w-full{
    width: 100%;
  }
  .lg\:max-w-md{
    max-width: 28rem;
  }
  .lg\:max-w-none{
    max-width: none;
  }
  .lg\:flex-auto{
    flex: 1 1 auto;
  }
  .lg\:flex-shrink-0{
    flex-shrink: 0;
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:flex-col{
    flex-direction: column;
  }
  .lg\:items-center{
    align-items: center;
  }
  .lg\:justify-center{
    justify-content: center;
  }
  .lg\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lg\:py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .lg\:pr-3{
    padding-right: 0.75rem;
  }
}
@media (min-width: 1280px){
  .xl\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }
  .xl\:w-4\/5{
    width: 80%;
  }
}
@media (min-width: 2000px){
  .\32xl\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }
  .\32xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 2400px){
  .\33xl\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.\[\&\:\:-webkit-color-swatch-wrapper\]\:p-0::-webkit-color-swatch-wrapper{
  padding: 0px;
}
.\[\&\:\:-webkit-color-swatch\]\:border-none::-webkit-color-swatch{
  border-style: none;
}
.\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar{
  display: none;
}
.\[\&\>\*\]\:w-full>*{
  width: 100%;
}
.\[\&\>a\]\:font-medium>a{
  font-weight: 500;
}
.\[\&\>a\]\:text-primary-600>a{
  --tw-text-opacity: 1;
  color: rgb(41 158 109 / var(--tw-text-opacity, 1));
}
.\[\&\>a\]\:hover\:underline:hover>a{
  text-decoration-line: underline;
}
.peer:checked ~ .peer-checked\:\[\&\>div\:first-child\:not\(\:last-child\)\]\:left-0>div:first-child:not(:last-child){
  left: 0px;
}
.peer:checked ~ .peer-checked\:\[\&\>div\:first-child\:not\(\:last-child\)\]\:translate-x-0>div:first-child:not(:last-child){
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.peer:checked ~ .peer-checked\:\[\&\>div\:last-child\]\:left-full>div:last-child{
  left: 100%;
}
.peer:checked ~ .peer-checked\:\[\&\>div\:last-child\]\:-translate-x-full>div:last-child{
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\[\&\>div\>\[data-value\]\]\:absolute>div>[data-value]{
  position: absolute;
}
.\[\&\>div\>\[data-value\]\]\:mb-0>div>[data-value]{
  margin-bottom: 0px;
}
.\[\&\>div\>button\]\:focus\:text-white:focus>div>button{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.\[\&\>div\]\:focus\:bg-primary-500:focus>div{
  --tw-bg-opacity: 1;
  background-color: rgb(56 188 133 / var(--tw-bg-opacity, 1));
}
.\[\&\>label\:first-child\]\:focus-within\:text-primary-500:focus-within>label:first-child{
  --tw-text-opacity: 1;
  color: rgb(56 188 133 / var(--tw-text-opacity, 1));
}
.\[\&\>span\:first-child\]\:focus-within\:text-primary-500:focus-within>span:first-child{
  --tw-text-opacity: 1;
  color: rgb(56 188 133 / var(--tw-text-opacity, 1));
}
.\[\&\>span\]\:ml-0>span{
  margin-left: 0px;
}
.\[\&\>span\]\:mr-3>span{
  margin-right: 0.75rem;
}
.\[\&\>span\]\:text-red-500>span{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.\[\&\>svg\]\:m-auto>svg{
  margin: auto;
}
.\[\&\>svg\]\:h-auto>svg{
  height: auto;
}
.\[\&\>svg\]\:max-h-\[1em\]>svg{
  max-height: 1em;
}
.\[\&\>svg\]\:max-h-\[1rem\]>svg{
  max-height: 1rem;
}
.\[\&\>svg\]\:max-h-none>svg{
  max-height: none;
}
.\[\&\>svg\]\:w-full>svg{
  width: 100%;
}
.\[\&\>svg\]\:max-w-\[1em\]>svg{
  max-width: 1em;
}
.\[\&\>svg\]\:max-w-\[1rem\]>svg{
  max-width: 1rem;
}
.\[\&\>svg\]\:max-w-none>svg{
  max-width: none;
}
.\[\&_\.dnd-children-hidden\]\:flex .dnd-children-hidden{
  display: flex;
}
.\[\&_\.dnd-children-hidden\]\:w-full .dnd-children-hidden{
  width: 100%;
}
.\[\&_\.dnd-children-hidden\]\:flex-col .dnd-children-hidden{
  flex-direction: column;
}
.\[\&_\.dnd-children-hidden\]\:border-none .dnd-children-hidden{
  border-style: none;
}
.\[\&_\.dnd-children-hidden\]\:p-0 .dnd-children-hidden{
  padding: 0px;
}
.\[\&_\.dnd-children-hidden_\.formkit-transferlist-option\]\:hidden .dnd-children-hidden .formkit-transferlist-option{
  display: none;
}
.\[\&_\.dnd-children-hidden_span\]\:hidden .dnd-children-hidden span{
  display: none;
}
.\[\&_\.dnd-multiple-selections_\.formkit-transferlist-option\]\:inline-block .dnd-multiple-selections .formkit-transferlist-option{
  display: inline-block;
}
.\[\&_\.dnd-multiple-selections_span\]\:inline-block .dnd-multiple-selections span{
  display: inline-block;
}
.\[\&_\.dnd-placeholder\]\:bg-primary-500 .dnd-placeholder{
  --tw-bg-opacity: 1;
  background-color: rgb(56 188 133 / var(--tw-bg-opacity, 1));
}
.\[\&_\.dnd-placeholder\]\:text-white .dnd-placeholder{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.\[\&_\.dnd-placeholder_svg\]\:text-white .dnd-placeholder svg{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
:root, [data-theme=default] {
  /* Main Colors - MAPPED TO INTERACTIVE GREEN */
  --color-primary-darker: #163634; /* Interactive green darker */
  --color-primary-dark: #1F4A47; /* Interactive green dark */
  --color-primary-deep: #2E6B68; /* Interactive green primary */
  --color-primary: #2E6B68; /* Interactive green primary */
  --color-primary-light: #3D8A86; /* Interactive green light */
  --color-primary-lighter: hsl(155, 70%, 72%);
  --color-primary-lightest: hsl(155, 90%, 90%);
  --color-accent-darker: hsl(186, 84%, 29%);
  --color-accent-dark: hsl(186, 81%, 36%);
  --color-accent: hsl(186, 63%, 68%);
  --color-accent-light: hsl(186, 73%, 69%);
  --color-accent-lighter: hsl(186, 83%, 75%);
  --color-accent-lightest: hsl(186, 95%, 95%);
  /* Black and White */
  --color-black: hsl(240, 8%, 12%);
  --color-white: hsl(0, 0%, 100%);
  /* Feedback Colors */
  --color-success-darker: hsl(158, 26%, 28%);
  --color-success-dark: hsl(158, 26%, 38%);
  --color-success: hsl(158, 26%, 48%);
  --color-success-light: hsl(158, 26%, 58%);
  --color-success-lighter: hsl(158, 26%, 68%);
  --color-success-lightest: hsl(158, 26%, 90%);
  --color-error-darker: hsl(7, 82%, 35%);
  --color-error-dark: hsl(7, 82%, 45%);
  --color-error: hsl(7, 82%, 55%);
  --color-error-light: hsl(7, 82%, 65%);
  --color-error-lighter: hsl(7, 82%, 75%);
  --color-error-lightest: hsl(7, 95%, 90%);
  --color-warning-darker: hsl(38, 86%, 28%);
  --color-warning-dark: hsl(38, 81%, 40%);
  --color-warning: hsl(38, 89%, 60%);
  --color-warning-light: hsl(38, 79%, 70%);
  --color-warning-lighter: hsl(38, 89%, 80%);
  --color-warning-lightest: hsl(38, 89%, 87%);
  --color-yellow-darker: hsl(38, 89%, 40%);
  --color-yellow-dark: hsl(38, 89%, 50%);
  --color-yellow: hsl(38, 89%, 60%);
  --color-yellow-light: hsl(38, 89%, 70%);
  --color-yellow-lighter: hsl(38, 89%, 80%);
  /* Color Contrasts */
  --color-bg: hsl(0, 0%, 100%);
  --color-contrast-lowest: hsl(0, 0%, 97%);
  --color-contrast-lower: hsl(0, 0%, 95%);
  --color-contrast-low: hsl(240, 1%, 83%);
  --color-contrast-extra-medium: hsl(0, 0%, 70%);
  --color-contrast-medium: hsl(240, 4%, 46%);
  --color-contrast-high: hsl(240, 4%, 30%);
  --color-contrast-higher: hsl(240, 8%, 10%);
  /* Gradient Colors */
  --color-gradient-light: hsl(0, 0%, 93%);
  --color-gradient-lighter: hsl(0, 0%, 92%);
  /* Shadow Colors */
  --color-shadow-light: hsla(0, 0%, 0%, 0.02);
  --color-shadow-medium: hsla(0, 0%, 0%, 0.1);
  --color-shadow-heavy: hsla(0, 0%, 0%, 0.15);
}

/* Utility Classes */
/* Text Colors */
.color-primary-lightest {
  color: var(--color-primary-lightest);
}

.color-contrast-lowest {
  color: var(--color-neutral-50);
}

.color-contrast-extra-medium {
  color: var(--color-text-secondary);
}

.color-contrast-high\@focus:focus,
.color-contrast-high\@focus:hover {
  color: var(--color-text-primary);
}

.color-contrast-higher\@focus:focus,
.color-contrast-higher\@focus:hover {
  color: var(--color-text-primary);
}

.color-primary-darker\@focus:focus,
.color-primary-darker\@focus:hover {
  color: var(--color-primary-darker);
}

/* Background Colors */
.bg-primary-lightest {
  background-color: var(--color-primary-lightest);
}

.bg-contrast-lowest {
  background-color: var(--color-neutral-50);
}

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

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

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

.bg-white\@focus:focus {
  background-color: var(--color-surface-base);
}

/* Border Colors */
.border-contrast-extra-medium {
  border-color: var(--color-text-secondary);
}

.border-contrast-medium\@focus:focus,
.border-contrast-medium\@focus:hover {
  border-color: var(--color-text-secondary);
}

.brand-field__label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-contrast-high);
  margin-bottom: 0.125rem;
}

.brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  border-radius: 0.375rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.brand-btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.brand-btn--full {
  width: 100%;
}
.brand-btn--xs {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
}
.brand-btn--sm {
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
}
.brand-btn--md {
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
}
.brand-btn--lg {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}
.brand-btn__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.brand-btn__key {
  display: inline-block;
  margin-left: 0.25rem;
  padding: 0.125rem 0.25rem;
  border: 1px solid currentColor;
  border-radius: 0.375rem;
  font-size: 0.75rem;
}
.brand-btn--brand-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.brand-btn--brand-primary:hover:not(.is-disabled) {
  background: var(--color-primary-dark);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.brand-btn--brand-primary:active:not(.is-disabled) {
  background: var(--color-primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.brand-btn--primary {
  background: var(--color-primary-deep);
  color: var(--color-white);
  border-color: var(--color-primary-deep);
}
.brand-btn--primary:hover:not(.is-disabled) {
  background: var(--color-primary-darker);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.brand-btn--primary:active:not(.is-disabled) {
  background: var(--color-primary-deep);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.brand-btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.brand-btn--secondary:hover:not(.is-disabled) {
  color: var(--color-primary-light);
  border-color: var(--color-primary-light);
}
.brand-btn--tertiary {
  background: transparent;
  color: var(--color-primary);
  border-color: transparent;
  box-shadow: none;
}
.brand-btn--tertiary:hover:not(.is-disabled) {
  color: var(--color-primary-light);
}
.brand-btn--white {
  background: var(--color-white);
  color: var(--color-contrast-high);
}
.brand-btn--white:hover:not(.is-disabled) {
  color: var(--color-contrast-medium);
  border-color: var(--color-contrast-medium);
}
.brand-btn--gray {
  background: var(--color-contrast-lowest);
  color: var(--color-contrast-medium);
}
.brand-btn--gray:hover:not(.is-disabled) {
  color: var(--color-contrast-medium);
  border-color: var(--color-contrast-extra-medium);
}
.brand-btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.brand-btn--accent:hover:not(.is-disabled) {
  background: var(--color-accent-dark);
}
.brand-btn--warning {
  background: var(--color-warning);
  color: var(--color-white);
  border-color: var(--color-warning);
}
.brand-btn--warning:hover:not(.is-disabled) {
  background: var(--color-warning-dark);
}
.brand-btn--danger {
  background: var(--color-error);
  color: var(--color-white);
  border-color: var(--color-error);
}
.brand-btn--danger:hover:not(.is-disabled) {
  background: var(--color-error-dark);
}
.brand-btn--cancel {
  background: transparent;
  color: var(--color-contrast-medium);
  border: none;
  box-shadow: none;
}
.brand-btn--cancel:hover:not(.is-disabled) {
  color: var(--color-contrast-high);
}
.brand-btn--link {
  background: transparent;
  color: var(--color-primary-deep);
  border-color: transparent;
  box-shadow: none;
}
.brand-btn--link:hover:not(.is-disabled) {
  text-decoration: underline;
}
.brand-btn--plain-link {
  background: transparent;
  color: inherit;
  border-color: transparent;
  box-shadow: none;
  text-decoration: underline;
}
.brand-btn--plain-link:hover:not(.is-disabled) {
  color: var(--color-primary);
}

.brand-range {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.brand-range__label-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-range__label {
  font-weight: 500;
  color: var(--color-contrast-high);
}
.brand-range__input-value {
  font-size: 1em;
  color: var(--color-primary-dark);
  font-weight: 600;
}
.brand-range__input-range {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: var(--color-contrast-extra-medium);
  margin: 0;
}
.brand-range__input-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 0 2px var(--color-contrast-low);
}
.brand-range__input-range::-moz-range-thumb {
  height: 25px;
  width: 25px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  cursor: pointer;
  box-shadow: 0 0 2px var(--color-contrast-low);
}
.brand-range__input-outer {
  width: 100%;
}

.brand-text-area__none {
  resize: none;
}
.brand-text-area__vertical {
  resize: vertical;
}
.brand-text-area__horizontal {
  resize: horizontal;
}
.brand-text-area__both {
  resize: both;
}

.brand-avatar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-white);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.brand-avatar__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.brand-avatar--small {
  width: 2rem;
  height: 2rem;
  font-size: 0.8rem;
}
.brand-avatar--medium {
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1rem;
}
.brand-avatar--large {
  width: 5rem;
  height: 5rem;
  font-size: 1.2rem;
}

.brand-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.brand-loading--inline {
  display: inline-flex;
}
.brand-loading__icon {
  width: 2.5rem;
  height: 2.5rem;
  animation: spin 1s linear infinite;
}
.brand-loading__icon--sm {
  width: 1.5rem;
  height: 1.5rem;
}
.brand-loading__icon--lg {
  width: 3.5rem;
  height: 3.5rem;
}
.brand-loading__text {
  font-size: 0.875rem;
  color: var(--color-contrast-medium);
  text-align: center;
}

.brand-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-contrast-high);
}
.brand-label__required {
  margin-left: 0.25rem;
  color: var(--color-error);
}

.brand-tag-container {
  display: inline-flex;
  align-items: center;
  border-radius: 0.25rem;
  color: var(--color-white);
  position: relative;
  transition: box-shadow 0.2s, transform 0.1s;
}
.brand-tag-container.is-display-only {
  cursor: default;
}
.brand-tag-container .formkit-outer {
  margin: 0 !important;
}

.brand-tag__remove-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.brand-tag__checkbox-wrapper {
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.brand-tag__label {
  line-height: 1;
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
}

.brand-tag__remove {
  display: none;
}

.brand-tag-container:hover .brand-tag__remove,
.brand-tag-container:focus-within .brand-tag__remove {
  display: inline-flex;
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
}

.brand-tag-container.is-removable .brand-tag__remove {
  display: none;
}
.brand-tag-container.is-removable:hover .brand-tag__checkbox-wrapper,
.brand-tag-container.is-removable:hover .brand-tag__label {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.2s;
}
.brand-tag-container.is-removable:hover .brand-tag__remove {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}

.brand-search-input {
  position: relative;
  width: 100%;
}
.brand-search-input__field {
  display: block;
  width: 100%;
  padding: 0.5rem 2.5rem;
  border: 1px solid var(--color-contrast-low);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.brand-search-input__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  margin-left: 0.75rem;
}
.brand-search-input__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-contrast-medium);
}
.brand-search-input__icon .brand-search-input__button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}
.brand-search-input__icon .brand-search-input__button svg {
  color: var(--color-contrast-medium);
}

.brand-radio-group {
  margin-bottom: 1rem;
}
.brand-radio-group__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--color-contrast-higher);
}
.brand-radio-group__options {
  display: flex;
  gap: 1rem;
}
.brand-radio-group__option {
  display: inline-flex;
  align-items: center;
}
.brand-radio-group__input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--color-contrast-medium);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.brand-radio-group__input:checked:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.brand-radio-group__input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.brand-radio-group__input:checked::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-primary);
  border-radius: 50%;
}
.brand-radio-group__option-label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-contrast-high);
  cursor: pointer;
}
.brand-radio-group__help {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--color-contrast-extra-medium);
}

/* Reset or normalize styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global link styles - WCAG AA compliant */
a {
  color: var(--color-text-link);
  text-decoration: underline;
}
a:hover {
  color: var(--color-text-link-hover);
  text-decoration: none;
}

/* ========= Universal Focus Ring - WCAG 2.1 AA ========= */
/* 6px ring with 2px gap using brand color */
:where(a[href],
area[href],
button,
input:not([type=hidden]):not(.multiselect__input),
select,
textarea,
summary,
[tabindex]:not([tabindex="-1"]):not(.multiselect),
[contenteditable=true],
[role=button],
[role=tab]):focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 6px var(--color-brand-primary); /* outer focus ring */
  border-radius: 0.25rem;
  z-index: 2;
}

/* Remove default focus outline for mouse users (focus-visible handles keyboard) */
:where(a[href],
area[href],
button,
input:not([type=hidden]):not(.multiselect__input),
select,
textarea,
summary,
[tabindex]:not([tabindex="-1"]):not(.multiselect),
[contenteditable=true],
[role=button],
[role=tab]):focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* Make checkbox/radio focus ring obvious */
input[type=checkbox],
input[type=radio] {
  width: 18px;
  height: 18px;
}

/* Suppress plugin's :focus ring on all form inputs — universal :focus-visible handles it */
input:not([type=hidden]):focus,
select:focus,
textarea:focus {
  --tw-ring-shadow: 0 0 #0000;
  --tw-ring-offset-shadow: 0 0 #0000;
  box-shadow: none;
}

input:not([type=hidden]):focus-visible,
select:focus-visible,
textarea:focus-visible {
  --tw-ring-shadow: 0 0 #0000;
  --tw-ring-offset-shadow: 0 0 #0000;
  border-color: var(--color-brand-primary);
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 6px var(--color-brand-primary) !important;
  border-radius: 0.25rem;
}

/* ========= TinyMCE Focus Ring ========= */
.tox-tbtn:focus-visible {
  outline: 4px solid var(--color-brand-primary);
  outline-offset: -4px;
  border-radius: 0.25rem;
}

.tox-edit-area__iframe:focus-visible {
  outline: 4px solid var(--color-brand-primary);
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.tox-statusbar__resize-handle:focus-visible {
  outline: 4px solid var(--color-brand-primary);
  outline-offset: -4px;
  border-radius: 0.25rem;
}

.tox-tbtn:focus:not(:focus-visible),
.tox-edit-area__iframe:focus:not(:focus-visible),
.tox-statusbar__resize-handle:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* ========= SweetAlert2 Focus Ring ========= */
/* swal2 uses :where() (0 specificity) with its own box-shadow variable.
   Class specificity here ensures our brand ring wins. */
.swal2-styled:focus-visible {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 6px var(--color-brand-primary) !important;
}

:root, [data-theme=default] {
  /* Main Colors - MAPPED TO INTERACTIVE GREEN */
  --color-primary-darker: #163634; /* Interactive green darker */
  --color-primary-dark: #1F4A47; /* Interactive green dark */
  --color-primary-deep: #2E6B68; /* Interactive green primary */
  --color-primary: #2E6B68; /* Interactive green primary */
  --color-primary-light: #3D8A86; /* Interactive green light */
  --color-primary-lighter: hsl(155, 70%, 72%);
  --color-primary-lightest: hsl(155, 90%, 90%);
  --color-accent-darker: hsl(186, 84%, 29%);
  --color-accent-dark: hsl(186, 81%, 36%);
  --color-accent: hsl(186, 63%, 68%);
  --color-accent-light: hsl(186, 73%, 69%);
  --color-accent-lighter: hsl(186, 83%, 75%);
  --color-accent-lightest: hsl(186, 95%, 95%);
  /* Black and White */
  --color-black: hsl(240, 8%, 12%);
  --color-white: hsl(0, 0%, 100%);
  /* Feedback Colors */
  --color-success-darker: hsl(158, 26%, 28%);
  --color-success-dark: hsl(158, 26%, 38%);
  --color-success: hsl(158, 26%, 48%);
  --color-success-light: hsl(158, 26%, 58%);
  --color-success-lighter: hsl(158, 26%, 68%);
  --color-success-lightest: hsl(158, 26%, 90%);
  --color-error-darker: hsl(7, 82%, 35%);
  --color-error-dark: var(--color-feedback-error, #B91C1C);
  --color-error: hsl(7, 82%, 55%);
  --color-error-light: hsl(7, 82%, 65%);
  --color-error-lighter: hsl(7, 82%, 75%);
  --color-error-lightest: hsl(7, 95%, 90%);
  --color-warning-darker: hsl(38, 86%, 28%);
  --color-warning-dark: hsl(38, 81%, 40%);
  --color-warning: hsl(38, 89%, 60%);
  --color-warning-light: hsl(38, 79%, 70%);
  --color-warning-lighter: hsl(38, 89%, 80%);
  --color-warning-lightest: hsl(38, 89%, 87%);
  --color-yellow-darker: hsl(38, 89%, 40%);
  --color-yellow-dark: hsl(38, 89%, 50%);
  --color-yellow: hsl(38, 89%, 60%);
  --color-yellow-light: hsl(38, 89%, 70%);
  --color-yellow-lighter: hsl(38, 89%, 80%);
  /* Color Contrasts */
  --color-bg: hsl(0, 0%, 100%);
  --color-contrast-lowest: hsl(0, 0%, 97%);
  --color-contrast-lower: hsl(0, 0%, 95%);
  --color-contrast-low: hsl(240, 1%, 83%);
  --color-contrast-extra-medium: hsl(0, 0%, 70%);
  --color-contrast-medium: hsl(240, 4%, 46%);
  --color-contrast-high: hsl(240, 4%, 30%);
  --color-contrast-higher: hsl(240, 8%, 10%);
  --color-text-primary: hsl(0, 0%, 0%);
  --color-text-secondary: hsl(0, 0%, 33%);
  --color-text-muted: hsl(0, 0%, 30%);
  --color-text-subtle: hsl(0, 0%, 41%);
  /* Gradient Colors */
  --color-gradient-light: hsl(0, 0%, 93%);
  --color-gradient-lighter: hsl(0, 0%, 92%);
  /* Shadow Colors */
  --color-shadow-light: hsla(0, 0%, 0%, 0.02);
  --color-shadow-medium: hsla(0, 0%, 0%, 0.1);
  --color-shadow-heavy: hsla(0, 0%, 0%, 0.15);
}

/* Utility Classes */
/* Text Colors */
.color-primary-lightest {
  color: var(--color-primary-lightest);
}

.color-contrast-lowest {
  color: var(--color-neutral-50);
}

.color-contrast-extra-medium {
  color: var(--color-text-secondary);
}

.color-contrast-high\@focus:focus,
.color-contrast-high\@focus:hover {
  color: var(--color-text-primary);
}

.color-contrast-higher\@focus:focus,
.color-contrast-higher\@focus:hover {
  color: var(--color-text-primary);
}

.color-primary-darker\@focus:focus,
.color-primary-darker\@focus:hover {
  color: var(--color-primary-darker);
}

/* Background Colors */
.bg-primary-lightest {
  background-color: var(--color-primary-lightest);
}

.bg-contrast-lowest {
  background-color: var(--color-neutral-50);
}

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

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

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

.bg-white\@focus:focus {
  background-color: var(--color-surface-base);
}

/* Border Colors */
.border-contrast-extra-medium {
  border-color: var(--color-text-secondary);
}

.border-contrast-medium\@focus:focus,
.border-contrast-medium\@focus:hover {
  border-color: var(--color-text-secondary);
}

.input-location {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.input-location__auto {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input-location__or {
  text-align: center;
}
.input-location__postalCode {
  margin-top: 10px;
}
.input-location__postalError {
  color: var(--color-error-dark);
  font-size: 0.75rem;
  margin-top: 5px;
}
@media (min-width: 500px) {
  .input-location__auto {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .input-location__locate-me {
    flex: 1;
  }
  .input-location__or {
    padding: 0 10px;
    margin: 0;
  }
  .input-location__country-select {
    flex: 1;
  }
  .input-location__postalCode {
    margin-top: 10px;
    width: 183px;
    align-self: end;
  }
  .input-location__postalError {
    color: var(--color-error-dark);
  }
}

.formkit-dropdown-wrapper {
  top: 100% !important;
  bottom: auto !important;
}

.print-application-content {
  display: none;
}

@media print {
  .print-application-content {
    display: block !important;
    width: 100%;
    padding: 2rem 0;
  }
  .nav,
  .application-review__title,
  .application-review__card,
  .application-program,
  .application-review-page-set__mobile,
  .application-review__body {
    display: none !important;
  }
  @page {
    margin: 0.5cm;
    background: var(--color-bg);
    @bottom-right {
      content: "Page " counter(page) " of " counter(pages);
      font-size: 0.75rem;
      color: var(--color-text-primary);
      margin-bottom: 0.5rem;
    }
  }
}
/* modules/_navigation.scss */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  padding: 0 1rem;
  background-color: var(--color-surface-base);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.nav__masquerade {
  background-color: var(--color-brand-primary);
  color: var(--color-text-inverse);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-align: center;
}
.nav__masquerade .logged_in_as {
  display: block;
  font-size: 1.1em;
}
.nav__masquerade .logged_in_as .name {
  white-space: nowrap;
  font-weight: bold;
}
.nav__masquerade--link {
  color: var(--color-text-inverse);
  text-decoration: underline;
  margin-left: 0.5rem;
}
.nav__masquerade--link svg {
  height: 1.1em;
  display: inline-block;
  margin-bottom: 0.2em;
}
.nav__masquerade--link:hover {
  text-decoration: none;
}
.nav__unmasquerade-loading {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-surface-backdrop);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav__unmasquerade-loading__text {
  margin-top: 5rem;
  color: var(--color-text-primary);
}
.nav__links {
  display: none;
}
.nav__left, .nav__center, .nav__right {
  display: flex;
  align-items: center;
}
.nav__left {
  flex: 1;
}
.nav__center {
  flex: 0 1 auto;
  justify-content: center;
}
.nav__right {
  flex: 1;
  justify-content: flex-end;
  gap: 1rem;
}
.nav__formkit-dropdown {
  margin-top: 0.5rem;
  /* Vue2 multiselect styles */
}
.nav__formkit-dropdown .multiselect__single, .nav__formkit-dropdown .multiselect__placeholder, .nav__formkit-dropdown .multiselect__input {
  color: var(--color-text-primary);
}
.nav__formkit-dropdown .multiselect__select:before {
  border-color: var(--color-text-primary) transparent transparent;
}
.nav__formkit-dropdown .multiselect__option {
  color: var(--color-text-primary);
}
.nav__formkit-dropdown .multiselect__option--selected {
  background-color: transparent !important;
}
.nav__formkit-dropdown .multiselect__option--highlight, .nav__formkit-dropdown .multiselect__option--selected.multiselect__option--highlight {
  background-color: var(--color-neutral-50);
  color: var(--color-text-primary);
  text-decoration: underline;
}
.nav__formkit-dropdown {
  /* Vue3 FormKit context switcher styles */
}
.nav__formkit-dropdown .nav__context-listitem:not([aria-selected=true]):hover, .nav__formkit-dropdown .nav__context-listitem:not([aria-selected=true]):focus-within, .nav__formkit-dropdown .nav__context-listitem:not([aria-selected=true])[data-is-active=true] {
  background-color: var(--color-neutral-50);
}
.nav__formkit-dropdown .nav__context-listitem:not([aria-selected=true]):hover .nav__context-option, .nav__formkit-dropdown .nav__context-listitem:not([aria-selected=true]):focus-within .nav__context-option, .nav__formkit-dropdown .nav__context-listitem:not([aria-selected=true])[data-is-active=true] .nav__context-option {
  text-decoration: underline;
}
.nav__formkit-dropdown .nav__context-listitem[aria-selected=true] {
  background-color: transparent;
}
.nav__formkit-dropdown .nav__context-listitem[aria-selected=true] .nav__context-option {
  font-weight: bold;
  color: var(--color-text-primary);
}
.nav__formkit-dropdown .nav__context-listitem[aria-selected=true] .nav__context-option:hover, .nav__formkit-dropdown .nav__context-listitem[aria-selected=true] .nav__context-option:focus-within, .nav__formkit-dropdown .nav__context-listitem[aria-selected=true] .nav__context-option[data-is-active=true] {
  text-decoration: underline;
}
.nav__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--color-brand-primary);
  border-radius: 50%;
  border: 1px solid var(--color-surface-base);
  animation: pulse 2s infinite;
}
.nav__badge--count {
  position: static;
  display: inline-block;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  margin-left: 0.5rem;
  background-color: var(--color-brand-primary);
  color: var(--color-surface-base) !important;
  font-weight: bold;
  line-height: 1.25rem;
  text-align: center;
  border-radius: 15%;
}
.nav__item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav__item--desktop-only {
  display: none;
}
.nav__item--mobile-only {
  display: block;
  padding: 0.5rem 0.125rem;
}
.nav__icon {
  width: 1.5rem;
  height: 1.5rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.nav__icon--gray {
  color: var(--color-text-secondary);
}
.nav__icon--small {
  width: 1rem;
  height: 1rem;
}
.nav__logo--mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.nav__logo--mobile img {
  height: 1.5rem;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.nav__logo--desktop {
  display: none;
}
.nav {
  /* Account Section */
}
.nav__account, .nav__mca {
  display: flex;
  align-items: center;
}
.nav__account-avatar, .nav__mca-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  overflow: hidden;
}
.nav__account-avatar img, .nav__mca-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nav__account--name, .nav__mca--name {
  white-space: nowrap;
  margin-right: 0.25rem;
}
.nav__account--greeting, .nav__mca--greeting {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  border-bottom: none;
  padding: 0.5rem 1rem;
  display: block;
}
.nav__account-arrow, .nav__mca-arrow {
  margin-left: 0.25rem;
}
.nav {
  /* Common menu styles */
}
.nav__menu {
  display: none;
  position: absolute;
  top: 3.5rem;
  background-color: var(--color-surface-base);
  width: 18rem;
  max-height: 0;
  overflow: hidden;
  overflow-y: auto;
  transition: max-height 0.3s ease-out;
  box-shadow: var(--shadow-md);
  z-index: 1000;
}
.nav__menu--open {
  display: block;
  max-height: calc(100vh - 3.5rem);
}
.nav {
  /* Account Menu */
}
.nav__account-menu, .nav__help-menu {
  right: 0;
}
.nav__drawer {
  left: 0;
}
.nav {
  /* Styles for menu lists */
}
.nav__menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.nav__menu ul li {
  padding: 0.75rem 1rem;
  border-bottom: 0.0625rem solid var(--color-neutral-100);
}
.nav__menu ul li:last-child {
  border-bottom: none;
}
.nav__menu ul li .nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  width: 100%;
}
.nav__menu ul li a,
.nav__menu ul li span {
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 1rem;
}
.nav__menu ul li a:hover {
  text-decoration: underline;
}
.nav__menu ul li {
  /* Submenu */
}
.nav__menu ul li ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 1rem;
}
.nav__menu ul li ul.nav__submenu--open {
  max-height: 100vh;
}
.nav__menu ul li ul li {
  padding: 0.5rem 0;
}
.nav__menu ul li ul li:first-child {
  padding-top: 0.75rem;
}
.nav__menu ul li ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.nav {
  /* Larger screens */
}
@media (min-width: 1200px) {
  .nav__left {
    display: flex;
    align-items: center;
  }
  .nav__right {
    gap: 2rem;
  }
  .nav__item {
    display: flex;
  }
  .nav__item--mobile-only {
    display: none;
  }
  .nav__item--desktop-only {
    display: flex;
  }
  .nav__item--message {
    position: relative;
  }
  .nav__help {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .nav__messages {
    position: relative;
  }
  .nav__menu--toggle {
    display: none;
  }
  .nav__masquerade {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav__links {
    display: flex;
    gap: 2.5rem;
  }
  .nav__links a {
    color: var(--color-text-primary);
  }
  .nav__link {
    display: flex;
    text-decoration: none !important;
  }
  .nav__logo--desktop {
    display: block;
  }
  .nav__logo--desktop img {
    height: 1.5rem;
    margin-right: 3rem;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .nav__logo--mobile {
    display: none;
  }
  .nav__icon--small {
    width: 1rem;
    height: 1rem;
  }
  .nav__group {
    position: relative;
  }
  .nav__group:hover > .nav__submenu {
    display: block;
  }
  .nav__group--title {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    color: var(--color-text-primary);
  }
  .nav__group-button {
    background: none;
  }
  .nav__submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-surface-base);
    padding: 0.5rem 1rem;
    box-shadow: var(--shadow-md);
    min-width: 18rem;
    z-index: 1000;
  }
  .nav__submenu--item {
    position: relative;
  }
  .nav__submenu--item .nav__link--sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    background: none;
  }
  .nav__submenu--item .nav__link--sub span {
    text-decoration: none;
  }
  .nav__submenu--item .nav__link--sub:hover span {
    text-decoration: underline;
  }
  .nav__submenu--item .nav__link--sub:hover .nav__icon--small {
    color: var(--color-text-primary);
  }
  .nav__submenu--item .nav__link--sub:hover > .nav__submenu--sub {
    display: block;
  }
  .nav__submenu--sub {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 18rem;
    border-radius: 4px;
    background-color: var(--color-surface-base);
    z-index: 1000;
  }
  .nav__submenu--open {
    display: block;
    max-height: calc(100vh - 3.5rem);
  }
  .nav__submenu:hover {
    display: block;
  }
  .nav__submenu li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-neutral-100);
  }
  .nav__submenu li:last-child {
    border-bottom: none;
  }
  .nav__submenu li a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 1rem;
    display: block;
    width: 100%;
  }
  .nav__submenu li a:hover {
    text-decoration: underline;
    display: block;
  }
  .nav__submenu li:hover > .nav__submenu--sub {
    display: block;
  }
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .nav__links {
    gap: 1.8rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.applicant-page-heading {
  background-color: var(--color-brand-primary);
  padding: 1rem 1.25rem;
  border-radius: 8px;
}
.applicant-page-heading__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-inverse);
}

.base-table {
  width: 100%;
}
.base-table__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.875rem;
  background-color: var(--color-surface-base);
  border-radius: 8px;
  overflow: hidden;
}
.base-table thead {
  background-color: var(--color-brand-primary);
  color: var(--color-surface-base);
}
.base-table .base-table__header {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  white-space: nowrap;
}
.base-table .base-table__row {
  border-bottom: 1px solid var(--color-border-light);
}
.base-table .base-table__row:hover {
  background-color: var(--color-neutral-50);
}
.base-table .base-table__cell {
  padding: 0.75rem 1rem;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text-primary);
}
.base-table .base-table__cell a {
  color: var(--color-interactive-primary);
  text-decoration: none;
}
.base-table .base-table__cell a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .base-table__table, .base-table__table thead, .base-table__table tbody, .base-table__table th, .base-table__table td, .base-table__table tr {
    display: block;
    width: 100%;
  }
  .base-table__table thead {
    display: none;
  }
  .base-table .base-table__row {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    background: var(--color-surface-base);
    padding: 1rem;
  }
  .base-table .base-table__cell {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 1px solid var(--color-border-light);
  }
  .base-table .base-table__cell:last-child {
    border-bottom: none;
  }
  .base-table .base-table__cell::before {
    content: attr(data-label);
    font-weight: bold;
    color: var(--color-text-primary);
    margin-right: 1rem;
    flex: 0 0 40%;
    max-width: 40%;
  }
}

.applicant-empty-message__container {
  padding: 1rem;
  background-color: var(--color-neutral-50);
  border-radius: 12px;
  font-size: 1rem;
  color: var(--color-text-primary);
}

.applicant-agenda__main {
  max-width: 140em;
  padding: 1.25rem;
  margin: 0 auto;
}
.applicant-agenda .agenda-section {
  margin-top: 2rem;
  background: var(--color-surface-base);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: var(--shadow-elevation-low);
}
.applicant-agenda .agenda-section__heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}
.applicant-agenda .agenda-section .agenda-table-wrapper {
  overflow-x: auto;
}

.breadcrumbs {
  font-size: 0.75rem;
  margin-bottom: 1rem;
}
.breadcrumbs__list {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs__link {
  text-decoration: underline;
  color: var(--color-text-secondary);
}
.breadcrumbs__text {
  color: var(--color-text-secondary);
}
.breadcrumbs__separator {
  margin: 0 0.25rem;
  color: var(--color-text-muted);
}

.timeslots__main {
  max-width: 140em;
  padding: 1.25rem;
  margin: 0 auto;
}
.timeslots__org-group {
  padding: 1rem;
}
.timeslots__org-title {
  font-size: 1.125rem;
  color: var(--color-text-primary);
}

.timeslot-card__row {
  display: grid;
  grid-template-columns: 20% 1fr 20%;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--color-neutral-100);
}
.timeslot-card__left {
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.timeslot-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  color: var(--color-text-primary);
}
.timeslot-card__middle {
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}
.timeslot-card__timeslot-name {
  font-weight: 500;
  margin: 0;
}
.timeslot-card__timeslot-date {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}
.timeslot-card__actions {
  display: flex;
  align-items: end;
  gap: 0.75rem;
  flex-direction: column;
}
.timeslot-card__details {
  padding: 1rem;
  position: relative;
}
.timeslot-card__details--assigning {
  overflow: hidden;
}
.timeslot-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeslot-card__overlay--blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.4);
}
.timeslot-card__button {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.timeslot-card__loading {
  padding: 1rem 0;
  margin: 0 auto;
}
.timeslot-card__session-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 1rem;
  justify-items: center;
}
.timeslot-card__session-item {
  background: var(--color-neutral-50);
  border: 1px solid var(--color-neutral-100);
  border-radius: 4px;
  padding: 0.75rem;
  width: 100%;
}
.timeslot-card__session-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.timeslot-card__session-info {
  font-size: 0.875rem;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}
.timeslot-card__session-description {
  font-size: 0.875rem;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}
.timeslot-card__timeslot {
  display: grid;
  grid-template-columns: 3rem auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
}
.timeslot-card__time {
  font-size: 0.9rem;
  color: var(--color-text-primary);
  text-align: right;
  padding-right: 0.5rem;
}
.timeslot-card__selected {
  border: 1px solid var(--color-brand-primary);
  background: var(--color-primary-lower);
  color: var(--color-brand-primary);
  text-align: center;
  padding: 0.3rem 0.5rem;
  font-size: 0.85rem;
}
.timeslot-card__unavailable {
  border: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
  text-align: center;
  padding: 0.3rem 0.5rem;
  font-size: 0.85rem;
}
.timeslot-card__open {
  border: 1px dashed var(--color-border-light);
  color: var(--color-text-secondary);
  text-align: center;
  padding: 0.3rem;
  font-size: 0.85rem;
}
.timeslot-card__closed-pill {
  display: inline-block;
  background-color: var(--color-surface-base);
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  margin-left: 0.5rem;
  cursor: pointer;
}
.timeslot-card {
  /* Responsive breakpoints for timeslots (4->3->2->1) */
}
@media (max-width: 1200px) {
  .timeslot-card__session-list {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
}
@media (max-width: 900px) {
  .timeslot-card__session-list {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}
@media (max-width: 600px) {
  .timeslot-card__session-list {
    grid-template-columns: 1fr;
  }
  .timeslot-card__row {
    grid-template-columns: 1fr;
    row-gap: 0.75rem;
  }
  .timeslot-card__middle {
    align-items: flex-start;
    text-align: left;
  }
  .timeslot-card__actions {
    justify-content: flex-start;
  }
}

/* Accordion transition */
.accordion-enter-active,
.accordion-leave-active {
  transition: all 0.25s ease;
}

.accordion-enter-from,
.accordion-leave-to {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.base-card {
  background: var(--color-surface-base);
  border-radius: 8px;
  margin: 1rem 0;
  box-shadow: var(--shadow-elevation-low);
}
.base-card--padded {
  padding: 1rem;
}

.auth-container, .forgot-password, .user-location, .login {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 5% 0;
}

.auth-logo, .forgot-password__logo, .user-location__logo, .login__logo {
  display: block;
  margin: 50px auto;
  width: 50px;
  height: 50px;
  /* Remove background image styles since we're now using an img element */
}

.auth-card, .forgot-password__card, .user-location__card, .login__card {
  padding: 40px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-bg);
  box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.45em;
  overflow: hidden;
}

.auth-heading, .forgot-password__heading, .user-location__heading, .login__heading {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 1em;
  color: var(--color-text-primary);
}
.auth-heading small, .forgot-password__heading small, .user-location__heading small, .login__heading small {
  font-size: 12px;
  font-weight: normal;
}
@media screen and (max-width: 450px) {
  .auth-heading.--center-mobile, .--center-mobile.forgot-password__heading, .--center-mobile.user-location__heading, .--center-mobile.login__heading {
    text-align: center;
  }
}

.auth-error, .forgot-password__error, .login__error {
  color: var(--color-error-dark);
  font-size: 0.75rem;
  line-height: 2em;
}

.auth-button, .forgot-password__button, .user-location__button, .login__button {
  padding: 10px 0px;
  font-size: 16px;
  font-weight: 700;
}

.auth-login-link, .login__forgot-password {
  color: var(--color-interactive-primary);
  display: block;
  margin-top: 25px;
  text-align: center;
  text-decoration: underline;
}

.auth-subtext, .forgot-password__subtext, .login__subtext {
  text-align: center;
  margin-top: 25px;
  padding: 0 50px 50px;
}

.auth-signup-link, .forgot-password__link, .user-location__link, .login__link {
  color: var(--color-interactive-primary);
  font-weight: 400;
  text-decoration: underline;
}

.auth-bottom-link, .forgot-password__back-to-login {
  color: var(--color-text-secondary);
  display: block;
  margin-top: 25px;
  text-align: center;
  text-decoration: underline;
}

/* Screen Reader Accessibility */
.screen-reader-text {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.screen-reader-text.focusable:active, .screen-reader-text.focusable:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

.is-button-active, .forgot-password__button--active, .user-location__button--active, .login__button--active {
  background-color: var(--color-interactive-primary) !important;
  color: var(--color-text-inverse) !important;
}
.is-button-active:hover:not(:focus-visible), .forgot-password__button--active:hover:not(:focus-visible), .user-location__button--active:hover:not(:focus-visible), .login__button--active:hover:not(:focus-visible) {
  color: var(--color-text-inverse) !important;
  background-color: var(--color-brand-primary) !important;
  box-shadow: 0 4px 8px var(--color-border-light);
}
.is-button-active:hover:focus-visible, .forgot-password__button--active:hover:focus-visible, .user-location__button--active:hover:focus-visible, .login__button--active:hover:focus-visible {
  color: var(--color-text-inverse) !important;
  background-color: var(--color-brand-primary) !important;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 6px var(--color-brand-primary), 0 4px 8px var(--color-border-light);
}

.is-button-hoverable:hover:not(:focus-visible), .forgot-password__button:hover:not(:focus-visible), .user-location__button:hover:not(:focus-visible), .login__button:hover:not(:focus-visible) {
  box-shadow: 0 4px 8px var(--color-border-light);
}

.is-button-hoverable:hover:focus-visible, .forgot-password__button:hover:focus-visible, .user-location__button:hover:focus-visible, .login__button:hover:focus-visible {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 6px var(--color-brand-primary), 0 4px 8px var(--color-border-light);
}

.login__card {
  max-width: 425px;
}
.login__button {
  margin-top: 5px;
  /* Override Tailwind classes for disabled state */
}
.login__button:disabled {
  color: var(--color-text-muted) !important;
  background-color: var(--color-neutral-100) !important;
}
.login__button {
  /* Override Tailwind classes for enabled state */
}
.login__button:not(:disabled) {
  color: var(--color-text-inverse) !important;
  background-color: var(--color-interactive-primary) !important;
  border-color: var(--color-interactive-primary) !important;
}
.login__button:not(:disabled):hover {
  background-color: var(--color-brand-primary-dark) !important;
  border-color: var(--color-brand-primary-dark) !important;
  color: var(--color-text-inverse) !important;
}
.login .formkit-inner {
  background-color: var(--color-neutral-50);
}
.login [data-invalid] .formkit-inner {
  border-color: var(--color-error);
  box-shadow: 0 0 0 1px var(--color-error);
}
.login .form-group {
  margin-bottom: 1rem;
}
.login .form-group__label {
  line-height: 1.5em;
  padding-bottom: 0.25em;
  font-size: 1rem;
}
.login .form-group input {
  height: 40px;
  background-color: var(--color-neutral-50);
  /* Fix WCAG 2.1 AA contrast violation for placeholder text */
}
.login .form-group input::-moz-placeholder {
  color: var(--color-border-strong);
}
.login .form-group input::placeholder {
  color: var(--color-border-strong);
}
.login .form-group__error {
  border-color: var(--color-error-dark);
}

.user-location__card {
  max-width: 500px;
}
.user-location__heading {
  line-height: 1.2;
}
.user-location__headingSubtext {
  font-size: 0.875rem;
  color: grey;
  position: relative;
  top: -0.75em;
  margin-bottom: 20px;
}
.user-location__checkbox {
  margin-top: 20px;
}
.forgot-password__card {
  max-width: 500px;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group__label {
  line-height: 1.5em;
  padding-bottom: 0.25em;
  font-size: 1rem;
}
.form-group input {
  height: 40px;
  background-color: var(--color-neutral-50);
}
.form-group__error {
  border-color: var(--color-error-dark);
}

.spinner {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-neutral-50);
  z-index: 9999;
}
.spinner__logo {
  height: 60px;
  width: 60px;
  transform-origin: center;
  animation: spinner-rotate 2.5s infinite ease-in-out;
  will-change: transform;
}
.spinner__symbols {
  stroke: none;
  fill: none;
  fill-rule: evenodd;
}
.spinner__color {
  transform: translate(-3px, -13px);
  fill: var(--color-brand-logo);
  fill-rule: nonzero;
}

@keyframes spinner-rotate {
  0% {
    transform: perspective(300px) rotateY(0deg);
  }
  50% {
    transform: perspective(300px) rotateY(180deg);
  }
  100% {
    transform: perspective(300px) rotateY(360deg);
  }
}
.data-export {
  padding-top: 25px;
  padding-bottom: 25px;
  margin-left: 25px;
  margin-right: 25px;
}
.data-export__container {
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
  padding: 40px 25px;
  box-sizing: border-box;
}
.data-export__header .breadcrumbs {
  margin-bottom: 5px;
}
.data-export__header h1 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.data-export__header .description {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 15px;
}
.data-export__component {
  margin-top: 25px;
}
.data-export__component .component-header {
  display: grid;
  grid-template-columns: 200px auto;
  align-items: center;
  margin-bottom: 5px;
}
.data-export__component .component-header .component-title {
  display: flex;
  align-items: center;
}
.data-export__component .component-header .component-title img {
  width: 1em;
  height: 1em;
  fill: var(--color-text-secondary);
  margin-right: 5px;
}
.data-export__component .component-header .component-title .component-name {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
}
.data-export__component .component-header .component-format {
  font-size: 10px;
  font-weight: 700;
  background-color: var(--color-neutral-100);
  color: var(--color-text-primary);
  padding: 5px;
  border-radius: 14px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}
.data-export__component .component-description {
  font-size: 1rem;
  color: var(--color-text-primary);
}
.data-export__divider {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: 25px 0;
}
.data-export__link {
  color: var(--color-interactive-primary);
  font-weight: 700;
}

.confirmation-dialog {
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-bg);
  box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0.45em;
}
.confirmation-dialog__dialog-box {
  overflow: hidden;
  max-width: 320px;
  text-align: center;
}
.confirmation-dialog__dialog-box.error .confirmation-dialog__dialog-header {
  background: var(--color-error);
}
.confirmation-dialog__dialog-box.success .confirmation-dialog__dialog-header {
  background: var(--color-success);
}
.confirmation-dialog__dialog-box.highlight .confirmation-dialog__dialog-header {
  background: var(--color-accent);
}
.confirmation-dialog__dialog-box.warning .confirmation-dialog__dialog-header {
  background: var(--color-warning);
  color: var(--color-black);
}
.confirmation-dialog__dialog-header {
  padding: 10px;
  display: flex;
  justify-content: center;
  color: var(--color-surface-base);
}
.confirmation-dialog__dialog-content {
  padding: 1rem 1rem;
}
.confirmation-dialog__dialog-content .title {
  font-size: 1rem;
}
.confirmation-dialog__dialog-content .description {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-primary);
}
.confirmation-dialog__dialog-footer {
  padding: 10px;
  border-top: 1px solid var(--color-neutral-100);
}
.confirmation-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.media-library {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  min-height: 90vh;
  position: relative;
}
.media-library__content {
  flex: 1;
}
.media-library__content--links {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.media-library__content--links a {
  display: inline-block;
  text-decoration: none;
}
.media-library__content--links a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .media-library {
    padding: 1rem;
  }
}
.media-library__desktop-only {
  display: none;
}
.media-library__mobile-only {
  display: none;
}
@media (min-width: 768px) {
  .media-library__desktop-only {
    display: flex !important;
  }
  .media-library__mobile-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .media-library__desktop-only {
    display: none !important;
  }
  .media-library__mobile-only {
    display: flex !important;
  }
}
.media-library__desktop-upload {
  justify-content: end;
  margin-bottom: 2rem;
  width: 100%;
}
.media-library__desktop-upload button {
  display: flex;
}
.media-library__desktop-controls {
  display: grid;
  width: 100%;
  grid-template-columns: auto 1fr auto;
  grid-gap: 4rem;
  align-items: center;
  margin-bottom: 1rem;
}
.media-library__desktop-controls button {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .media-library__desktop-controls {
    display: none;
  }
}
.media-library__desktop-controls--container {
  position: relative;
}
.media-library__desktop-searchwrap {
  width: 100%;
  margin-bottom: 1rem;
}
.media-library__mobile-top {
  width: 100%;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.media-library__mobile-search {
  flex: 1 1;
}
.media-library__mobile-controls {
  width: 100%;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.media-library__mobile-controls button {
  margin-bottom: 1rem;
}
.media-library__popover {
  position: absolute;
  top: 2.5rem;
  left: 0;
  width: 220px;
  border: 1px solid var(--color-border-light);
  background-color: var(--color-surface-base);
  padding: 0.75rem;
  border-radius: 6px;
  box-shadow: 0 4px 8px hsla(240, 8%, 12%, 0.15);
  z-index: 100;
}
.media-library__popover--filters {
  display: flex;
  flex-direction: column;
}
.media-library__popover--filters h5 {
  margin: 0.5rem 0 0.2rem;
  font-weight: 600;
  font-size: 0.85rem;
}
.media-library__popover--filters--visibility {
  display: flex;
  gap: 0.25rem;
}
@media (max-width: 767px) {
  .media-library__sort {
    margin-left: auto;
  }
}
.media-library__empty-message {
  margin-top: 2rem;
  font-style: italic;
  color: var(--color-text-secondary);
  text-align: center;
}
.media-library__filters-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
}
.media-library__trash-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.25rem;
}
.media-library__filters-arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.25rem;
}
.media-library__filter-button {
  display: flex;
}
.media-library__drop-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: hsla(0, 0%, 100%, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-library__drop-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.media-library__drop-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}
.media-library__filter-container {
  position: relative;
}
.media-library__pagination-bar {
  margin-top: auto;
  padding: 0.5rem 1rem;
  width: 100%;
}

.uploader__hidden-file-input {
  display: none;
}

.media-item {
  border: 1px solid var(--color-border-light);
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  position: relative;
}
.media-item__preview {
  cursor: pointer;
}
.media-item__thumb {
  display: block;
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 0.5rem;
}
.media-item__fallback {
  width: 100%;
  height: 150px;
  background-color: var(--color-neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  text-align: center;
}
.media-item__footer {
  display: flex;
  align-items: baseline;
}
.media-item__type-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.media-item__text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.media-item__name {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  margin-right: 0.5rem;
}
.media-item__ellipsis-wrapper {
  position: relative;
  flex-shrink: 0;
}
.media-item__ellipsis {
  cursor: pointer;
  height: 1.25rem;
  display: inline-flex;
}
.media-item__ellipsis-toggle {
  display: inline-flex;
  border-radius: 4px;
}
.media-item__action-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.media-item__failed {
  display: flex;
  justify-content: center;
}
.media-item__failed--text {
  font-size: 0.9rem;
}
.media-item__cursor {
  cursor: pointer;
}
.media-item__menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  min-width: 120px;
  box-shadow: 0 4px 8px hsla(240, 8%, 12%, 0.1);
  z-index: 10;
}
.media-item__menu__progress-text {
  font-size: 0.9rem;
  color: var(--color-text-primary);
  margin-right: 0.5rem;
}
.media-item__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.media-item__menu li {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  cursor: pointer;
}
.media-item__menu li:hover {
  background-color: var(--color-neutral-100);
}
.media-item__icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.4rem;
}

.media-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

@media (max-width: 1200px) {
  .media-modal-wrapper {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .media-modal-wrapper {
    width: 90%;
    max-height: calc(100vh - 1rem);
    overflow-y: auto;
  }
}

.media-edit-modal {
  display: grid;
  gap: 1rem;
  min-height: 500px;
}
.media-edit-modal__header {
  padding: 0.75rem 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.media-edit-modal__header-desktop {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  position: relative;
}
.media-edit-modal__header--title {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.media-edit-modal__nav-arrow {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}
.media-edit-modal__counter {
  font-weight: 500;
  color: var(--color-text-primary);
}
.media-edit-modal__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.media-edit-modal__preview-frame {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  background: var(--color-neutral-50);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}
.media-edit-modal__preview-frame--document {
  display: block;
}
.media-edit-modal__preview-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.media-edit-modal__no-thumbnail {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}
.media-edit-modal__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.media-edit-modal__control-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.media-edit-modal__small-btn {
  padding: 0.3rem 0.5rem;
  font-size: 0.75rem;
}
.media-edit-modal__icon {
  width: 0.8rem;
  height: 0.8rem;
}
.media-edit-modal__middle {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.media-edit-modal__modal-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.media-edit-modal__metadata-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.media-edit-modal__fields-section {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2rem;
}
.media-edit-modal__save-btn {
  margin-top: 1rem;
}
@media (min-width: 1200px) {
  .media-edit-modal__save-btn {
    align-self: flex-end;
    width: 10rem;
  }
}

.media-view-modal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.media-view-modal__image {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.media-view-modal__no-image {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--color-text-secondary);
}
.media-view-modal__description {
  margin-top: 1rem;
}

.media-info-section {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  grid-template-areas: "title downloads" "newtab newtab" "items items";
}
@media (max-width: 768px) {
  .media-info-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "title" "downloads" "newtab" "items";
  }
}
.media-info-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}
.media-info-section__downloads {
  grid-area: downloads;
  display: flex;
  align-items: center;
}
.media-info-section__newtab {
  grid-area: newtab;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.media-info-section__items {
  grid-area: items;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .media-info-section__items {
    width: 70%;
    flex-direction: row;
  }
}
.media-info-section__title {
  grid-area: title;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .media-info-section__title {
    width: 100%;
  }
}
.media-info-section__icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
}
.media-info-section__item {
  display: flex;
}
@media (min-width: 768px) {
  .media-info-section__item {
    width: 100%;
    flex-direction: column;
  }
}
.media-info-section__topline {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.media-info-section__item-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.media-info-section__label {
  font-weight: 600;
  margin-right: 0.25rem;
}
.media-info-section__open-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-brand-primary);
}
.media-info-section__open-link:hover {
  text-decoration: underline;
}

.media-modal-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.media-modal-header__desktop {
  display: none;
}
.media-modal-header__mobile {
  display: block;
}
@media (min-width: 768px) {
  .media-modal-header__desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .media-modal-header__mobile {
    display: none;
  }
}
.media-modal-header__counter {
  font-size: 0.9rem;
  color: var(--color-text-primary);
}
.media-modal-header__mobile-title {
  font-weight: 600;
  font-size: 1.25rem;
}
.media-modal-header__arrow {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}
.media-modal-header__mobile-counter {
  font-size: 0.9rem;
  color: var(--color-text-primary);
}
.media-modal-header__mobile-controls {
  display: flex;
  align-items: center;
}
.media-modal-header__edit-btn {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
}
.media-modal-header__icon {
  width: 1rem;
  height: 1rem;
}

.media-modal-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .media-modal-title {
    display: none;
  }
}
.media-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.media-preview img,
.media-preview video {
  -o-object-fit: contain;
     object-fit: contain;
}
@media (orientation: landscape) {
  .media-preview img,
  .media-preview video {
    aspect-ratio: 16/9;
  }
}
@media (orientation: portrait) {
  .media-preview img,
  .media-preview video {
    aspect-ratio: auto;
  }
}
.media-preview__document {
  width: 100%;
  min-height: 600px;
}

.media-downloads__desktop {
  display: none;
}
.media-downloads__mobile {
  display: block;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .media-downloads__desktop {
    display: inline-block;
    position: relative;
  }
  .media-downloads__mobile {
    display: none;
  }
}
.media-downloads__menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}
.media-downloads__icon {
  width: 1.1rem;
  height: 1.1rem;
}
.media-downloads__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  width: 16rem;
  box-shadow: 0 4px 8px hsla(240, 8%, 12%, 0.1);
  z-index: 10;
  padding: 0.25rem 1rem;
}
.media-downloads__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 2rem;
}
.media-downloads__item:last-child {
  margin-bottom: 0;
}
.media-downloads__heading {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap; /* so it doesn't overflow on small screens */
  justify-content: center;
}
.pagination__arrow {
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}
.pagination__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.pagination__icon {
  width: 1.25rem;
  height: 1.25rem;
}
.pagination__info {
  min-width: 4rem;
  text-align: center;
}
.pagination__info input {
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  width: 5rem;
}
.pagination__goto {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.pagination__perpage {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: none;
}
.pagination__perpage select {
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
}
@media screen and (max-width: 640px) {
  .pagination__perpage label {
    display: none;
  }
}

.application-review {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  background: var(--color-surface-base);
}
.application-review__card {
  margin: 0 0 1rem 0;
  border-radius: 0 0 8px 8px;
}
.application-review__tags-mobile {
  display: none;
}
@media (max-width: 1199px) {
  .application-review__tags-mobile {
    display: block;
    background: none;
    padding: 0.75rem;
  }
  .application-review__tags-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    row-gap: 0.5rem;
  }
}
.application-review__highlights-header {
  display: grid;
  grid-template-columns: 2fr 4fr;
  min-height: 2rem;
  background: linear-gradient(180deg, var(--color-gradient-light) 0%, var(--color-gradient-lighter) 100%);
}
@media (max-width: 1199px) {
  .application-review__highlights-header {
    grid-template-columns: 1fr;
  }
}
.application-review__highlights-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.25rem;
}
.application-review__highlights-title h3 {
  font-weight: 700;
  letter-spacing: 0.00938rem;
}
.application-review__highlights-title h3 span {
  color: var(--color-primary-deep);
  cursor: pointer;
}
.application-review__highlights-tags {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  flex-wrap: wrap;
  padding: 0.25rem;
}
@media (max-width: 1199px) {
  .application-review__highlights-tags {
    display: none;
  }
}
.application-review__body {
  display: flex;
  flex: 1;
  position: relative;
}
@media (min-width: 1200px) {
  .application-review__body {
    flex-direction: row;
  }
}
@media (max-width: 1199px) {
  .application-review__body {
    flex-direction: column;
  }
}
.application-review__content {
  position: relative;
  background: var(--color-surface-base);
}
@media (min-width: 1200px) {
  .application-review__content {
    width: 50%;
    padding-right: 1rem;
  }
}

.application-review__pages {
  background: var(--color-surface-base);
  padding: 1rem 0.5rem;
  border-radius: 0.375rem;
  min-height: 300px;
  width: 100%;
}
@media (min-width: 1200px) {
  .application-review__pages {
    padding: 1rem 2rem;
  }
}
.application-review .application-review-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 80vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  z-index: 10;
}
.application-review .application-review-modal-container {
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-light);
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px 0 rgba(40, 41, 61, 0.08), 0 1.5px 3px 0 rgba(40, 41, 61, 0.04);
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1rem;
}
.application-review .application-review-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid var(--color-border-light);
  background: var(--color-surface-base);
}
.application-review__mobile-toggle {
  display: none;
  writing-mode: vertical-rl;
}
@media (max-width: 1199px) {
  .application-review__mobile-toggle {
    display: block;
    position: absolute;
    top: 8rem;
    right: 0;
    transform: translateX(50%);
    z-index: 101;
  }
  .application-review__mobile-toggle.is-open {
    left: 0;
    right: auto;
    transform: translateX(-50%);
  }
}
.application-review__adjudication {
  background: var(--color-surface-base);
  display: none;
}
@media (min-width: 1200px) {
  .application-review__adjudication {
    display: block;
    width: 50%;
    border-left: 1px solid var(--color-border-light);
  }
}
@media (max-width: 1199px) {
  .application-review__adjudication {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
  }
  .application-review__adjudication.is-open {
    transform: translateX(0);
    display: block;
  }
}

.highlights-enter-active,
.highlights-leave-active {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.highlights-enter-from,
.highlights-leave-to {
  opacity: 0;
  max-height: 0;
}

.highlights-enter-to,
.highlights-leave-from {
  opacity: 1;
  max-height: 2000px;
}

.print-application-content {
  display: none;
}
@media print {
  .print-application-content {
    display: block;
  }
}

.application-header {
  height: 4.62rem;
  padding: 1rem 1rem;
}
.application-header__container {
  display: grid;
  grid-template-columns: 1fr auto;
}
.application-header__left {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}
.application-header__title {
  color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 600;
}
.application-header__toggle {
  padding-top: 0.5rem;
}
@media (max-width: 767px) {
  .application-header {
    height: auto;
  }
  .application-header__container {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .application-header__left {
    grid-auto-flow: column;
    justify-content: space-between;
  }
  .application-header__title {
    font-size: 1.25rem;
  }
}
@media print {
  .application-header {
    display: none;
  }
}

.application-program {
  background: var(--color-surface-base);
  border-radius: 8px 8px 0 0;
  transition: all 0.15s ease-out;
}
.application-program__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  min-height: 7.88rem;
  height: auto;
  align-items: stretch;
  transition: min-height 0.15s ease-out, height 0.15s ease-out;
}
@media (max-width: 1199px) {
  .application-program__content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "profile program" "stage schedule";
    height: auto;
    align-items: start;
  }
}
@media (max-width: 480px) {
  .application-program__content {
    grid-template-columns: 1fr;
    grid-template-areas: "profile" "program" "stage" "schedule";
  }
}
.application-program__profile {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9375rem;
  position: relative;
  transition: padding 0.15s ease-out, gap 0.15s ease-out;
}
.application-program__profile::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.0625rem;
  height: 100%;
  background: var(--color-border-light);
  border-right: 1px solid var(--color-border-light);
}
@media (max-width: 1199px) {
  .application-program__profile::after {
    display: none;
  }
}
.application-program__headshot {
  width: 5rem;
  height: 6.25rem;
  transition: width 0.15s ease-out, height 0.15s ease-out;
}
.application-program__headshot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.application-program__placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-surface-base);
}
.application-program__notify {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}
@media (min-width: 1200px) {
  .application-program__notify {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
  }
}
.application-program__notify .brand-checkbox {
  line-height: 1.2;
}
.application-program__notify .brand-checkbox .brand-checkbox__label {
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .application-program__notify .brand-checkbox .brand-checkbox__label {
    white-space: normal;
  }
}
.application-program__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.application-program__name-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.application-program__name {
  color: var(--color-text-primary);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 0.975rem;
  transition: font-size 0.15s ease-out, line-height 0.15s ease-out;
}
@media (max-width: 1199px) {
  .application-program__name {
    font-size: 1.125rem;
  }
}
.application-program__details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.5rem;
  transition: gap 0.15s ease-out, padding-top 0.15s ease-out;
}
.application-program__app-id, .application-program__submission-date {
  color: var(--color-text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  transition: font-size 0.15s ease-out;
}
.application-program__details-value {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--color-text-primary);
  transition: font-size 0.15s ease-out;
}
.application-program__section {
  position: relative;
  padding: 0.9375rem;
  word-break: break-word;
  transition: padding 0.15s ease-out;
}
.application-program__section:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.0625rem;
  height: 100%;
  background: var(--color-border-light);
}
@media (max-width: 1199px) {
  .application-program__section:not(:last-child)::after {
    display: none;
  }
}
.application-program__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.application-program__label {
  display: flex;
  color: var(--color-text-subtle);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.125rem;
  letter-spacing: 0.05em;
  transition: font-size 0.15s ease-out, line-height 0.15s ease-out;
}
.application-program__display-text {
  font-weight: 700;
  line-height: 1.3125rem;
  transition: font-size 0.15s ease-out, line-height 0.15s ease-out;
}
.application-program__schedule-item {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.application-program__schedule-name {
  color: var(--color-text-muted);
  font-weight: 700;
}
.application-program__schedule-container {
  max-height: 5rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border-light) transparent;
}
.application-program .cancel-icon {
  color: var(--color-error-dark);
}
.application-program .brand-icon {
  padding-top: 0;
}
@media (min-width: 1200px) {
  .application-program.is-sticky-active {
    position: sticky;
    top: 0;
    z-index: 15;
    background: var(--color-surface-base);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 0.3px 0.4px rgba(0, 0, 0, 0.025), 0 0.9px 1.5px rgba(0, 0, 0, 0.05), 0 3.5px 6px rgba(0, 0, 0, 0.1);
  }
  .application-program.is-sticky-active .application-program__content {
    min-height: 6rem;
    height: 6rem;
    overflow: hidden;
  }
  .application-program.is-sticky-active .application-program__profile {
    padding: 0.5rem;
    gap: 0.75rem;
  }
  .application-program.is-sticky-active .application-program__headshot {
    width: 3.5rem;
    height: 5rem;
  }
  .application-program.is-sticky-active .application-program__name {
    font-size: 1.125rem;
    line-height: 1.2;
  }
  .application-program.is-sticky-active .application-program__details {
    gap: 0.125rem;
    padding-top: 0.25rem;
  }
  .application-program.is-sticky-active .application-program__app-id,
  .application-program.is-sticky-active .application-program__submission-date {
    font-size: 0.6875rem;
  }
  .application-program.is-sticky-active .application-program__details-value {
    font-size: 0.75rem;
  }
  .application-program.is-sticky-active .application-program__section {
    padding: 0.5rem;
  }
  .application-program.is-sticky-active .application-program__label {
    font-size: 0.75rem;
    line-height: 1;
  }
  .application-program.is-sticky-active .application-program__display-text {
    font-size: 0.875rem;
    line-height: 1.2;
  }
  .application-program.is-sticky-active .application-program__schedule-container {
    max-height: 3.7rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border-light) transparent;
  }
  .application-program.is-sticky-active .application-program__schedule-item {
    font-size: 0.75rem;
    line-height: 1.2;
    margin-bottom: 0.125rem;
  }
  .application-program.is-sticky-active .application-program__schedule-item:last-child {
    margin-bottom: 0;
  }
  .application-program.is-sticky-active button[aria-label="Print application review"],
  .application-program.is-sticky-active .brand-icon {
    display: none;
  }
}

.application-about {
  min-height: 6.75rem;
}
.application-about__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem 1rem;
  padding: 0.9375rem;
}
@media (max-width: 1199px) {
  .application-about__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .application-about__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.application-about__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.application-about__label {
  color: var(--color-text-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.1375rem;
}
.application-about__value {
  color: var(--color-text-primary);
  font-size: 0.875rem;
  line-height: 1.3125rem;
}

.application-review-page-set {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.application-review-page-set__mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.application-review-page-set__mobile label {
  font-size: 0.9rem;
}
.application-review-page-set__mobile select {
  border: 1px solid var(--color-text-primary);
  border-radius: 0.25rem;
  font-size: 0.9rem;
  width: 100%;
}
.application-review-page-set__tabs {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--color-text-primary);
}
.application-review-page-set__tab {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  cursor: pointer;
  color: var(--color-text-secondary);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1em;
}
.application-review-page-set__tab--active {
  color: var(--color-primary-deep);
  border-bottom: 3px solid var(--color-primary-deep);
  font-weight: 500;
}
@media (min-width: 1200px) {
  .application-review-page-set__mobile {
    display: none;
  }
  .application-review-page-set__tabs {
    display: flex;
    gap: 1rem;
  }
}

.application-review__header--about {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 0.5rem 1rem;
}
.application-review__header--about--title {
  grid-column: 1/-1;
  font-size: 1em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 0.2rem;
}
.application-review__header--about--item--label {
  display: block;
  font-size: 0.65em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-secondary);
}
.application-review__header--about--item--value {
  display: block;
  font-style: italic;
}
.application-review__header--about--item--value a {
  color: var(--color-interactive-primary);
  text-decoration: none;
}
.application-review__header--about--item--value a:hover {
  text-decoration: underline;
}
.application-review__header--about--buttons {
  grid-column: 1/-1;
  justify-self: center;
  margin-top: 1.5rem;
}

.application-review__header--program {
  gap: 1rem;
  align-items: center;
  background-color: var(---color-contrast-higher);
}
.application-review__header--program--label {
  display: block;
  font-size: 0.65em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text-secondary);
}
.application-review__header--program--details {
  display: flex;
}
.application-review__header--program--logo {
  max-width: 80px;
  max-height: 80px;
}
.application-review__header--program--text {
  padding: 0 1rem;
}

@media (min-width: 1200px) {
  .application-review__card--program {
    order: 2;
    box-shadow: none;
    background: white;
  }
  .application-review__card--program .application-review__header--program {
    background: var(---color-contrast-higher);
    border-radius: 0.375rem;
  }
}
.tag-assignment > * + * {
  margin-top: 1rem;
}
.tag-assignment__controls-row {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .tag-assignment__controls-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.tag-assignment__search-wrapper {
  flex: 1;
  width: auto;
}
.tag-assignment__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.75rem;
}
.tag-assignment__actions {
  display: flex;
  justify-content: flex-end;
}
.tag-assignment__actions > * + * {
  margin-left: 0.5rem;
}

.adjudication {
  padding: 1rem 0.5rem;
}
@media (min-width: 1200px) {
  .adjudication {
    padding: 1rem 2rem;
  }
}
.adjudication__stage-name {
  font-size: 1.5rem;
  margin: 1rem 0;
}
.adjudication__comment-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.adjudication__comment-author {
  font-weight: 600;
}
.adjudication__comment-body {
  margin-top: 0.25rem;
  margin-left: 0.5rem;
  color: var(--color-text-secondary);
}
.adjudication__rating-help {
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}
.adjudication__rating-help p {
  margin: 0;
}
.adjudication__stage-dot {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.adjudication__stage-dot--active {
  background-color: var(--color-success);
}
.adjudication__stage-dot--inactive {
  background-color: var(--color-error);
}
.adjudication__recommendation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.adjudication__recommendation--choice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.adjudication__recommendation--choice__icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  flex-shrink: 0;
}
.adjudication__recommendation-btn {
  transition: all 0.2s ease;
}
.adjudication__recommendation-btn.is-active {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}
.adjudication__recommendation-btn.brand-button--primary.is-active {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1) !important;
}
.adjudication__recommendation-btn.brand-button--warning.is-active {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1) !important;
}
.adjudication__recommendation-btn.brand-button--danger.is-active {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1) !important;
}
.adjudication__tabs {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 0.875rem;
}
.adjudication__tab {
  display: inline-block;
  margin-right: 1rem;
}
.adjudication__tab-btn {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  font: inherit;
  cursor: pointer;
}
.adjudication__tab-btn.is-active {
  border-bottom: 2px solid var(--color-brand-primary);
  font-weight: 600;
}
.adjudication__section {
  display: grid;
}
.adjudication__rating-item {
  position: relative;
  margin-bottom: 1rem;
}
.adjudication__reset-btn {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}
.adjudication__reset-icon {
  width: 1rem;
  height: 1rem;
  color: var(--color-text-muted);
}
.adjudication__last-updated {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}
.adjudication__no-comments, .adjudication__ratings-description {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}
.adjudication__ratings-description ol, .adjudication__ratings-description ul, .adjudication__no-comments ol, .adjudication__no-comments ul {
  list-style: revert !important;
}
.adjudication__richtext p {
  margin: 0 0 0.75rem;
}
.adjudication__richtext ol, .adjudication__richtext ul {
  list-style: revert;
  list-style-position: outside;
  margin: 0 0 0.75rem 0;
  padding-left: 1.25rem;
}
.adjudication__richtext li {
  margin: 0.25rem 0;
}
.adjudication__richtext li > ol,
.adjudication__richtext li > ul {
  margin: 0.25rem 0 0 0;
  padding-left: 1.25rem;
}
.adjudication__comments-list {
  margin-bottom: 1rem;
}
.adjudication__comment {
  background-color: var(--color-neutral-50);
  padding: 0.75rem;
  border-radius: 0.25rem;
  margin-bottom: 0.75rem;
}
.adjudication__comment-text {
  margin-bottom: 0.25rem;
}
.adjudication__comment-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}
.adjudication__new-comment {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.adjudication__textarea {
  width: 100%;
}
.adjudication__submit-btn {
  align-self: flex-start;
}
@media (max-width: 767px) {
  .adjudication .adjudication__recommendation {
    flex-direction: column;
  }
  .adjudication .adjudication__recommendation-btn {
    width: 100%;
  }
}

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

.application-view {
  max-width: 1200px;
  margin: 0 auto;
}
.application-view__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
.application-view__header--mobile {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0;
  height: 100%;
  margin-left: auto;
}
.application-view__header--desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0rem;
  z-index: 10;
  background: var(--color-surface-base);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}
@media (min-width: 1200px) {
  .application-view__header--desktop {
    top: 6rem;
  }
}
.application-view__header--tabs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
}

.category-nav {
  position: sticky;
  top: 0rem;
  z-index: 10;
  background: var(--color-surface-base);
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 1rem;
  padding: 0;
}
@media (min-width: 1200px) {
  .category-nav {
    top: 6rem;
  }
}
@media (max-width: 768px) {
  .category-nav {
    display: none;
  }
}
.category-nav__mobile-row {
  display: none;
}
@media (max-width: 768px) {
  .category-nav__mobile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    position: sticky;
    top: 0;
    z-index: 5;
    background: var(--color-surface-base);
    border-bottom: 1px solid var(--color-border-light);
  }
}
.category-nav__mobile {
  flex: 1 1 60%;
}
.category-nav__mobile select {
  border: 1px solid var(--color-text-primary);
  border-radius: 0.25rem;
  font-size: 0.9rem;
  width: 100%;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  background: var(--color-surface-base);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.category-nav__inner {
  display: flex;
  flex-wrap: wrap;
  padding: 0.5rem 0;
  gap: 0.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .category-nav__inner {
    display: none;
  }
}
.category-nav__desktop-dropdown {
  display: none;
  flex: 1;
  max-width: 300px;
  margin-bottom: 1rem;
  padding-top: 1rem;
}
@media (min-width: 769px) {
  .category-nav__desktop-dropdown {
    display: block;
  }
}
.category-nav__desktop-dropdown select {
  border: 1px solid var(--color-text-primary);
  border-radius: 0.25rem;
  font-size: 0.9rem;
  width: 100%;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  background: var(--color-surface-base);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: border-color 0.2s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.category-nav__desktop-dropdown select:hover {
  border-color: var(--color-text-secondary);
}
.category-nav__item {
  padding: 0.5rem;
  color: var(--color-text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.category-nav__item.active {
  color: var(--color-brand-primary);
  border-color: var(--color-brand-primary);
}

.category-heading {
  margin: 0 0 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--color-neutral-100);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid var(--color-border-light);
  scroll-margin-top: 200px;
}
@media (max-width: 768px) {
  .category-heading {
    padding: 0.5rem 0.75rem;
    scroll-margin-top: 100px;
  }
}

.question-list {
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: var(--color-surface-base);
}
@media (max-width: 768px) {
  .question-list {
    padding: 0.5rem;
  }
}
.question-list__item {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-neutral-50);
  font-size: 0.9375rem;
}
.question-list__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.question-list__label {
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.01em;
  display: block;
}
.question-list__info-icon {
  width: 1.5rem;
  height: 1rem;
  color: var(--color-text-secondary);
}
.question-list__info-icon:hover {
  color: var(--color-interactive-primary);
}
.question-list__tooltip-content {
  font-size: 10px;
  font-weight: bold;
}
.question-list__children {
  margin-left: 1.5rem;
  margin-top: 1rem;
  border-left: 1px solid var(--color-border-light);
  padding-left: 1rem;
}

@media (max-width: 768px) {
  .category-nav__inner,
  .application__header--desktop,
  .application-view__header--desktop {
    display: none !important;
  }
  .category-nav__mobile-row,
  .application-view__header--mobile {
    display: flex;
  }
}
@media (min-width: 769px) {
  .application-view__header--mobile {
    display: none !important;
  }
}
.application-edit__category-heading {
  margin: 0 0 12px;
  padding: 12px 16px;
  background: var(--color-neutral-100);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid var(--color-border-light);
  scroll-margin-top: 180px;
}
@media (max-width: 768px) {
  .application-edit__category-heading {
    padding: 8px 12px;
    scroll-margin-top: 80px;
  }
}
.application-edit__question-list {
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  padding: 12px;
  margin-bottom: 16px;
  background: var(--color-surface-base);
  font-size: 15px;
}
@media (max-width: 768px) {
  .application-edit__question-list {
    padding: 8px;
  }
}
.application-edit__question-item {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-neutral-50);
  font-size: 15px;
}
.application-edit__question-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.application-edit__question-children {
  margin-top: 16px;
  margin-left: 24px;
  padding-left: 16px;
  border-left: 1px solid var(--color-border-light);
}
.application-edit__child-question {
  margin: 12px 0;
}
.application-edit__child-question:first-child {
  margin-top: 0;
}
.application-edit__child-question:last-child {
  margin-bottom: 0;
}
.application-edit__edit-actions {
  position: sticky;
  bottom: 0;
  background: var(--color-surface-base);
  padding: 16px 24px;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.05);
  z-index: 10;
}
@media (max-width: 768px) {
  .application-edit__edit-actions {
    padding: 12px 16px;
  }
}

.question-value {
  color: var(--color-text-primary);
  line-height: 1.5;
}
.question-value__address-value {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.question-value__location-value {
  font-weight: 500;
}
.question-value__media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.question-value__ceeb-value {
  font-family: monospace;
  font-size: 0.9rem;
}
.question-value__signature-value {
  margin: 0.5rem 0;
}
.question-value__signature-image {
  max-width: 200px;
  max-height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.question-value a {
  color: var(--color-primary-deep);
  text-decoration: none;
}
.question-value a:hover {
  text-decoration: underline;
}

.documentation-view {
  min-height: 100vh;
}
.documentation-view__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.documentation-view__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.documentation-view__errors {
  margin: 1rem 0;
}
.documentation-view__error {
  color: var(--color-error);
  padding: 1rem;
  background-color: var(--color-error-lightest);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  border-left: 4px solid var(--color-error);
}
.documentation-view__empty {
  text-align: center;
  padding: 3rem;
  color: var(--color-text-secondary);
  font-size: 1.125rem;
  background-color: var(--color-surface-base);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.documentation-view__card-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-light);
}
.documentation-view__card-header-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.documentation-view__actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
}
.documentation-view__info {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.documentation-view__info > :last-child {
  margin-bottom: 0.75rem;
}
.documentation-view__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}
.documentation-view__label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  display: flex;
  gap: 0.25rem;
  align-items: baseline;
}
.documentation-view__label strong {
  min-width: 120px;
  color: var(--color-text-primary);
  font-weight: 600;
}
.documentation-view__label:last-child {
  margin-bottom: 0.5rem;
}
.documentation-view__value {
  color: var(--color-text-primary);
  flex: 1;
}
.documentation-view__status {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.documentation-view__status--completed {
  background-color: var(--color-success-lightest);
  color: var(--color-success);
}
.documentation-view__status--pending {
  background-color: var(--color-warning-lightest);
  color: var(--color-warning);
}
.documentation-view__content {
  margin-top: 1rem;
}
.documentation-view__question {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  padding: 0.5rem 0;
}
.documentation-view__question-label {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  color: var(--color-text-primary);
  font-size: 0.875rem;
}
.documentation-view__question-label strong {
  min-width: 120px;
  font-weight: 600;
}
.documentation-view__email-stack {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  flex-wrap: wrap;
}
.documentation-view__email-input {
  flex: 0.75;
}
.documentation-view__awaiting-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.documentation-view__awaiting {
  font-size: 0.75rem;
  color: var(--color-text-primary);
}
.documentation-view__info-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-text-primary);
  cursor: help;
}
@media (max-width: 700px) {
  .documentation-view__email-stack {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .documentation-view__email-stack .documentation-view__email-input {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
  .documentation-view__email-stack button {
    width: 100%;
    text-align: center;
  }
}

.documentation-edit__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.documentation-edit__error {
  color: var(--color-error);
  padding: 1rem;
  background-color: var(--color-error-lightest);
  border-radius: 0.5rem;
  margin: 1rem;
}
.documentation-edit__completed {
  background-color: var(--color-success-lightest);
}
.documentation-edit__intro {
  margin-bottom: 1.5rem;
}
.documentation-edit__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
  border-bottom: 1px solid var(--color-border-light);
}
.documentation-edit__info-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.documentation-edit__info-grid ul li {
  margin-bottom: 0.5rem;
}
.documentation-edit__question-group {
  margin-bottom: 1.5rem;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}
.documentation-edit__question-children {
  margin: 1rem 0 0 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-border-light);
}
.documentation-edit__footer--right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}
.documentation-edit__child-question {
  margin-bottom: 1rem;
}
.documentation-edit__scroll-area {
  overflow-y: auto;
  margin-top: 1.25rem;
}
.documentation-edit__submit-btn {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.documentation-edit__status-text {
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 400;
  color: var(--color-text-primary);
  text-align: center;
}
.documentation-edit__resubmit-link {
  padding: 0;
  font-size: inherit;
  font-weight: 500;
  text-decoration: none;
}

.app-review-media-item {
  position: relative;
  border: 1px solid var(--color-border-light);
  border-radius: 0.5rem;
}
.app-review-media-item__content {
  position: relative;
}
.app-review-media-item__thumbnail {
  aspect-ratio: 16/9;
  background: var(--color-neutral-50);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 0.5rem 0.5rem 0 0;
}
.app-review-media-item__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.app-review-media-item__icon {
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--color-neutral-50);
}
.app-review-media-item__info {
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
}
.app-review-media-item__title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-review-media-item__type {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}
.app-review-media-item__menu-wrapper {
  position: relative;
  display: inline-block;
}
.app-review-media-item__menu {
  position: absolute;
  top: 1.5rem;
  right: 0.5rem;
  background: var(--color-surface-base);
  border: 1px solid var(--color-border-light);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 10;
  min-width: 140px;
}
.app-review-media-item__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.app-review-media-item__menu-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.app-review-media-item__menu-item:hover {
  background: var(--color-neutral-50);
}
.app-review-media-item__fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  color: var(--color-text-secondary);
  background: var(--color-neutral-50);
}
.app-review-media-item__failed {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-error-dark);
}
.app-review-media-item__action-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.app-review-media-item__action-btn {
  background: var(--color-neutral-50);
  color: var(--color-error-dark);
  border: none;
  border-radius: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s;
}
.app-review-media-item__action-btn:hover {
  background: var(--color-error-lightest);
}
.app-review-media-item__progress-text {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.app-review-media-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.app-review-media-wrapper__header {
  display: flex;
  justify-content: flex-end;
}
.app-review-media-wrapper__preview {
  aspect-ratio: 16/9;
  background-color: var(--color-neutral-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}
.app-review-media-wrapper__icon {
  color: var(--color-text-secondary);
}
.app-review-media-wrapper__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}
.app-review-media-wrapper__upload {
  padding: 1rem;
  border-top: 1px solid var(--color-border-light);
}
.app-review-media-wrapper__upload-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.app-review-media-wrapper__filename {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}
.app-review-media-wrapper__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--color-border-light);
}

.application-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.app-review-media-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1rem;
  z-index: 10;
  overflow-y: auto;
  min-height: 100%;
}
.app-review-media-modal__dialog {
  position: absolute;
  width: calc(100% - 2rem);
  background: var(--color-white);
  border: 1px solid var(--color-contrast-low);
  border-radius: 0.75rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0 auto;
}
.app-review-media-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-contrast-low);
  background: var(--color-white);
  flex-shrink: 0;
}
.app-review-media-modal__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  margin-right: 1rem;
}
.app-review-media-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.app-review-media-modal__close:hover {
  background: var(--color-contrast-low);
  color: var(--color-text-primary);
}
.app-review-media-modal__content {
  padding: 1.5rem;
  flex: 1;
  overflow-y: auto;
}

.print-view__header {
  display: block;
  text-align: center;
  border-bottom: 2px solid var(--color-neutral-100);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.print-view__logo {
  max-width: 150px;
  margin: 0 auto 1rem;
}
.print-view__about-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.print-view__headshot {
  margin-right: 2rem;
}
.print-view__headshot img {
  width: 140px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
.print-view__section {
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
}
.print-view__section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0;
  color: inherit;
  border-bottom: 2px solid var(--color-neutral-100);
  padding-bottom: 0.5rem;
}
.print-view__question-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  /* Prevents breaking inside columns/pages for print and web */
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.print-view__label {
  font-weight: bold;
  color: var(--color-text-primary);
}

.application-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.application-navigation__count {
  color: var(--color-text-primary);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.1375rem;
}
.application-navigation__buttons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.application-navigation__button {
  display: flex;
  align-items: center;
  border-radius: 0.25rem;
  border: 1px solid var(--color-primary-deep);
  box-shadow: 0 0.3px 0.4px 0 var(--color-shadow-light), 0 0.9px 1.5px var(--color-shadow-medium);
  transition: all 0.2s ease;
}
.application-navigation__button--previous, .application-navigation__button--next {
  height: 2.5rem;
}
.application-navigation__button--previous span, .application-navigation__button--next span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  color: var(--color-primary-deep);
  font-size: 1rem;
  font-weight: 700;
}
.application-navigation__button--previous svg, .application-navigation__button--next svg {
  width: 2.5rem;
  height: 100%;
  background-color: var(--color-primary-deep);
  color: var(--color-surface-base);
  padding: 0.75rem;
}
.application-navigation__button--previous {
  width: 9.4375rem;
}
.application-navigation__button--next {
  width: 8.4375rem;
}
.application-navigation__button--list {
  display: flex;
  width: 3.125rem;
  height: 2.25rem;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary-deep);
  color: var(--color-surface-base);
  border-radius: 0.25rem;
}
.application-navigation__button--list.is-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
@media (max-width: 767px) {
  .application-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  .application-navigation__count {
    order: 2;
  }
}

.m-reviewer {
  display: flex;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--color-border-light);
}
.m-reviewer:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.m-reviewer__header {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
.m-reviewer__avatarButton {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.m-reviewer__avatarButton:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.m-reviewer__avatarWrap {
  position: relative;
  flex-shrink: 0;
  line-height: 0;
  width: 40px;
  height: 40px;
}
.m-reviewer__avatarWrap:not(button .m-reviewer__avatarWrap) {
  cursor: default;
}
.m-reviewer__avatarWrap:not(button .m-reviewer__avatarWrap) .brand-avatar {
  cursor: default;
}
.m-reviewer__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.m-reviewer__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.m-reviewer__topRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.m-reviewer__nameButton {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  flex: 1;
  min-width: 0;
}
.m-reviewer__nameButton:hover:not(:disabled) .m-reviewer__name {
  text-decoration: underline;
}
.m-reviewer__nameButton:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.m-reviewer__name {
  color: var(--color-primary-deep);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
.m-reviewer__name--disabled {
  color: var(--color-text-primary);
  cursor: default;
}
.m-reviewer__status {
  color: var(--color-text-secondary);
  font-weight: 400;
  font-size: 0.875rem;
  white-space: nowrap;
}
.m-reviewer__unassign {
  flex-shrink: 0;
  color: var(--color-feedback-warning);
  margin-left: auto;
}
.m-reviewer__viewed {
  font-size: 0.875rem;
  color: var(--color-text-primary);
  text-align: left;
  line-height: 1.5;
}
.m-reviewer__shared {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
}
.m-reviewer__badge {
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 2px solid var(--color-surface, var(--color-surface-base));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-text-secondary);
  color: var(--color-surface-base);
  pointer-events: none;
}
.m-reviewer__badgeIcon {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
}
.m-reviewer__badge--yes {
  background: var(--color-success);
}
.m-reviewer__badge--maybe {
  background: var(--color-warning);
}
.m-reviewer__badge--no {
  background: var(--color-error);
}

.media-export {
  padding: 15px;
  width: 50%;
  min-width: 300px;
}
.media-export__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 20px 0;
}
.media-export__field {
  margin-bottom: 15px;
}
.media-export__label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--color-text-secondary);
  font-size: 14px;
}
.media-export__link {
  color: var(--color-brand-primary);
  text-decoration: underline;
}
.media-export__link:hover {
  color: var(--color-interactive-primary);
}

.deletion {
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.deletion__card {
  margin-top: 3em;
  border-radius: 8px;
  border-top: 4px solid var(--color-error);
  max-width: 500px;
  width: auto;
  position: relative;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2em;
}
.deletion__icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%) translateY(-50%);
  background-color: var(--color-error);
  border-radius: 50%;
  width: 3em;
}
.deletion__icon img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}
.deletion__content-container {
  padding: 2em 1.5em 1.5em;
}
.deletion__heading h1 {
  font-weight: bolder;
  font-size: 1.25em;
  line-height: 1.2;
}
.deletion__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1em;
  font-size: 0.8em;
  line-height: 1.25;
  color: var(--color-text-subtle);
}
.deletion__content .deletion__content-list ul {
  list-style-type: disc;
  padding-left: 1.25em;
  margin: 0.5em 0;
  display: inline-block;
}
.deletion__content .deletion__content-list li {
  text-align: left;
  margin-bottom: 0.25em;
}
.deletion__footer {
  font-size: 0.8em;
  line-height: 1.25;
}
.deletion__footer strong {
  color: var(--color-text-primary);
  font-weight: 700;
}
.deletion__actions {
  padding: 1em;
  margin-left: -0.5em;
  margin-right: -0.5em;
  background-color: var(--color-contrast-lowest);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.deletion__actions .deletion__cancel,
.deletion__actions .deletion__confirm {
  font-weight: bolder;
  min-width: 150px;
  padding: 10px 20px;
  border-radius: 4px;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  margin-bottom: 1em;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(50% - 16px);
  font-size: 100%;
}
.deletion__actions .deletion__cancel {
  background-color: var(--color-white);
  color: var(--color-text-subtle);
  border: 0px;
  margin: 0px 8px 16px;
}
.deletion__actions .deletion__confirm {
  background-color: var(--color-error-dark);
  color: var(--color-white);
  border: 1px solid;
  margin: 0px 8px 16px;
}
.deletion__actions .deletion__supplemental-info {
  flex-shrink: 0;
  flex-basis: 100%;
  font-size: 0.75em;
  line-height: 1.3333;
  color: var(--color-text-subtle);
}

.account {
  padding-top: 25px;
  padding-bottom: 25px;
  margin-left: 25px;
  margin-right: 25px;
}
.account__container {
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
  padding: 40px 25px;
  box-sizing: border-box;
}
.account__header .breadcrumbs {
  margin-bottom: 5px;
}
.account__header h1 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.account__subheading, .account__label, .account__parents-label {
  letter-spacing: 0.025em;
  color: var(--color-contrast-medium);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}
.account__checkbox {
  margin-top: 10px;
  margin-bottom: 0;
}
.account__profile {
  padding: 15px;
  border-radius: 3px;
  border: 1px solid var(--color-contrast-low);
  background-color: var(--color-contrast-lowest);
  margin-bottom: 25px;
}
.account__divider {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: 25px 0;
}
.account__link {
  color: var(--color-primary-darker);
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
}
.account__link:hover {
  color: var(--color-primary-darker);
}
.account__input {
  background-color: var(--color-contrast-lowest);
  height: 40px;
  color: var(--color-contrast-higher);
  border-radius: 9px;
  border-width: 1px;
}
.account__location {
  max-width: 480px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.account__redirect {
  display: block;
  margin-bottom: 10px;
  color: var(--color-contrast-medium);
  font-size: 12px;
  text-decoration: underline;
}
.account__parents {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid var(--color-contrast-low);
}
.account__parents-list {
  margin-left: 1em;
}
.account__parents-list li {
  line-height: 1.5em;
}
.account__no-options {
  display: inline-block;
  margin-bottom: 1rem;
}
.account__error-summary {
  color: var(--color-error);
  font-size: 14px;
  margin-bottom: 5px;
}
.account__headshot {
  width: -moz-max-content;
  width: max-content;
}
.account__label-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.account__tooltip-icon {
  height: 1rem;
  width: 1rem;
  color: var(--color-contrast-medium);
}
.account__tooltip-icon:hover {
  color: var(--color-primary);
}/* sass-plugin-1:/Users/maronato/Developer/vue-toastification/src/scss/index.scss */
.Vue-Toastification__container {
  z-index: 9999;
  position: fixed;
  padding: 4px;
  width: 600px;
  box-sizing: border-box;
  display: flex;
  min-height: 100%;
  color: #fff;
  flex-direction: column;
  pointer-events: none;
}
@media only screen and (min-width : 600px) {
  .Vue-Toastification__container.top-left,
  .Vue-Toastification__container.top-right,
  .Vue-Toastification__container.top-center {
    top: 1em;
  }
  .Vue-Toastification__container.bottom-left,
  .Vue-Toastification__container.bottom-right,
  .Vue-Toastification__container.bottom-center {
    bottom: 1em;
    flex-direction: column-reverse;
  }
  .Vue-Toastification__container.top-left,
  .Vue-Toastification__container.bottom-left {
    left: 1em;
  }
  .Vue-Toastification__container.top-left .Vue-Toastification__toast,
  .Vue-Toastification__container.bottom-left .Vue-Toastification__toast {
    margin-right: auto;
  }
  @supports not (-moz-appearance: none) {
    .Vue-Toastification__container.top-left .Vue-Toastification__toast--rtl,
    .Vue-Toastification__container.bottom-left .Vue-Toastification__toast--rtl {
      margin-right: unset;
      margin-left: auto;
    }
  }
  .Vue-Toastification__container.top-right,
  .Vue-Toastification__container.bottom-right {
    right: 1em;
  }
  .Vue-Toastification__container.top-right .Vue-Toastification__toast,
  .Vue-Toastification__container.bottom-right .Vue-Toastification__toast {
    margin-left: auto;
  }
  @supports not (-moz-appearance: none) {
    .Vue-Toastification__container.top-right .Vue-Toastification__toast--rtl,
    .Vue-Toastification__container.bottom-right .Vue-Toastification__toast--rtl {
      margin-left: unset;
      margin-right: auto;
    }
  }
  .Vue-Toastification__container.top-center,
  .Vue-Toastification__container.bottom-center {
    left: 50%;
    margin-left: -300px;
  }
  .Vue-Toastification__container.top-center .Vue-Toastification__toast,
  .Vue-Toastification__container.bottom-center .Vue-Toastification__toast {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width : 600px) {
  .Vue-Toastification__container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Vue-Toastification__container .Vue-Toastification__toast {
    width: 100%;
  }
  .Vue-Toastification__container.top-left,
  .Vue-Toastification__container.top-right,
  .Vue-Toastification__container.top-center {
    top: 0;
  }
  .Vue-Toastification__container.bottom-left,
  .Vue-Toastification__container.bottom-right,
  .Vue-Toastification__container.bottom-center {
    bottom: 0;
    flex-direction: column-reverse;
  }
}
.Vue-Toastification__toast {
  display: inline-flex;
  position: relative;
  max-height: 800px;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 22px 24px;
  border-radius: 8px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  justify-content: space-between;
  font-family:
    "Lato",
    Helvetica,
    "Roboto",
    Arial,
    sans-serif;
  max-width: 600px;
  min-width: 326px;
  pointer-events: auto;
  overflow: hidden;
  transform: translateZ(0);
  direction: ltr;
}
.Vue-Toastification__toast--rtl {
  direction: rtl;
}
.Vue-Toastification__toast--default {
  background-color: #1976d2;
  color: #fff;
}
.Vue-Toastification__toast--info {
  background-color: #2196f3;
  color: #fff;
}
.Vue-Toastification__toast--success {
  background-color: #4caf50;
  color: #fff;
}
.Vue-Toastification__toast--error {
  background-color: #ff5252;
  color: #fff;
}
.Vue-Toastification__toast--warning {
  background-color: #ffc107;
  color: #fff;
}
@media only screen and (max-width : 600px) {
  .Vue-Toastification__toast {
    border-radius: 0px;
    margin-bottom: 0.5rem;
  }
}
.Vue-Toastification__toast-body {
  flex: 1;
  line-height: 24px;
  font-size: 16px;
  word-break: break-word;
  white-space: pre-wrap;
}
.Vue-Toastification__toast-component-body {
  flex: 1;
}
.Vue-Toastification__toast.disable-transition {
  animation: none !important;
}
.Vue-Toastification__close-button {
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  padding-left: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  align-items: center;
  color: #fff;
  opacity: 0.3;
  transition: visibility 0s, opacity 0.2s linear;
}
.Vue-Toastification__close-button:hover,
.Vue-Toastification__close-button:focus {
  opacity: 1;
}
.Vue-Toastification__toast:not(:hover) .Vue-Toastification__close-button.show-on-hover {
  opacity: 0;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__close-button {
  padding-left: unset;
  padding-right: 10px;
}
@keyframes scale-x-frames {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Vue-Toastification__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 10000;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left;
  animation: scale-x-frames linear 1 forwards;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__progress-bar {
  right: 0;
  left: unset;
  transform-origin: right;
}
.Vue-Toastification__icon {
  margin: auto 18px auto 0px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  transition: 0.3s ease;
  align-items: center;
  width: 20px;
  height: 100%;
}
.Vue-Toastification__toast--rtl .Vue-Toastification__icon {
  margin: auto 0px auto 18px;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutRight {
  40% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(1000px, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Vue-Toastification__bounce-enter-active.top-left,
.Vue-Toastification__bounce-enter-active.bottom-left {
  animation-name: bounceInLeft;
}
.Vue-Toastification__bounce-enter-active.top-right,
.Vue-Toastification__bounce-enter-active.bottom-right {
  animation-name: bounceInRight;
}
.Vue-Toastification__bounce-enter-active.top-center {
  animation-name: bounceInDown;
}
.Vue-Toastification__bounce-enter-active.bottom-center {
  animation-name: bounceInUp;
}
.Vue-Toastification__bounce-leave-active:not(.disable-transition).top-left,
.Vue-Toastification__bounce-leave-active:not(.disable-transition).bottom-left {
  animation-name: bounceOutLeft;
}
.Vue-Toastification__bounce-leave-active:not(.disable-transition).top-right,
.Vue-Toastification__bounce-leave-active:not(.disable-transition).bottom-right {
  animation-name: bounceOutRight;
}
.Vue-Toastification__bounce-leave-active:not(.disable-transition).top-center {
  animation-name: bounceOutUp;
}
.Vue-Toastification__bounce-leave-active:not(.disable-transition).bottom-center {
  animation-name: bounceOutDown;
}
.Vue-Toastification__bounce-leave-active,
.Vue-Toastification__bounce-enter-active {
  animation-duration: 750ms;
  animation-fill-mode: both;
}
.Vue-Toastification__bounce-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}
@keyframes fadeOutTop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}
@keyframes fadeOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50px);
    opacity: 0;
  }
}
@keyframes fadeOutBottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(50px);
    opacity: 0;
  }
}
@keyframes fadeOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(50px);
    opacity: 0;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInTop {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInBottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.Vue-Toastification__fade-enter-active.top-left,
.Vue-Toastification__fade-enter-active.bottom-left {
  animation-name: fadeInLeft;
}
.Vue-Toastification__fade-enter-active.top-right,
.Vue-Toastification__fade-enter-active.bottom-right {
  animation-name: fadeInRight;
}
.Vue-Toastification__fade-enter-active.top-center {
  animation-name: fadeInTop;
}
.Vue-Toastification__fade-enter-active.bottom-center {
  animation-name: fadeInBottom;
}
.Vue-Toastification__fade-leave-active:not(.disable-transition).top-left,
.Vue-Toastification__fade-leave-active:not(.disable-transition).bottom-left {
  animation-name: fadeOutLeft;
}
.Vue-Toastification__fade-leave-active:not(.disable-transition).top-right,
.Vue-Toastification__fade-leave-active:not(.disable-transition).bottom-right {
  animation-name: fadeOutRight;
}
.Vue-Toastification__fade-leave-active:not(.disable-transition).top-center {
  animation-name: fadeOutTop;
}
.Vue-Toastification__fade-leave-active:not(.disable-transition).bottom-center {
  animation-name: fadeOutBottom;
}
.Vue-Toastification__fade-leave-active,
.Vue-Toastification__fade-enter-active {
  animation-duration: 750ms;
  animation-fill-mode: both;
}
.Vue-Toastification__fade-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}
@keyframes slideInBlurredLeft {
  0% {
    transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 100% 50%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredTop {
  0% {
    transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 0%;
    filter: blur(240px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredRight {
  0% {
    transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 0% 50%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideInBlurredBottom {
  0% {
    transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    transform-origin: 50% 100%;
    filter: blur(240px);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes slideOutBlurredTop {
  0% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 0%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px) scaleY(2) scaleX(0.2);
    transform-origin: 50% 0%;
    filter: blur(240px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredBottom {
  0% {
    transform: translateY(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateY(1000px) scaleY(2) scaleX(0.2);
    transform-origin: 50% 100%;
    filter: blur(240px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredLeft {
  0% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-1000px) scaleX(2) scaleY(0.2);
    transform-origin: 100% 50%;
    filter: blur(40px);
    opacity: 0;
  }
}
@keyframes slideOutBlurredRight {
  0% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
  100% {
    transform: translateX(1000px) scaleX(2) scaleY(0.2);
    transform-origin: 0% 50%;
    filter: blur(40px);
    opacity: 0;
  }
}
.Vue-Toastification__slideBlurred-enter-active.top-left,
.Vue-Toastification__slideBlurred-enter-active.bottom-left {
  animation-name: slideInBlurredLeft;
}
.Vue-Toastification__slideBlurred-enter-active.top-right,
.Vue-Toastification__slideBlurred-enter-active.bottom-right {
  animation-name: slideInBlurredRight;
}
.Vue-Toastification__slideBlurred-enter-active.top-center {
  animation-name: slideInBlurredTop;
}
.Vue-Toastification__slideBlurred-enter-active.bottom-center {
  animation-name: slideInBlurredBottom;
}
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).top-left,
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).bottom-left {
  animation-name: slideOutBlurredLeft;
}
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).top-right,
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).bottom-right {
  animation-name: slideOutBlurredRight;
}
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).top-center {
  animation-name: slideOutBlurredTop;
}
.Vue-Toastification__slideBlurred-leave-active:not(.disable-transition).bottom-center {
  animation-name: slideOutBlurredBottom;
}
.Vue-Toastification__slideBlurred-leave-active,
.Vue-Toastification__slideBlurred-enter-active {
  animation-duration: 750ms;
  animation-fill-mode: both;
}
.Vue-Toastification__slideBlurred-move {
  transition-timing-function: ease-in-out;
  transition-property: all;
  transition-duration: 400ms;
}
