/* Variables declaration */
/* prettier-ignore */
.rdp-root {
  --rdp-accent-color: blue; /* The accent color used for selected days and UI elements. */
  --rdp-accent-background-color: #f0f0ff; /* The accent background color used for selected days and UI elements. */

  --rdp-day-height: 44px; /* The height of the day cells. */
  --rdp-day-width: 44px; /* The width of the day cells. */
  
  --rdp-day_button-border-radius: 100%; /* The border radius of the day cells. */
  --rdp-day_button-border: 2px solid transparent; /* The border of the day cells. */
  --rdp-day_button-height: 42px; /* The height of the day cells. */
  --rdp-day_button-width: 42px; /* The width of the day cells. */
  
  --rdp-selected-border: 2px solid var(--rdp-accent-color); /* The border of the selected days. */
  --rdp-disabled-opacity: 0.5; /* The opacity of the disabled days. */
  --rdp-outside-opacity: 0.75; /* The opacity of the days outside the current month. */
  --rdp-today-color: var(--rdp-accent-color); /* The color of the today's date. */
  
  --rdp-dropdown-gap: 0.5rem;/* The gap between the dropdowns used in the month captons. */
  
  --rdp-months-gap: 2rem; /* The gap between the months in the multi-month view. */
  
  --rdp-nav_button-disabled-opacity: 0.5; /* The opacity of the disabled navigation buttons. */
  --rdp-nav_button-height: 2.25rem; /* The height of the navigation buttons. */
  --rdp-nav_button-width: 2.25rem; /* The width of the navigation buttons. */
  --rdp-nav-height: 2.75rem; /* The height of the navigation bar. */
  
  --rdp-range_middle-background-color: var(--rdp-accent-background-color); /* The color of the background for days in the middle of a range. */
  --rdp-range_middle-color: inherit;/* The color of the range text. */
  
  --rdp-range_start-color: white; /* The color of the range text. */
  --rdp-range_start-background: linear-gradient(var(--rdp-gradient-direction), transparent 50%, var(--rdp-range_middle-background-color) 50%); /* Used for the background of the start of the selected range. */
  --rdp-range_start-date-background-color: var(--rdp-accent-color); /* The background color of the date when at the start of the selected range. */
  
  --rdp-range_end-background: linear-gradient(var(--rdp-gradient-direction), var(--rdp-range_middle-background-color) 50%, transparent 50%); /* Used for the background of the end of the selected range. */
  --rdp-range_end-color: white;/* The color of the range text. */
  --rdp-range_end-date-background-color: var(--rdp-accent-color); /* The background color of the date when at the end of the selected range. */
  
  --rdp-week_number-border-radius: 100%; /* The border radius of the week number. */
  --rdp-week_number-border: 2px solid transparent; /* The border of the week number. */
  
  --rdp-week_number-height: var(--rdp-day-height); /* The height of the week number cells. */
  --rdp-week_number-opacity: 0.75; /* The opacity of the week number. */
  --rdp-week_number-width: var(--rdp-day-width); /* The width of the week number cells. */
  --rdp-weeknumber-text-align: center; /* The text alignment of the weekday cells. */

  --rdp-weekday-opacity: 0.75; /* The opacity of the weekday. */
  --rdp-weekday-padding: 0.5rem 0rem; /* The padding of the weekday. */
  --rdp-weekday-text-align: center; /* The text alignment of the weekday cells. */

  --rdp-gradient-direction: 90deg;

  --rdp-animation_duration: 0.3s;
  --rdp-animation_timing: cubic-bezier(0.4, 0, 0.2, 1);
}

.rdp-root[dir="rtl"] {
  --rdp-gradient-direction: -90deg;
}

.rdp-root[data-broadcast-calendar="true"] {
  --rdp-outside-opacity: unset;
}

/* Root of the component. */
.rdp-root {
  position: relative; /* Required to position the navigation toolbar. */
  box-sizing: border-box;
}

.rdp-root * {
  box-sizing: border-box;
}

.rdp-day {
  width: var(--rdp-day-width);
  height: var(--rdp-day-height);
  text-align: center;
}

.rdp-day_button {
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  justify-content: center;
  align-items: center;
  display: flex;

  width: var(--rdp-day_button-width);
  height: var(--rdp-day_button-height);
  border: var(--rdp-day_button-border);
  border-radius: var(--rdp-day_button-border-radius);
}

.rdp-day_button:disabled {
  cursor: revert;
}

.rdp-caption_label {
  z-index: 1;

  position: relative;
  display: inline-flex;
  align-items: center;

  white-space: nowrap;
  border: 0;
}

.rdp-dropdown:focus-visible ~ .rdp-caption_label {
  outline: 5px auto Highlight;
  outline: 5px auto -webkit-focus-ring-color;
}

.rdp-button_next,
.rdp-button_previous {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  appearance: none;

  width: var(--rdp-nav_button-width);
  height: var(--rdp-nav_button-height);
}

.rdp-button_next:disabled,
.rdp-button_next[aria-disabled="true"],
.rdp-button_previous:disabled,
.rdp-button_previous[aria-disabled="true"] {
  cursor: revert;

  opacity: var(--rdp-nav_button-disabled-opacity);
}

.rdp-chevron {
  display: inline-block;
  fill: var(--rdp-accent-color);
}

.rdp-root[dir="rtl"] .rdp-nav .rdp-chevron {
  transform: rotate(180deg);
  transform-origin: 50%;
}

.rdp-dropdowns {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--rdp-dropdown-gap);
}
.rdp-dropdown {
  z-index: 2;

  /* Reset */
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: inherit;
  border: none;
  line-height: inherit;
}

.rdp-dropdown_root {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.rdp-dropdown_root[data-disabled="true"] .rdp-chevron {
  opacity: var(--rdp-disabled-opacity);
}

.rdp-month_caption {
  display: flex;
  align-content: center;
  height: var(--rdp-nav-height);
  font-weight: bold;
  font-size: large;
}

.rdp-months {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--rdp-months-gap);
  max-width: -moz-fit-content;
  max-width: fit-content;
}

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

.rdp-nav {
  position: absolute;
  top: 0;
  right: 0;

  display: flex;
  align-items: center;

  height: var(--rdp-nav-height);
}

.rdp-weekday {
  opacity: var(--rdp-weekday-opacity);
  padding: var(--rdp-weekday-padding);
  font-weight: 500;
  font-size: smaller;
  text-align: var(--rdp-weekday-text-align);
  text-transform: var(--rdp-weekday-text-transform);
}

.rdp-week_number {
  opacity: var(--rdp-week_number-opacity);
  font-weight: 400;
  font-size: small;
  height: var(--rdp-week_number-height);
  width: var(--rdp-week_number-width);
  border: var(--rdp-week_number-border);
  border-radius: var(--rdp-week_number-border-radius);
  text-align: var(--rdp-weeknumber-text-align);
}

/* DAY MODIFIERS */
.rdp-today:not(.rdp-outside) {
  color: var(--rdp-today-color);
}

.rdp-selected {
  font-weight: bold;
  font-size: large;
}

.rdp-selected .rdp-day_button {
  border: var(--rdp-selected-border);
}

.rdp-outside {
  opacity: var(--rdp-outside-opacity);
}

.rdp-disabled {
  opacity: var(--rdp-disabled-opacity);
}

.rdp-hidden {
  visibility: hidden;
  color: var(--rdp-range_start-color);
}

.rdp-range_start {
  background: var(--rdp-range_start-background);
}

.rdp-range_start .rdp-day_button {
  background-color: var(--rdp-range_start-date-background-color);
  color: var(--rdp-range_start-color);
}

.rdp-range_middle {
  background-color: var(--rdp-range_middle-background-color);
}

.rdp-range_middle .rdp-day_button {
  border-color: transparent;
  border: medium none currentcolor;
  border: initial;
  border-radius: 0;
  border-radius: initial;
  color: var(--rdp-range_middle-color);
}

.rdp-range_end {
  background: var(--rdp-range_end-background);
  color: var(--rdp-range_end-color);
}

.rdp-range_end .rdp-day_button {
  color: var(--rdp-range_start-color);
  background-color: var(--rdp-range_end-date-background-color);
}

.rdp-range_start.rdp-range_end {
  background: revert;
}

.rdp-focusable {
  cursor: pointer;
}

@keyframes rdp-slide_in_left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes rdp-slide_in_right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes rdp-slide_out_left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes rdp-slide_out_right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.rdp-weeks_before_enter {
  animation: rdp-slide_in_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-weeks_before_exit {
  animation: rdp-slide_out_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-weeks_after_enter {
  animation: rdp-slide_in_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-weeks_after_exit {
  animation: rdp-slide_out_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_after_enter {
  animation: rdp-slide_in_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_before_exit {
  animation: rdp-slide_out_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_before_enter {
  animation: rdp-slide_in_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_after_exit {
  animation: rdp-slide_out_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

@keyframes rdp-fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rdp-fade_out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.rdp-caption_after_enter {
  animation: rdp-fade_in var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-caption_after_exit {
  animation: rdp-fade_out var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-caption_before_enter {
  animation: rdp-fade_in var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-caption_before_exit {
  animation: rdp-fade_out var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

/*
! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

/*
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
*/

/*
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.
*/

/*
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.
*/

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/*
Remove the default font size and weight for headings.
*/

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

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

/*
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.
*/

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

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

/*
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.
*/

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

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

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

/*
Use the modern Firefox focus style for all focusable elements.
*/

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

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

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

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

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

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

/*
Add the correct display in Chrome and Safari.
*/

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

/*
Reset default styling for dialogs.
*/

/*
Prevent resizing textareas horizontally by default.
*/

/*
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.
*/

/*
Set the default cursor for buttons.
*/

/*
Make sure disabled buttons don't get the pointer cursor.
*/

/*
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.
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default *//*
! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #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: Geist, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, 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]) {
  text-decoration: underline;
  -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] {
  display: none;
}:root{--background: 0 0% 100%;--foreground: 222.2 84% 4.9%;--card: 0 0% 100%;--card-foreground: 222.2 84% 4.9%;--popover: 0 0% 100%;--popover-foreground: 222.2 84% 4.9%;--primary: 233 100% 67%;--primary-foreground: 0 0% 98%;--green: 142.1 76.2% 36.3%;--green-foreground: 355.7 100% 97.3%;--secondary: 210 40% 96.1%;--secondary-foreground: 222.2 47.4% 11.2%;--muted: 210 40% 96.1%;--muted-foreground: 215.4 16.3% 46.9%;--accent: 210 40% 96.1%;--accent-foreground: 222.2 47.4% 11.2%;--destructive: 0 84.2% 60.2%;--destructive-foreground: 210 40% 98%;--border: 214.3 31.8% 91.4%;--input: 214.3 31.8% 91.4%;--ring: 221.2 83.2% 53.3%;--radius: 0.5rem}.dark{--background: 222.2 84% 4.9%;--foreground: 210 40% 98%;--card: 222.2 84% 4.9%;--card-foreground: 210 40% 98%;--popover: 222.2 84% 4.9%;--popover-foreground: 210 40% 98%;--primary: 233 100% 67%;--primary-foreground: 0 0% 98%;--green: 142.1 76.2% 36.3%;--green-foreground: 355.7 100% 97.3%;--secondary: 217.2 32.6% 17.5%;--secondary-foreground: 210 40% 98%;--muted: 217.2 32.6% 17.5%;--muted-foreground: 215 20.2% 65.1%;--accent: 217.2 32.6% 17.5%;--accent-foreground: 210 40% 98%;--destructive: 0 62.8% 30.6%;--destructive-foreground: 210 40% 98%;--border: 217.2 32.6% 17.5%;--input: 217.2 32.6% 17.5%;--ring: 224.3 76.3% 48%}*{
  border-color: hsl(214, 32%, 91%);
  border-color: hsl(var(--border));
}body{
  overflow: hidden;
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--muted));
  color: hsl(222, 84%, 5%);
  color: hsl(var(--foreground));
}*, ::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: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --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: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}.\!container{
  width: 100% !important;
}.container:not(#\#):not(#\#){
  width: 100%;
}@media (min-width: 640px){.\!container{
    max-width: 640px !important;
  }.container:not(#\#):not(#\#){
    max-width: 640px;
  }
}@media (min-width: 768px){.\!container{
    max-width: 768px !important;
  }.container:not(#\#):not(#\#){
    max-width: 768px;
  }
}@media (min-width: 1024px){.\!container{
    max-width: 1024px !important;
  }.container:not(#\#):not(#\#){
    max-width: 1024px;
  }
}@media (min-width: 1280px){.\!container{
    max-width: 1280px !important;
  }.container:not(#\#):not(#\#){
    max-width: 1280px;
  }
}@media (min-width: 1536px){.\!container{
    max-width: 1536px !important;
  }.container:not(#\#):not(#\#){
    max-width: 1536px;
  }
}.sr-only:not(#\#):not(#\#){
  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:not(#\#):not(#\#){
  pointer-events: none;
}.pointer-events-auto:not(#\#):not(#\#){
  pointer-events: auto;
}.\!visible{
  visibility: visible !important;
}.visible:not(#\#):not(#\#){
  visibility: visible;
}.invisible:not(#\#):not(#\#){
  visibility: hidden;
}.static:not(#\#):not(#\#){
  position: static;
}.fixed:not(#\#):not(#\#){
  position: fixed;
}.absolute:not(#\#):not(#\#){
  position: absolute;
}.relative:not(#\#):not(#\#){
  position: relative;
}.sticky:not(#\#):not(#\#){
  position: sticky;
}.inset-0:not(#\#):not(#\#){
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}.inset-x-0:not(#\#):not(#\#){
  left: 0px;
  right: 0px;
}.inset-x-4:not(#\#):not(#\#){
  left: 1rem;
  right: 1rem;
}.inset-y-0:not(#\#):not(#\#){
  top: 0px;
  bottom: 0px;
}.-bottom-1:not(#\#):not(#\#){
  bottom: -0.25rem;
}.-bottom-12:not(#\#):not(#\#){
  bottom: -3rem;
}.-left-12:not(#\#):not(#\#){
  left: -3rem;
}.-right-1:not(#\#):not(#\#){
  right: -0.25rem;
}.-right-12:not(#\#):not(#\#){
  right: -3rem;
}.-right-3:not(#\#):not(#\#){
  right: -0.75rem;
}.-top-0:not(#\#):not(#\#){
  top: -0px;
}.-top-1:not(#\#):not(#\#){
  top: -0.25rem;
}.-top-12:not(#\#):not(#\#){
  top: -3rem;
}.-top-2:not(#\#):not(#\#){
  top: -0.5rem;
}.bottom-0:not(#\#):not(#\#){
  bottom: 0px;
}.bottom-3:not(#\#):not(#\#){
  bottom: 0.75rem;
}.bottom-4:not(#\#):not(#\#){
  bottom: 1rem;
}.left-0:not(#\#):not(#\#){
  left: 0px;
}.left-1:not(#\#):not(#\#){
  left: 0.25rem;
}.left-1\/2:not(#\#):not(#\#){
  left: 50%;
}.left-2:not(#\#):not(#\#){
  left: 0.5rem;
}.left-3:not(#\#):not(#\#){
  left: 0.75rem;
}.left-5:not(#\#):not(#\#){
  left: 1.25rem;
}.left-\[49\.3\%\]:not(#\#):not(#\#){
  left: 49.3%;
}.left-\[50\%\]:not(#\#):not(#\#){
  left: 50%;
}.right-0:not(#\#):not(#\#){
  right: 0px;
}.right-1:not(#\#):not(#\#){
  right: 0.25rem;
}.right-2:not(#\#):not(#\#){
  right: 0.5rem;
}.right-3:not(#\#):not(#\#){
  right: 0.75rem;
}.right-4:not(#\#):not(#\#){
  right: 1rem;
}.right-8:not(#\#):not(#\#){
  right: 2rem;
}.top-0:not(#\#):not(#\#){
  top: 0px;
}.top-1:not(#\#):not(#\#){
  top: 0.25rem;
}.top-1\/2:not(#\#):not(#\#){
  top: 50%;
}.top-2:not(#\#):not(#\#){
  top: 0.5rem;
}.top-2\/4:not(#\#):not(#\#){
  top: 50%;
}.top-3:not(#\#):not(#\#){
  top: 0.75rem;
}.top-4:not(#\#):not(#\#){
  top: 1rem;
}.top-7:not(#\#):not(#\#){
  top: 1.75rem;
}.top-\[-3px\]:not(#\#):not(#\#){
  top: -3px;
}.top-\[1px\]:not(#\#):not(#\#){
  top: 1px;
}.top-\[50\%\]:not(#\#):not(#\#){
  top: 50%;
}.top-\[60\%\]:not(#\#):not(#\#){
  top: 60%;
}.top-full:not(#\#):not(#\#){
  top: 100%;
}.z-10:not(#\#):not(#\#){
  z-index: 10;
}.z-20:not(#\#):not(#\#){
  z-index: 20;
}.z-50:not(#\#):not(#\#){
  z-index: 50;
}.z-\[100\]:not(#\#):not(#\#){
  z-index: 100;
}.z-\[1\]:not(#\#):not(#\#){
  z-index: 1;
}.z-\[4001\]:not(#\#):not(#\#){
  z-index: 4001;
}.m-0:not(#\#):not(#\#){
  margin: 0px;
}.-mx-1:not(#\#):not(#\#){
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}.mx-auto:not(#\#):not(#\#){
  margin-left: auto;
  margin-right: auto;
}.my-0:not(#\#):not(#\#){
  margin-top: 0px;
  margin-bottom: 0px;
}.my-0\.5:not(#\#):not(#\#){
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}.my-1:not(#\#):not(#\#){
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}.my-2:not(#\#):not(#\#){
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}.my-3:not(#\#):not(#\#){
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}.-ml-4:not(#\#):not(#\#){
  margin-left: -1rem;
}.-mt-4:not(#\#):not(#\#){
  margin-top: -1rem;
}.mb-0:not(#\#):not(#\#){
  margin-bottom: 0px;
}.mb-1:not(#\#):not(#\#){
  margin-bottom: 0.25rem;
}.mb-2:not(#\#):not(#\#){
  margin-bottom: 0.5rem;
}.mb-2\.5:not(#\#):not(#\#){
  margin-bottom: 0.625rem;
}.mb-3:not(#\#):not(#\#){
  margin-bottom: 0.75rem;
}.mb-4:not(#\#):not(#\#){
  margin-bottom: 1rem;
}.mb-8:not(#\#):not(#\#){
  margin-bottom: 2rem;
}.ml-1:not(#\#):not(#\#){
  margin-left: 0.25rem;
}.ml-2:not(#\#):not(#\#){
  margin-left: 0.5rem;
}.ml-4:not(#\#):not(#\#){
  margin-left: 1rem;
}.ml-5:not(#\#):not(#\#){
  margin-left: 1.25rem;
}.ml-auto:not(#\#):not(#\#){
  margin-left: auto;
}.mr-1:not(#\#):not(#\#){
  margin-right: 0.25rem;
}.mr-2:not(#\#):not(#\#){
  margin-right: 0.5rem;
}.mr-3:not(#\#):not(#\#){
  margin-right: 0.75rem;
}.mr-4:not(#\#):not(#\#){
  margin-right: 1rem;
}.mt-0:not(#\#):not(#\#){
  margin-top: 0px;
}.mt-0\.5:not(#\#):not(#\#){
  margin-top: 0.125rem;
}.mt-1:not(#\#):not(#\#){
  margin-top: 0.25rem;
}.mt-1\.5:not(#\#):not(#\#){
  margin-top: 0.375rem;
}.mt-2:not(#\#):not(#\#){
  margin-top: 0.5rem;
}.mt-24:not(#\#):not(#\#){
  margin-top: 6rem;
}.mt-3:not(#\#):not(#\#){
  margin-top: 0.75rem;
}.mt-4:not(#\#):not(#\#){
  margin-top: 1rem;
}.mt-auto:not(#\#):not(#\#){
  margin-top: auto;
}.line-clamp-1:not(#\#):not(#\#){
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}.block:not(#\#):not(#\#){
  display: block;
}.inline-block:not(#\#):not(#\#){
  display: inline-block;
}.flex:not(#\#):not(#\#){
  display: flex;
}.inline-flex:not(#\#):not(#\#){
  display: inline-flex;
}.table:not(#\#):not(#\#){
  display: table;
}.\!grid{
  display: grid !important;
}.grid:not(#\#):not(#\#){
  display: grid;
}.hidden:not(#\#):not(#\#){
  display: none;
}.aspect-square:not(#\#):not(#\#){
  aspect-ratio: 1 / 1;
}.aspect-video:not(#\#):not(#\#){
  aspect-ratio: 16 / 9;
}.h-1:not(#\#):not(#\#){
  height: 0.25rem;
}.h-1\.5:not(#\#):not(#\#){
  height: 0.375rem;
}.h-10:not(#\#):not(#\#){
  height: 2.5rem;
}.h-12:not(#\#):not(#\#){
  height: 3rem;
}.h-16:not(#\#):not(#\#){
  height: 4rem;
}.h-2:not(#\#):not(#\#){
  height: 0.5rem;
}.h-2\.5:not(#\#):not(#\#){
  height: 0.625rem;
}.h-24:not(#\#):not(#\#){
  height: 6rem;
}.h-3:not(#\#):not(#\#){
  height: 0.75rem;
}.h-3\.5:not(#\#):not(#\#){
  height: 0.875rem;
}.h-32:not(#\#):not(#\#){
  height: 8rem;
}.h-4:not(#\#):not(#\#){
  height: 1rem;
}.h-48:not(#\#):not(#\#){
  height: 12rem;
}.h-5:not(#\#):not(#\#){
  height: 1.25rem;
}.h-6:not(#\#):not(#\#){
  height: 1.5rem;
}.h-7:not(#\#):not(#\#){
  height: 1.75rem;
}.h-8:not(#\#):not(#\#){
  height: 2rem;
}.h-9:not(#\#):not(#\#){
  height: 2.25rem;
}.h-\[1px\]:not(#\#):not(#\#){
  height: 1px;
}.h-\[22px\]:not(#\#):not(#\#){
  height: 22px;
}.h-\[48px\]:not(#\#):not(#\#){
  height: 48px;
}.h-\[80\%\]:not(#\#):not(#\#){
  height: 80%;
}.h-\[90\%\]:not(#\#):not(#\#){
  height: 90%;
}.h-\[calc\(100\%-28px\)\]:not(#\#):not(#\#){
  height: calc(100% - 28px);
}.h-\[var\(--radix-navigation-menu-viewport-height\)\]:not(#\#):not(#\#){
  height: var(--radix-navigation-menu-viewport-height);
}.h-\[var\(--radix-select-trigger-height\)\]:not(#\#):not(#\#){
  height: var(--radix-select-trigger-height);
}.h-auto:not(#\#):not(#\#){
  height: auto;
}.h-dvh:not(#\#):not(#\#){
  height: 100dvh;
}.h-full:not(#\#):not(#\#){
  height: 100%;
}.h-px:not(#\#):not(#\#){
  height: 1px;
}.h-screen:not(#\#):not(#\#){
  height: 100vh;
}.max-h-64:not(#\#):not(#\#){
  max-height: 16rem;
}.max-h-72:not(#\#):not(#\#){
  max-height: 18rem;
}.max-h-96:not(#\#):not(#\#){
  max-height: 24rem;
}.max-h-\[300px\]:not(#\#):not(#\#){
  max-height: 300px;
}.max-h-\[60vh\]:not(#\#):not(#\#){
  max-height: 60vh;
}.max-h-\[80\%\]:not(#\#):not(#\#){
  max-height: 80%;
}.max-h-\[90\%\]:not(#\#):not(#\#){
  max-height: 90%;
}.max-h-\[90vh\]:not(#\#):not(#\#){
  max-height: 90vh;
}.max-h-\[95\%\]:not(#\#):not(#\#){
  max-height: 95%;
}.max-h-\[96\%\]:not(#\#):not(#\#){
  max-height: 96%;
}.max-h-full:not(#\#):not(#\#){
  max-height: 100%;
}.max-h-none:not(#\#):not(#\#){
  max-height: none;
}.max-h-screen:not(#\#):not(#\#){
  max-height: 100vh;
}.min-h-0:not(#\#):not(#\#){
  min-height: 0px;
}.min-h-10:not(#\#):not(#\#){
  min-height: 2.5rem;
}.min-h-\[200px\]:not(#\#):not(#\#){
  min-height: 200px;
}.min-h-\[400px\]:not(#\#):not(#\#){
  min-height: 400px;
}.min-h-\[60px\]:not(#\#):not(#\#){
  min-height: 60px;
}.min-h-full:not(#\#):not(#\#){
  min-height: 100%;
}.w-0:not(#\#):not(#\#){
  width: 0px;
}.w-0\.5:not(#\#):not(#\#){
  width: 0.125rem;
}.w-1:not(#\#):not(#\#){
  width: 0.25rem;
}.w-1\/2:not(#\#):not(#\#){
  width: 50%;
}.w-1\/4:not(#\#):not(#\#){
  width: 25%;
}.w-10:not(#\#):not(#\#){
  width: 2.5rem;
}.w-12:not(#\#):not(#\#){
  width: 3rem;
}.w-16:not(#\#):not(#\#){
  width: 4rem;
}.w-2:not(#\#):not(#\#){
  width: 0.5rem;
}.w-2\.5:not(#\#):not(#\#){
  width: 0.625rem;
}.w-3:not(#\#):not(#\#){
  width: 0.75rem;
}.w-3\.5:not(#\#):not(#\#){
  width: 0.875rem;
}.w-3\/4:not(#\#):not(#\#){
  width: 75%;
}.w-4:not(#\#):not(#\#){
  width: 1rem;
}.w-5:not(#\#):not(#\#){
  width: 1.25rem;
}.w-6:not(#\#):not(#\#){
  width: 1.5rem;
}.w-64:not(#\#):not(#\#){
  width: 16rem;
}.w-7:not(#\#):not(#\#){
  width: 1.75rem;
}.w-72:not(#\#):not(#\#){
  width: 18rem;
}.w-8:not(#\#):not(#\#){
  width: 2rem;
}.w-9:not(#\#):not(#\#){
  width: 2.25rem;
}.w-\[100px\]:not(#\#):not(#\#){
  width: 100px;
}.w-\[1px\]:not(#\#):not(#\#){
  width: 1px;
}.w-\[200px\]:not(#\#):not(#\#){
  width: 200px;
}.w-\[22px\]:not(#\#):not(#\#){
  width: 22px;
}.w-\[50px\]:not(#\#):not(#\#){
  width: 50px;
}.w-\[80px\]:not(#\#):not(#\#){
  width: 80px;
}.w-dvw:not(#\#):not(#\#){
  width: 100dvw;
}.w-full:not(#\#):not(#\#){
  width: 100%;
}.w-max:not(#\#):not(#\#){
  width: -moz-max-content;
  width: max-content;
}.w-px:not(#\#):not(#\#){
  width: 1px;
}.min-w-0:not(#\#):not(#\#){
  min-width: 0px;
}.min-w-16:not(#\#):not(#\#){
  min-width: 4rem;
}.min-w-3:not(#\#):not(#\#){
  min-width: 0.75rem;
}.min-w-72:not(#\#):not(#\#){
  min-width: 18rem;
}.min-w-\[12rem\]:not(#\#):not(#\#){
  min-width: 12rem;
}.min-w-\[8rem\]:not(#\#):not(#\#){
  min-width: 8rem;
}.min-w-\[var\(--radix-select-trigger-width\)\]:not(#\#):not(#\#){
  min-width: var(--radix-select-trigger-width);
}.min-w-max:not(#\#):not(#\#){
  min-width: -moz-max-content;
  min-width: max-content;
}.max-w-2xl:not(#\#):not(#\#){
  max-width: 42rem;
}.max-w-3:not(#\#):not(#\#){
  max-width: 0.75rem;
}.max-w-44:not(#\#):not(#\#){
  max-width: 11rem;
}.max-w-48:not(#\#):not(#\#){
  max-width: 12rem;
}.max-w-4xl:not(#\#):not(#\#){
  max-width: 56rem;
}.max-w-96:not(#\#):not(#\#){
  max-width: 24rem;
}.max-w-\[361px\]:not(#\#):not(#\#){
  max-width: 361px;
}.max-w-\[90\%\]:not(#\#):not(#\#){
  max-width: 90%;
}.max-w-\[95\%\]:not(#\#):not(#\#){
  max-width: 95%;
}.max-w-full:not(#\#):not(#\#){
  max-width: 100%;
}.max-w-lg:not(#\#):not(#\#){
  max-width: 32rem;
}.max-w-max:not(#\#):not(#\#){
  max-width: -moz-max-content;
  max-width: max-content;
}.max-w-md:not(#\#):not(#\#){
  max-width: 28rem;
}.max-w-sm:not(#\#):not(#\#){
  max-width: 24rem;
}.max-w-xl:not(#\#):not(#\#){
  max-width: 36rem;
}.max-w-xs:not(#\#):not(#\#){
  max-width: 20rem;
}.flex-1:not(#\#):not(#\#){
  flex: 1 1 0%;
}.flex-shrink-0:not(#\#):not(#\#){
  flex-shrink: 0;
}.shrink-0:not(#\#):not(#\#){
  flex-shrink: 0;
}.flex-grow:not(#\#):not(#\#){
  flex-grow: 1;
}.grow:not(#\#):not(#\#){
  flex-grow: 1;
}.grow-0:not(#\#):not(#\#){
  flex-grow: 0;
}.basis-full:not(#\#):not(#\#){
  flex-basis: 100%;
}.caption-top:not(#\#):not(#\#){
  caption-side: top;
}.caption-bottom:not(#\#):not(#\#){
  caption-side: bottom;
}.border-collapse:not(#\#):not(#\#){
  border-collapse: collapse;
}.-translate-x-1\/2:not(#\#):not(#\#){
  --tw-translate-x: -50%;
  transform: translate(-50%, 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: 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:not(#\#):not(#\#){
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) 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: 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-\[50\%\]:not(#\#):not(#\#){
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) 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: 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-\[-50\%\]:not(#\#):not(#\#){
  --tw-translate-x: -50%;
  transform: translate(-50%, 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: 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:not(#\#):not(#\#){
  --tw-translate-x: 100%;
  transform: translate(100%, 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: 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-\[-100\%\]:not(#\#):not(#\#){
  --tw-translate-y: -100%;
  transform: translate(var(--tw-translate-x), -100%) 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: 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-\[-50\%\]:not(#\#):not(#\#){
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) 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: 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-0:not(#\#):not(#\#){
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(0deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  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:not(#\#):not(#\#){
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  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-45:not(#\#):not(#\#){
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(45deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  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:not(#\#):not(#\#){
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(90deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  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));
}.scale-105:not(#\#):not(#\#){
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  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(1.05) scaleY(1.05);
  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:not(#\#):not(#\#){
  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 pulse{50%{
    opacity: .5;
  }
}.animate-\[pulse_0\.2s_ease-in-out_infinite\]:not(#\#):not(#\#){
  animation: pulse 0.2s ease-in-out infinite;
}@keyframes pulse{50%{
    opacity: .5;
  }
}.animate-\[pulse_0\.5s_ease-in-out_infinite\]:not(#\#):not(#\#){
  animation: pulse 0.5s ease-in-out infinite;
}@keyframes pulse{50%{
    opacity: .5;
  }
}.animate-pulse:not(#\#):not(#\#){
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}@keyframes spin{to{
    transform: rotate(360deg);
  }
}.animate-spin:not(#\#):not(#\#){
  animation: spin 1s linear infinite;
}.cursor-default:not(#\#):not(#\#){
  cursor: default;
}.cursor-grab:not(#\#):not(#\#){
  cursor: grab;
}.cursor-help:not(#\#):not(#\#){
  cursor: help;
}.cursor-not-allowed:not(#\#):not(#\#){
  cursor: not-allowed;
}.cursor-pointer:not(#\#):not(#\#){
  cursor: pointer;
}.cursor-text:not(#\#):not(#\#){
  cursor: text;
}.touch-none:not(#\#):not(#\#){
  touch-action: none;
}.select-none:not(#\#):not(#\#){
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}.select-auto:not(#\#):not(#\#){
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
}.resize:not(#\#):not(#\#){
  resize: both;
}.list-none:not(#\#):not(#\#){
  list-style-type: none;
}.grid-cols-1:not(#\#):not(#\#){
  grid-template-columns: repeat(1, minmax(0, 1fr));
}.grid-cols-2:not(#\#):not(#\#){
  grid-template-columns: repeat(2, minmax(0, 1fr));
}.grid-cols-7:not(#\#):not(#\#){
  grid-template-columns: repeat(7, minmax(0, 1fr));
}.grid-cols-\[1fr_10px_1fr\]:not(#\#):not(#\#){
  grid-template-columns: 1fr 10px 1fr;
}.grid-cols-\[1fr_60px_1fr\]:not(#\#):not(#\#){
  grid-template-columns: 1fr 60px 1fr;
}.flex-row:not(#\#):not(#\#){
  flex-direction: row;
}.flex-row-reverse:not(#\#):not(#\#){
  flex-direction: row-reverse;
}.flex-col:not(#\#):not(#\#){
  flex-direction: column;
}.flex-col-reverse:not(#\#):not(#\#){
  flex-direction: column-reverse;
}.flex-wrap:not(#\#):not(#\#){
  flex-wrap: wrap;
}.items-start:not(#\#):not(#\#){
  align-items: flex-start;
}.items-end:not(#\#):not(#\#){
  align-items: flex-end;
}.items-center:not(#\#):not(#\#){
  align-items: center;
}.items-stretch:not(#\#):not(#\#){
  align-items: stretch;
}.justify-start:not(#\#):not(#\#){
  justify-content: flex-start;
}.justify-end:not(#\#):not(#\#){
  justify-content: flex-end;
}.justify-center:not(#\#):not(#\#){
  justify-content: center;
}.justify-between:not(#\#):not(#\#){
  justify-content: space-between;
}.gap-0:not(#\#):not(#\#){
  gap: 0px;
}.gap-0\.5:not(#\#):not(#\#){
  gap: 0.125rem;
}.gap-1:not(#\#):not(#\#){
  gap: 0.25rem;
}.gap-1\.5:not(#\#):not(#\#){
  gap: 0.375rem;
}.gap-2:not(#\#):not(#\#){
  gap: 0.5rem;
}.gap-3:not(#\#):not(#\#){
  gap: 0.75rem;
}.gap-4:not(#\#):not(#\#){
  gap: 1rem;
}.gap-6:not(#\#):not(#\#){
  gap: 1.5rem;
}.space-x-1:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * 0);
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * (1 - 0));
  margin-left: calc(0.25rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.25rem * calc(1 - 0));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}.space-x-2:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * 0);
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * (1 - 0));
  margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(0.5rem * calc(1 - 0));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}.space-x-4:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * 0);
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * (1 - 0));
  margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
  margin-left: calc(1rem * calc(1 - 0));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}.space-y-0:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0px * (1 - 0));
  margin-top: calc(0px * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0px * calc(1 - 0));
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0px * 0);
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
}.space-y-1:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * (1 - 0));
  margin-top: calc(0.25rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.25rem * calc(1 - 0));
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * 0);
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}.space-y-1\.5:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * (1 - 0));
  margin-top: calc(0.375rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.375rem * calc(1 - 0));
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * 0);
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}.space-y-2:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * (1 - 0));
  margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}.space-y-3:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * (1 - 0));
  margin-top: calc(0.75rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(0.75rem * calc(1 - 0));
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * 0);
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}.space-y-4:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * (1 - 0));
  margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}.space-y-6:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * (1 - 0));
  margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse)));
  margin-top: calc(1.5rem * calc(1 - 0));
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * 0);
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}.overflow-auto:not(#\#):not(#\#){
  overflow: auto;
}.overflow-hidden:not(#\#):not(#\#){
  overflow: hidden;
}.overflow-visible:not(#\#):not(#\#){
  overflow: visible;
}.overflow-x-auto:not(#\#):not(#\#){
  overflow-x: auto;
}.overflow-y-auto:not(#\#):not(#\#){
  overflow-y: auto;
}.overflow-x-hidden:not(#\#):not(#\#){
  overflow-x: hidden;
}.overflow-y-visible:not(#\#):not(#\#){
  overflow-y: visible;
}.truncate:not(#\#):not(#\#){
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}.whitespace-nowrap:not(#\#):not(#\#){
  white-space: nowrap;
}.break-words:not(#\#):not(#\#){
  word-wrap: break-word;
}.rounded:not(#\#):not(#\#){
  border-radius: 0.25rem;
}.rounded-\[16px\]:not(#\#):not(#\#){
  border-radius: 16px;
}.rounded-\[2px\]:not(#\#):not(#\#){
  border-radius: 2px;
}.rounded-\[36px\]:not(#\#):not(#\#){
  border-radius: 36px;
}.rounded-\[inherit\]:not(#\#):not(#\#){
  border-radius: inherit;
}.rounded-full:not(#\#):not(#\#){
  border-radius: 9999px;
}.rounded-lg:not(#\#):not(#\#){
  border-radius: 0.5rem;
  border-radius: var(--radius);
}.rounded-md:not(#\#):not(#\#){
  border-radius: calc(0.5rem - 2px);
  border-radius: calc(var(--radius) - 2px);
}.rounded-none:not(#\#):not(#\#){
  border-radius: 0px;
}.rounded-sm:not(#\#):not(#\#){
  border-radius: calc(0.5rem - 4px);
  border-radius: calc(var(--radius) - 4px);
}.rounded-xl:not(#\#):not(#\#){
  border-radius: calc(0.5rem + 4px);
  border-radius: calc(var(--radius) + 4px);
}.rounded-l-lg:not(#\#):not(#\#){
  border-top-left-radius: 0.5rem;
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: 0.5rem;
  border-bottom-left-radius: var(--radius);
}.rounded-r-none:not(#\#):not(#\#){
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}.rounded-t-\[10px\]:not(#\#):not(#\#){
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}.rounded-tl-sm:not(#\#):not(#\#){
  border-top-left-radius: calc(0.5rem - 4px);
  border-top-left-radius: calc(var(--radius) - 4px);
}.\!border-2{
  border-width: 2px !important;
}.border:not(#\#):not(#\#){
  border-width: 1px;
}.border-0:not(#\#):not(#\#){
  border-width: 0px;
}.border-2:not(#\#):not(#\#){
  border-width: 2px;
}.border-4:not(#\#):not(#\#){
  border-width: 4px;
}.border-\[1\.5px\]:not(#\#):not(#\#){
  border-width: 1.5px;
}.border-y:not(#\#):not(#\#){
  border-top-width: 1px;
  border-bottom-width: 1px;
}.border-b:not(#\#):not(#\#){
  border-bottom-width: 1px;
}.border-b-0:not(#\#):not(#\#){
  border-bottom-width: 0px;
}.border-b-2:not(#\#):not(#\#){
  border-bottom-width: 2px;
}.border-l:not(#\#):not(#\#){
  border-left-width: 1px;
}.border-l-2:not(#\#):not(#\#){
  border-left-width: 2px;
}.border-l-4:not(#\#):not(#\#){
  border-left-width: 4px;
}.border-r:not(#\#):not(#\#){
  border-right-width: 1px;
}.border-t:not(#\#):not(#\#){
  border-top-width: 1px;
}.border-t-0:not(#\#):not(#\#){
  border-top-width: 0px;
}.border-solid:not(#\#):not(#\#){
  border-style: solid;
}.border-dashed:not(#\#):not(#\#){
  border-style: dashed;
}.border-none:not(#\#):not(#\#){
  border-style: none;
}.border-\[\#F7F7F7\]:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(247, 247, 247, 1);
  border-color: rgba(247, 247, 247, var(--tw-border-opacity));
}.border-\[--color-border\]:not(#\#):not(#\#){
  border-color: var(--color-border);
}.border-amber-200:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(253, 230, 138, 1);
  border-color: rgba(253, 230, 138, var(--tw-border-opacity));
}.border-blue-200:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(191, 219, 254, 1);
  border-color: rgba(191, 219, 254, var(--tw-border-opacity));
}.border-blue-300:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(147, 197, 253, 1);
  border-color: rgba(147, 197, 253, var(--tw-border-opacity));
}.border-blue-500:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(59, 130, 246, 1);
  border-color: rgba(59, 130, 246, var(--tw-border-opacity));
}.border-border:not(#\#):not(#\#){
  border-color: hsl(214, 32%, 91%);
  border-color: hsl(var(--border));
}.border-border\/50:not(#\#):not(#\#){
  border-color: hsla(214, 32%, 91%, 0.5);
  border-color: hsl(var(--border) / 0.5);
}.border-destructive:not(#\#):not(#\#){
  border-color: hsl(0, 84%, 60%);
  border-color: hsl(var(--destructive));
}.border-destructive\/50:not(#\#):not(#\#){
  border-color: hsla(0, 84%, 60%, 0.5);
  border-color: hsl(var(--destructive) / 0.5);
}.border-gray-100:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, 1);
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}.border-gray-200:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, 1);
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}.border-gray-300:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, 1);
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}.border-gray-600:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(75, 85, 99, 1);
  border-color: rgba(75, 85, 99, var(--tw-border-opacity));
}.border-green-200:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(187, 247, 208, 1);
  border-color: rgba(187, 247, 208, var(--tw-border-opacity));
}.border-green-300:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(134, 239, 172, 1);
  border-color: rgba(134, 239, 172, var(--tw-border-opacity));
}.border-green-500:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(34, 197, 94, 1);
  border-color: rgba(34, 197, 94, var(--tw-border-opacity));
}.border-green-600:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(22, 163, 74, 1);
  border-color: rgba(22, 163, 74, var(--tw-border-opacity));
}.border-input:not(#\#):not(#\#){
  border-color: hsl(214, 32%, 91%);
  border-color: hsl(var(--input));
}.border-orange-200:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(254, 215, 170, 1);
  border-color: rgba(254, 215, 170, var(--tw-border-opacity));
}.border-orange-500:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(249, 115, 22, 1);
  border-color: rgba(249, 115, 22, var(--tw-border-opacity));
}.border-primary:not(#\#):not(#\#){
  border-color: hsl(233, 100%, 67%);
  border-color: hsl(var(--primary));
}.border-primary\/50:not(#\#):not(#\#){
  border-color: hsla(233, 100%, 67%, 0.5);
  border-color: hsl(var(--primary) / 0.5);
}.border-red-200:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(254, 202, 202, 1);
  border-color: rgba(254, 202, 202, var(--tw-border-opacity));
}.border-red-400:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(248, 113, 113, 1);
  border-color: rgba(248, 113, 113, var(--tw-border-opacity));
}.border-red-500:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(239, 68, 68, 1);
  border-color: rgba(239, 68, 68, var(--tw-border-opacity));
}.border-red-600:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(220, 38, 38, 1);
  border-color: rgba(220, 38, 38, var(--tw-border-opacity));
}.border-transparent:not(#\#):not(#\#){
  border-color: transparent;
}.border-white:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}.border-yellow-500:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(234, 179, 8, 1);
  border-color: rgba(234, 179, 8, var(--tw-border-opacity));
}.border-l-primary:not(#\#):not(#\#){
  border-left-color: hsl(233, 100%, 67%);
  border-left-color: hsl(var(--primary));
}.border-l-transparent:not(#\#):not(#\#){
  border-left-color: transparent;
}.border-t-transparent:not(#\#):not(#\#){
  border-top-color: transparent;
}.bg-\[\#00bfff\]:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(0, 191, 255, 1);
  background-color: rgba(0, 191, 255, var(--tw-bg-opacity));
}.bg-\[\#F7F8F9\]:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(247, 248, 249, 1);
  background-color: rgba(247, 248, 249, var(--tw-bg-opacity));
}.bg-\[\#FEFFFE\]:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(254, 255, 254, 1);
  background-color: rgba(254, 255, 254, var(--tw-bg-opacity));
}.bg-\[--color-bg\]:not(#\#):not(#\#){
  background-color: var(--color-bg);
}.bg-accent:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--accent));
}.bg-amber-50:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(255, 251, 235, 1);
  background-color: rgba(255, 251, 235, var(--tw-bg-opacity));
}.bg-background:not(#\#):not(#\#){
  background-color: hsl(0, 0%, 100%);
  background-color: hsl(var(--background));
}.bg-black\/30:not(#\#):not(#\#){
  background-color: rgba(0, 0, 0, 0.3);
}.bg-black\/40:not(#\#):not(#\#){
  background-color: rgba(0, 0, 0, 0.4);
}.bg-black\/80:not(#\#):not(#\#){
  background-color: rgba(0, 0, 0, 0.8);
}.bg-blue-100:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, 1);
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
}.bg-blue-50:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(239, 246, 255, 1);
  background-color: rgba(239, 246, 255, var(--tw-bg-opacity));
}.bg-blue-500:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(59, 130, 246, 1);
  background-color: rgba(59, 130, 246, var(--tw-bg-opacity));
}.bg-blue-600:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(37, 99, 235, 1);
  background-color: rgba(37, 99, 235, var(--tw-bg-opacity));
}.bg-border:not(#\#):not(#\#){
  background-color: hsl(214, 32%, 91%);
  background-color: hsl(var(--border));
}.bg-card:not(#\#):not(#\#){
  background-color: hsl(0, 0%, 100%);
  background-color: hsl(var(--card));
}.bg-destructive:not(#\#):not(#\#){
  background-color: hsl(0, 84%, 60%);
  background-color: hsl(var(--destructive));
}.bg-foreground:not(#\#):not(#\#){
  background-color: hsl(222, 84%, 5%);
  background-color: hsl(var(--foreground));
}.bg-gray-100:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}.bg-gray-200:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}.bg-gray-300:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, 1);
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}.bg-gray-50:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}.bg-green-100:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(220, 252, 231, 1);
  background-color: rgba(220, 252, 231, var(--tw-bg-opacity));
}.bg-green-200:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(187, 247, 208, 1);
  background-color: rgba(187, 247, 208, var(--tw-bg-opacity));
}.bg-green-50:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(240, 253, 244, 1);
  background-color: rgba(240, 253, 244, var(--tw-bg-opacity));
}.bg-green-500:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(34, 197, 94, 1);
  background-color: rgba(34, 197, 94, var(--tw-bg-opacity));
}.bg-green-600:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(22, 163, 74, 1);
  background-color: rgba(22, 163, 74, var(--tw-bg-opacity));
}.bg-muted:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--muted));
}.bg-muted\/30:not(#\#):not(#\#){
  background-color: hsla(210, 40%, 96%, 0.3);
  background-color: hsl(var(--muted) / 0.3);
}.bg-muted\/40:not(#\#):not(#\#){
  background-color: hsla(210, 40%, 96%, 0.4);
  background-color: hsl(var(--muted) / 0.4);
}.bg-muted\/50:not(#\#):not(#\#){
  background-color: hsla(210, 40%, 96%, 0.5);
  background-color: hsl(var(--muted) / 0.5);
}.bg-orange-100:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(255, 237, 213, 1);
  background-color: rgba(255, 237, 213, var(--tw-bg-opacity));
}.bg-orange-50:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(255, 247, 237, 1);
  background-color: rgba(255, 247, 237, var(--tw-bg-opacity));
}.bg-popover:not(#\#):not(#\#){
  background-color: hsl(0, 0%, 100%);
  background-color: hsl(var(--popover));
}.bg-primary:not(#\#):not(#\#){
  background-color: hsl(233, 100%, 67%);
  background-color: hsl(var(--primary));
}.bg-primary\/10:not(#\#):not(#\#){
  background-color: hsla(233, 100%, 67%, 0.1);
  background-color: hsl(var(--primary) / 0.1);
}.bg-primary\/20:not(#\#):not(#\#){
  background-color: hsla(233, 100%, 67%, 0.2);
  background-color: hsl(var(--primary) / 0.2);
}.bg-primary\/5:not(#\#):not(#\#){
  background-color: hsla(233, 100%, 67%, 0.05);
  background-color: hsl(var(--primary) / 0.05);
}.bg-red-100:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(254, 226, 226, 1);
  background-color: rgba(254, 226, 226, var(--tw-bg-opacity));
}.bg-red-200:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(254, 202, 202, 1);
  background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
}.bg-red-50:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(254, 242, 242, 1);
  background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
}.bg-red-500:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, 1);
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
}.bg-red-600:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(220, 38, 38, 1);
  background-color: rgba(220, 38, 38, var(--tw-bg-opacity));
}.bg-red-900\/40:not(#\#):not(#\#){
  background-color: rgba(127, 29, 29, 0.4);
}.bg-secondary:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--secondary));
}.bg-slate-50:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(248, 250, 252, 1);
  background-color: rgba(248, 250, 252, var(--tw-bg-opacity));
}.bg-slate-50\/80:not(#\#):not(#\#){
  background-color: rgba(248, 250, 252, 0.8);
}.bg-slate-500:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(100, 116, 139, 1);
  background-color: rgba(100, 116, 139, var(--tw-bg-opacity));
}.bg-transparent:not(#\#):not(#\#){
  background-color: transparent;
}.bg-white:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}.bg-white\/70:not(#\#):not(#\#){
  background-color: rgba(255, 255, 255, 0.7);
}.bg-white\/80:not(#\#):not(#\#){
  background-color: rgba(255, 255, 255, 0.8);
}.bg-gradient-to-br:not(#\#):not(#\#){
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}.bg-gradient-to-r:not(#\#):not(#\#){
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}.from-slate-400:not(#\#):not(#\#){
  --tw-gradient-from: #94a3b8 var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(148, 163, 184, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}.to-slate-300:not(#\#):not(#\#){
  --tw-gradient-to: #cbd5e1 var(--tw-gradient-to-position);
}.to-slate-500:not(#\#):not(#\#){
  --tw-gradient-to: #64748b var(--tw-gradient-to-position);
}.fill-current:not(#\#):not(#\#){
  fill: currentColor;
}.fill-primary:not(#\#):not(#\#){
  fill: hsl(233, 100%, 67%);
  fill: hsl(var(--primary));
}.stroke-\[3\]:not(#\#):not(#\#){
  stroke-width: 3;
}.stroke-\[4px\]:not(#\#):not(#\#){
  stroke-width: 4px;
}.stroke-\[5px\]:not(#\#):not(#\#){
  stroke-width: 5px;
}.p-0:not(#\#):not(#\#){
  padding: 0px;
}.p-1:not(#\#):not(#\#){
  padding: 0.25rem;
}.p-2:not(#\#):not(#\#){
  padding: 0.5rem;
}.p-3:not(#\#):not(#\#){
  padding: 0.75rem;
}.p-4:not(#\#):not(#\#){
  padding: 1rem;
}.p-6:not(#\#):not(#\#){
  padding: 1.5rem;
}.p-\[1px\]:not(#\#):not(#\#){
  padding: 1px;
}.px-0:not(#\#):not(#\#){
  padding-left: 0px;
  padding-right: 0px;
}.px-0\.5:not(#\#):not(#\#){
  padding-left: 0.125rem;
  padding-right: 0.125rem;
}.px-1:not(#\#):not(#\#){
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}.px-2:not(#\#):not(#\#){
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}.px-2\.5:not(#\#):not(#\#){
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}.px-3:not(#\#):not(#\#){
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}.px-4:not(#\#):not(#\#){
  padding-left: 1rem;
  padding-right: 1rem;
}.px-6:not(#\#):not(#\#){
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}.px-8:not(#\#):not(#\#){
  padding-left: 2rem;
  padding-right: 2rem;
}.py-0:not(#\#):not(#\#){
  padding-top: 0px;
  padding-bottom: 0px;
}.py-0\.5:not(#\#):not(#\#){
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}.py-1:not(#\#):not(#\#){
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}.py-1\.5:not(#\#):not(#\#){
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}.py-2:not(#\#):not(#\#){
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}.py-3:not(#\#):not(#\#){
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}.py-3\.5:not(#\#):not(#\#){
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}.py-4:not(#\#):not(#\#){
  padding-top: 1rem;
  padding-bottom: 1rem;
}.py-6:not(#\#):not(#\#){
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}.py-8:not(#\#):not(#\#){
  padding-top: 2rem;
  padding-bottom: 2rem;
}.pb-1:not(#\#):not(#\#){
  padding-bottom: 0.25rem;
}.pb-2:not(#\#):not(#\#){
  padding-bottom: 0.5rem;
}.pb-3:not(#\#):not(#\#){
  padding-bottom: 0.75rem;
}.pb-4:not(#\#):not(#\#){
  padding-bottom: 1rem;
}.pb-6:not(#\#):not(#\#){
  padding-bottom: 1.5rem;
}.pl-1:not(#\#):not(#\#){
  padding-left: 0.25rem;
}.pl-2:not(#\#):not(#\#){
  padding-left: 0.5rem;
}.pl-2\.5:not(#\#):not(#\#){
  padding-left: 0.625rem;
}.pl-3:not(#\#):not(#\#){
  padding-left: 0.75rem;
}.pl-4:not(#\#):not(#\#){
  padding-left: 1rem;
}.pl-8:not(#\#):not(#\#){
  padding-left: 2rem;
}.pr-2:not(#\#):not(#\#){
  padding-right: 0.5rem;
}.pr-2\.5:not(#\#):not(#\#){
  padding-right: 0.625rem;
}.pr-3:not(#\#):not(#\#){
  padding-right: 0.75rem;
}.pr-6:not(#\#):not(#\#){
  padding-right: 1.5rem;
}.pr-8:not(#\#):not(#\#){
  padding-right: 2rem;
}.pt-0:not(#\#):not(#\#){
  padding-top: 0px;
}.pt-1:not(#\#):not(#\#){
  padding-top: 0.25rem;
}.pt-2:not(#\#):not(#\#){
  padding-top: 0.5rem;
}.pt-3:not(#\#):not(#\#){
  padding-top: 0.75rem;
}.pt-4:not(#\#):not(#\#){
  padding-top: 1rem;
}.text-left:not(#\#):not(#\#){
  text-align: left;
}.text-center:not(#\#):not(#\#){
  text-align: center;
}.text-right:not(#\#):not(#\#){
  text-align: right;
}.align-middle:not(#\#):not(#\#){
  vertical-align: middle;
}.font-mono:not(#\#):not(#\#){
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}.text-2xl:not(#\#):not(#\#){
  font-size: 1.5rem;
  line-height: 2rem;
}.text-\[0\.8rem\]:not(#\#):not(#\#){
  font-size: 0.8rem;
}.text-\[10px\]:not(#\#):not(#\#){
  font-size: 10px;
}.text-\[17px\]:not(#\#):not(#\#){
  font-size: 17px;
}.text-\[22px\]:not(#\#):not(#\#){
  font-size: 22px;
}.text-\[8px\]:not(#\#):not(#\#){
  font-size: 8px;
}.text-base:not(#\#):not(#\#){
  font-size: 1rem;
  line-height: 1.5rem;
}.text-lg:not(#\#):not(#\#){
  font-size: 1.125rem;
  line-height: 1.75rem;
}.text-sm:not(#\#):not(#\#){
  font-size: 0.875rem;
  line-height: 1.25rem;
}.text-xl:not(#\#):not(#\#){
  font-size: 1.25rem;
  line-height: 1.75rem;
}.text-xs:not(#\#):not(#\#){
  font-size: 0.75rem;
  line-height: 1rem;
}.font-bold:not(#\#):not(#\#){
  font-weight: 700;
}.font-medium:not(#\#):not(#\#){
  font-weight: 500;
}.font-normal:not(#\#):not(#\#){
  font-weight: 400;
}.font-semibold:not(#\#):not(#\#){
  font-weight: 600;
}.uppercase:not(#\#):not(#\#){
  text-transform: uppercase;
}.tabular-nums:not(#\#):not(#\#){
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) tabular-nums var(--tw-numeric-fraction);
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}.leading-5:not(#\#):not(#\#){
  line-height: 1.25rem;
}.leading-6:not(#\#):not(#\#){
  line-height: 1.5rem;
}.leading-\[24px\]:not(#\#):not(#\#){
  line-height: 24px;
}.leading-none:not(#\#):not(#\#){
  line-height: 1;
}.tracking-tight:not(#\#):not(#\#){
  letter-spacing: -0.025em;
}.tracking-wider:not(#\#):not(#\#){
  letter-spacing: 0.05em;
}.tracking-widest:not(#\#):not(#\#){
  letter-spacing: 0.1em;
}.text-\[\#222222\]:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(34, 34, 34, 1);
  color: rgba(34, 34, 34, var(--tw-text-opacity));
}.text-\[\#949595\]:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(148, 149, 149, 1);
  color: rgba(148, 149, 149, var(--tw-text-opacity));
}.text-\[\#999999\]:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(153, 153, 153, 1);
  color: rgba(153, 153, 153, var(--tw-text-opacity));
}.text-accent-foreground:not(#\#):not(#\#){
  color: hsl(222, 47%, 11%);
  color: hsl(var(--accent-foreground));
}.text-accent-foreground\/50:not(#\#):not(#\#){
  color: hsla(222, 47%, 11%, 0.5);
  color: hsl(var(--accent-foreground) / 0.5);
}.text-amber-600:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(217, 119, 6, 1);
  color: rgba(217, 119, 6, var(--tw-text-opacity));
}.text-amber-800:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(146, 64, 14, 1);
  color: rgba(146, 64, 14, var(--tw-text-opacity));
}.text-black:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}.text-blue-500:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, 1);
  color: rgba(59, 130, 246, var(--tw-text-opacity));
}.text-blue-600:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(37, 99, 235, 1);
  color: rgba(37, 99, 235, var(--tw-text-opacity));
}.text-blue-700:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(29, 78, 216, 1);
  color: rgba(29, 78, 216, var(--tw-text-opacity));
}.text-card-foreground:not(#\#):not(#\#){
  color: hsl(222, 84%, 5%);
  color: hsl(var(--card-foreground));
}.text-current:not(#\#):not(#\#){
  color: currentColor;
}.text-destructive:not(#\#):not(#\#){
  color: hsl(0, 84%, 60%);
  color: hsl(var(--destructive));
}.text-destructive-foreground:not(#\#):not(#\#){
  color: hsl(210, 40%, 98%);
  color: hsl(var(--destructive-foreground));
}.text-foreground:not(#\#):not(#\#){
  color: hsl(222, 84%, 5%);
  color: hsl(var(--foreground));
}.text-foreground\/50:not(#\#):not(#\#){
  color: hsla(222, 84%, 5%, 0.5);
  color: hsl(var(--foreground) / 0.5);
}.text-gray-400:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}.text-gray-500:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, 1);
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}.text-gray-600:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, 1);
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}.text-gray-700:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, 1);
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}.text-gray-800:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity));
}.text-gray-900:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, 1);
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}.text-green-400:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(74, 222, 128, 1);
  color: rgba(74, 222, 128, var(--tw-text-opacity));
}.text-green-500:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(34, 197, 94, 1);
  color: rgba(34, 197, 94, var(--tw-text-opacity));
}.text-green-600:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(22, 163, 74, 1);
  color: rgba(22, 163, 74, var(--tw-text-opacity));
}.text-green-700:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(21, 128, 61, 1);
  color: rgba(21, 128, 61, var(--tw-text-opacity));
}.text-inherit:not(#\#):not(#\#){
  color: inherit;
}.text-muted-foreground:not(#\#):not(#\#){
  color: hsl(215, 16%, 47%);
  color: hsl(var(--muted-foreground));
}.text-muted-foreground\/50:not(#\#):not(#\#){
  color: hsla(215, 16%, 47%, 0.5);
  color: hsl(var(--muted-foreground) / 0.5);
}.text-orange-500:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(249, 115, 22, 1);
  color: rgba(249, 115, 22, var(--tw-text-opacity));
}.text-orange-600:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(234, 88, 12, 1);
  color: rgba(234, 88, 12, var(--tw-text-opacity));
}.text-orange-800:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(154, 52, 18, 1);
  color: rgba(154, 52, 18, var(--tw-text-opacity));
}.text-popover-foreground:not(#\#):not(#\#){
  color: hsl(222, 84%, 5%);
  color: hsl(var(--popover-foreground));
}.text-primary:not(#\#):not(#\#){
  color: hsl(233, 100%, 67%);
  color: hsl(var(--primary));
}.text-primary-foreground:not(#\#):not(#\#){
  color: hsl(0, 0%, 98%);
  color: hsl(var(--primary-foreground));
}.text-red-400:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(248, 113, 113, 1);
  color: rgba(248, 113, 113, var(--tw-text-opacity));
}.text-red-500:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, 1);
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}.text-red-600:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(220, 38, 38, 1);
  color: rgba(220, 38, 38, var(--tw-text-opacity));
}.text-secondary-foreground:not(#\#):not(#\#){
  color: hsl(222, 47%, 11%);
  color: hsl(var(--secondary-foreground));
}.text-slate-500:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(100, 116, 139, 1);
  color: rgba(100, 116, 139, var(--tw-text-opacity));
}.text-white:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, 1);
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}.text-yellow-500:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(234, 179, 8, 1);
  color: rgba(234, 179, 8, var(--tw-text-opacity));
}.line-through:not(#\#):not(#\#){
  text-decoration-line: line-through;
}.underline-offset-4:not(#\#):not(#\#){
  text-underline-offset: 4px;
}.antialiased:not(#\#):not(#\#){
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}.opacity-0:not(#\#):not(#\#){
  opacity: 0;
}.opacity-25:not(#\#):not(#\#){
  opacity: 0.25;
}.opacity-50:not(#\#):not(#\#){
  opacity: 0.5;
}.opacity-60:not(#\#):not(#\#){
  opacity: 0.6;
}.opacity-70:not(#\#):not(#\#){
  opacity: 0.7;
}.opacity-75:not(#\#):not(#\#){
  opacity: 0.75;
}.opacity-90:not(#\#):not(#\#){
  opacity: 0.9;
}.shadow:not(#\#):not(#\#){
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(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: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}.shadow-lg:not(#\#):not(#\#){
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(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: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}.shadow-md:not(#\#):not(#\#){
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(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: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}.shadow-sm:not(#\#):not(#\#){
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}.shadow-xl:not(#\#):not(#\#){
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(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: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}.shadow-slate-200:not(#\#):not(#\#){
  --tw-shadow-color: #e2e8f0;
  --tw-shadow: var(--tw-shadow-colored);
}.outline-none:not(#\#):not(#\#){
  outline: 2px solid transparent;
  outline-offset: 2px;
}.outline:not(#\#):not(#\#){
  outline-style: solid;
}.ring-0:not(#\#):not(#\#){
  --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), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}.ring-1:not(#\#):not(#\#){
  --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), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}.ring-2:not(#\#):not(#\#){
  --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), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}.ring-4:not(#\#):not(#\#){
  --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(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}.ring-8:not(#\#):not(#\#){
  --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(8px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}.ring-blue-400:not(#\#):not(#\#){
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(96, 165, 250, var(--tw-ring-opacity));
}.ring-gray-400:not(#\#):not(#\#){
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(156, 163, 175, var(--tw-ring-opacity));
}.ring-green-400:not(#\#):not(#\#){
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(74, 222, 128, var(--tw-ring-opacity));
}.ring-red-300:not(#\#):not(#\#){
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(252, 165, 165, var(--tw-ring-opacity));
}.ring-ring:not(#\#):not(#\#){
  --tw-ring-color: hsl(var(--ring));
}.ring-offset-2:not(#\#):not(#\#){
  --tw-ring-offset-width: 2px;
}.ring-offset-background:not(#\#):not(#\#){
  --tw-ring-offset-color: hsl(var(--background));
}.blur:not(#\#):not(#\#){
  --tw-blur: blur(8px);
  filter: blur(8px) 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: 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:not(#\#):not(#\#){
  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:not(#\#):not(#\#){
  --tw-backdrop-blur: blur(8px);
  -webkit-backdrop-filter: blur(8px) 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);
          backdrop-filter: blur(8px) 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);
  -webkit-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);
          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:not(#\#):not(#\#){
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.transition-all:not(#\#):not(#\#){
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.transition-colors:not(#\#):not(#\#){
  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:not(#\#):not(#\#){
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.transition-transform:not(#\#):not(#\#){
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.duration-1000:not(#\#):not(#\#){
  transition-duration: 1000ms;
}.duration-150:not(#\#):not(#\#){
  transition-duration: 150ms;
}.duration-200:not(#\#):not(#\#){
  transition-duration: 200ms;
}.duration-300:not(#\#):not(#\#){
  transition-duration: 300ms;
}.duration-500:not(#\#):not(#\#){
  transition-duration: 500ms;
}.ease-in-out:not(#\#):not(#\#){
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}.ease-out:not(#\#):not(#\#){
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}@keyframes enter{from{
    opacity: 1;
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate(0);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}@keyframes exit{to{
    opacity: 1;
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotate(0);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}.animate-in:not(#\#):not(#\#){
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}.fade-in-0:not(#\#):not(#\#){
  --tw-enter-opacity: 0;
}.zoom-in-95:not(#\#):not(#\#){
  --tw-enter-scale: .95;
}.duration-1000:not(#\#):not(#\#){
  animation-duration: 1000ms;
}.duration-150:not(#\#):not(#\#){
  animation-duration: 150ms;
}.duration-200:not(#\#):not(#\#){
  animation-duration: 200ms;
}.duration-300:not(#\#):not(#\#){
  animation-duration: 300ms;
}.duration-500:not(#\#):not(#\#){
  animation-duration: 500ms;
}.ease-in-out:not(#\#):not(#\#){
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}.ease-out:not(#\#):not(#\#){
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}.paused:not(#\#):not(#\#){
  animation-play-state: paused;
}@font-face{font-family:"Geist";src:url(../3cabaede33332338193b.woff2) format("woff2"),url(../c1f7ba1687ecc0a4de93.otf) format("opentype");font-weight:100;font-style:normal;font-display:swap}@font-face{font-family:"Geist";src:url(../d51c02c1202e023d7f9f.woff2) format("woff2"),url(../77c4b395bd70fd14c5c5.otf) format("opentype");font-weight:200;font-style:normal;font-display:swap}@font-face{font-family:"Geist";src:url(../4d2f0323d39133721e07.woff2) format("woff2"),url(../6db7e7140575314a6c1d.otf) format("opentype");font-weight:300;font-style:normal;font-display:swap}@font-face{font-family:"Geist";src:url(../3664c78826390146d0fe.woff2) format("woff2"),url(../eb741f1170c20db8922f.otf) format("opentype");font-weight:normal;font-style:normal;font-display:swap}@font-face{font-family:"Geist";src:url(../7d5b09fea8f217bbe3ba.woff2) format("woff2"),url(../fe530d4ab5248f052eb6.otf) format("opentype");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Geist";src:url(../175d19905967c2e34165.woff2) format("woff2"),url(../3955ffca95b8373c75a4.otf) format("opentype");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Geist";src:url(../eaf2ae438c8a05d29561.woff2) format("woff2"),url(../149f27c1305e10c3bee7.otf) format("opentype");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Geist";src:url(../bca7ccc4376d8fd33a9a.woff2) format("woff2"),url(../a9a2db387bf2f1df52d9.otf) format("opentype");font-weight:800;font-style:normal;font-display:swap}.file\:border-0:not(#\#):not(#\#)::file-selector-button{
  border-width: 0px;
}.file\:bg-transparent:not(#\#):not(#\#)::file-selector-button{
  background-color: transparent;
}.file\:text-sm:not(#\#):not(#\#)::file-selector-button{
  font-size: 0.875rem;
  line-height: 1.25rem;
}.file\:font-medium:not(#\#):not(#\#)::file-selector-button{
  font-weight: 500;
}.placeholder\:text-muted-foreground:not(#\#):not(#\#)::-moz-placeholder{
  color: hsl(215, 16%, 47%);
  color: hsl(var(--muted-foreground));
}.placeholder\:text-muted-foreground:not(#\#):not(#\#)::placeholder{
  color: hsl(215, 16%, 47%);
  color: hsl(var(--muted-foreground));
}.before\:absolute:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  position: absolute;
}.before\:bottom-1:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  bottom: 0.25rem;
}.before\:left-0:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  left: 0px;
}.before\:left-1\/2:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  left: 50%;
}.before\:right-1:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  right: 0.25rem;
}.before\:-z-10:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  z-index: -10;
}.before\:h-1:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  height: 0.25rem;
}.before\:h-1\.5:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  height: 0.375rem;
}.before\:min-h-full:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  min-height: 100%;
}.before\:w-1:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  width: 0.25rem;
}.before\:w-1\.5:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  width: 0.375rem;
}.before\:w-full:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  width: 100%;
}.before\:-translate-x-1\/2:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  --tw-translate-x: -50%;
  transform: translate(-50%, 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: 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));
}.before\:rounded-full:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  border-radius: 9999px;
}.before\:rounded-lg:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  border-radius: 0.5rem;
  border-radius: var(--radius);
}.before\:bg-accent\/70:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  background-color: hsla(210, 40%, 96%, 0.7);
  background-color: hsl(var(--accent) / 0.7);
}.before\:bg-primary:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  background-color: hsl(233, 100%, 67%);
  background-color: hsl(var(--primary));
}.before\:bg-primary-foreground:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  background-color: hsl(0, 0%, 98%);
  background-color: hsl(var(--primary-foreground));
}.before\:bg-primary\/20:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  background-color: hsla(233, 100%, 67%, 0.2);
  background-color: hsl(var(--primary) / 0.2);
}.before\:opacity-0:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  opacity: 0;
}.before\:opacity-100:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  opacity: 1;
}.before\:content-\[\'\'\]:not(#\#):not(#\#)::before{
  --tw-content: '';
  content: '';
  content: var(--tw-content);
}.after\:absolute:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  position: absolute;
}.after\:inset-y-0:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  top: 0px;
  bottom: 0px;
}.after\:bottom-1:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  bottom: 0.25rem;
}.after\:left-1\/2:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  left: 50%;
}.after\:h-0:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  height: 0px;
}.after\:h-0\.5:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  height: 0.125rem;
}.after\:w-1:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  width: 0.25rem;
}.after\:w-4:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  width: 1rem;
}.after\:-translate-x-1\/2:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  --tw-translate-x: -50%;
  transform: translate(-50%, 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: 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));
}.after\:rounded-md:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  border-radius: calc(0.5rem - 2px);
  border-radius: calc(var(--radius) - 2px);
}.after\:bg-primary:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  background-color: hsl(233, 100%, 67%);
  background-color: hsl(var(--primary));
}.after\:bg-primary-foreground:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  background-color: hsl(0, 0%, 98%);
  background-color: hsl(var(--primary-foreground));
}.after\:content-\[\'\'\]:not(#\#):not(#\#)::after{
  --tw-content: '';
  content: '';
  content: var(--tw-content);
}.first\:rounded-l-md:first-child:not(#\#):not(#\#){
  border-top-left-radius: calc(0.5rem - 2px);
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(0.5rem - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}.first\:border-l:first-child:not(#\#):not(#\#){
  border-left-width: 1px;
}.last\:rounded-r-md:last-child:not(#\#):not(#\#){
  border-top-right-radius: calc(0.5rem - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(0.5rem - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}.last\:border-b-0:last-child:not(#\#):not(#\#){
  border-bottom-width: 0px;
}.focus-within\:relative:focus-within:not(#\#):not(#\#){
  position: relative;
}.focus-within\:z-20:focus-within:not(#\#):not(#\#){
  z-index: 20;
}.focus-within\:outline-none:focus-within:not(#\#):not(#\#){
  outline: 2px solid transparent;
  outline-offset: 2px;
}.focus-within\:ring-2:focus-within:not(#\#):not(#\#){
  --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), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}.focus-within\:ring-destructive:focus-within:not(#\#):not(#\#){
  --tw-ring-color: hsl(var(--destructive));
}.focus-within\:ring-ring:focus-within:not(#\#):not(#\#){
  --tw-ring-color: hsl(var(--ring));
}.focus-within\:ring-offset-2:focus-within:not(#\#):not(#\#){
  --tw-ring-offset-width: 2px;
}.hover\:scale-110:hover:not(#\#):not(#\#){
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.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(1.1) scaleY(1.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));
}.hover\:border-blue-400:hover:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(96, 165, 250, 1);
  border-color: rgba(96, 165, 250, var(--tw-border-opacity));
}.hover\:bg-accent:hover:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--accent));
}.hover\:bg-blue-100:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(219, 234, 254, 1);
  background-color: rgba(219, 234, 254, var(--tw-bg-opacity));
}.hover\:bg-blue-200:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(191, 219, 254, 1);
  background-color: rgba(191, 219, 254, var(--tw-bg-opacity));
}.hover\:bg-blue-700:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(29, 78, 216, 1);
  background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
}.hover\:bg-destructive\/80:hover:not(#\#):not(#\#){
  background-color: hsla(0, 84%, 60%, 0.8);
  background-color: hsl(var(--destructive) / 0.8);
}.hover\:bg-destructive\/90:hover:not(#\#):not(#\#){
  background-color: hsla(0, 84%, 60%, 0.9);
  background-color: hsl(var(--destructive) / 0.9);
}.hover\:bg-gray-100:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}.hover\:bg-gray-200:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, 1);
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}.hover\:bg-gray-50:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, 1);
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}.hover\:bg-green-600:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(22, 163, 74, 1);
  background-color: rgba(22, 163, 74, var(--tw-bg-opacity));
}.hover\:bg-green-700:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(21, 128, 61, 1);
  background-color: rgba(21, 128, 61, var(--tw-bg-opacity));
}.hover\:bg-muted:hover:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--muted));
}.hover\:bg-muted\/50:hover:not(#\#):not(#\#){
  background-color: hsla(210, 40%, 96%, 0.5);
  background-color: hsl(var(--muted) / 0.5);
}.hover\:bg-orange-200:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(254, 215, 170, 1);
  background-color: rgba(254, 215, 170, var(--tw-bg-opacity));
}.hover\:bg-primary:hover:not(#\#):not(#\#){
  background-color: hsl(233, 100%, 67%);
  background-color: hsl(var(--primary));
}.hover\:bg-primary\/80:hover:not(#\#):not(#\#){
  background-color: hsla(233, 100%, 67%, 0.8);
  background-color: hsl(var(--primary) / 0.8);
}.hover\:bg-primary\/90:hover:not(#\#):not(#\#){
  background-color: hsla(233, 100%, 67%, 0.9);
  background-color: hsl(var(--primary) / 0.9);
}.hover\:bg-red-200:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(254, 202, 202, 1);
  background-color: rgba(254, 202, 202, var(--tw-bg-opacity));
}.hover\:bg-red-300:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(252, 165, 165, 1);
  background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
}.hover\:bg-red-50:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(254, 242, 242, 1);
  background-color: rgba(254, 242, 242, var(--tw-bg-opacity));
}.hover\:bg-red-700:hover:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(185, 28, 28, 1);
  background-color: rgba(185, 28, 28, var(--tw-bg-opacity));
}.hover\:bg-red-900\/20:hover:not(#\#):not(#\#){
  background-color: rgba(127, 29, 29, 0.2);
}.hover\:bg-secondary:hover:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--secondary));
}.hover\:bg-secondary\/80:hover:not(#\#):not(#\#){
  background-color: hsla(210, 40%, 96%, 0.8);
  background-color: hsl(var(--secondary) / 0.8);
}.hover\:bg-transparent:hover:not(#\#):not(#\#){
  background-color: transparent;
}.hover\:text-accent-foreground:hover:not(#\#):not(#\#){
  color: hsl(222, 47%, 11%);
  color: hsl(var(--accent-foreground));
}.hover\:text-blue-600:hover:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(37, 99, 235, 1);
  color: rgba(37, 99, 235, var(--tw-text-opacity));
}.hover\:text-foreground:hover:not(#\#):not(#\#){
  color: hsl(222, 84%, 5%);
  color: hsl(var(--foreground));
}.hover\:text-gray-800:hover:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, 1);
  color: rgba(31, 41, 55, var(--tw-text-opacity));
}.hover\:text-muted-foreground:hover:not(#\#):not(#\#){
  color: hsl(215, 16%, 47%);
  color: hsl(var(--muted-foreground));
}.hover\:text-primary-foreground:hover:not(#\#):not(#\#){
  color: hsl(0, 0%, 98%);
  color: hsl(var(--primary-foreground));
}.hover\:underline:hover:not(#\#):not(#\#){
  text-decoration-line: underline;
}.hover\:opacity-100:hover:not(#\#):not(#\#){
  opacity: 1;
}.hover\:shadow-md:hover:not(#\#):not(#\#){
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(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: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}.hover\:before\:opacity-100:hover:not(#\#):not(#\#)::before{
  content: var(--tw-content);
  opacity: 1;
}.focus\:scale-95:focus:not(#\#):not(#\#){
  --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(.95) scaleY(.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));
}.focus\:border-blue-500:focus:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(59, 130, 246, 1);
  border-color: rgba(59, 130, 246, var(--tw-border-opacity));
}.focus\:border-green-500:focus:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(34, 197, 94, 1);
  border-color: rgba(34, 197, 94, var(--tw-border-opacity));
}.focus\:bg-accent:focus:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--accent));
}.focus\:bg-primary:focus:not(#\#):not(#\#){
  background-color: hsl(233, 100%, 67%);
  background-color: hsl(var(--primary));
}.focus\:text-accent-foreground:focus:not(#\#):not(#\#){
  color: hsl(222, 47%, 11%);
  color: hsl(var(--accent-foreground));
}.focus\:text-primary-foreground:focus:not(#\#):not(#\#){
  color: hsl(0, 0%, 98%);
  color: hsl(var(--primary-foreground));
}.focus\:opacity-100:focus:not(#\#):not(#\#){
  opacity: 1;
}.focus\:outline-none:focus:not(#\#):not(#\#){
  outline: 2px solid transparent;
  outline-offset: 2px;
}.focus\:ring-1:focus:not(#\#):not(#\#){
  --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), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}.focus\:ring-2:focus:not(#\#):not(#\#){
  --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), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}.focus\:ring-green-500:focus:not(#\#):not(#\#){
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(34, 197, 94, var(--tw-ring-opacity));
}.focus\:ring-ring:focus:not(#\#):not(#\#){
  --tw-ring-color: hsl(var(--ring));
}.focus\:ring-offset-2:focus:not(#\#):not(#\#){
  --tw-ring-offset-width: 2px;
}.focus-visible\:outline-none:focus-visible:not(#\#):not(#\#){
  outline: 2px solid transparent;
  outline-offset: 2px;
}.focus-visible\:ring-1:focus-visible:not(#\#):not(#\#){
  --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), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}.focus-visible\:ring-2:focus-visible:not(#\#):not(#\#){
  --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), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 rgba(0,0,0,0));
}.focus-visible\:ring-ring:focus-visible:not(#\#):not(#\#){
  --tw-ring-color: hsl(var(--ring));
}.focus-visible\:ring-offset-1:focus-visible:not(#\#):not(#\#){
  --tw-ring-offset-width: 1px;
}.focus-visible\:ring-offset-2:focus-visible:not(#\#):not(#\#){
  --tw-ring-offset-width: 2px;
}.focus-visible\:ring-offset-background:focus-visible:not(#\#):not(#\#){
  --tw-ring-offset-color: hsl(var(--background));
}.active\:scale-75:active:not(#\#):not(#\#){
  --tw-scale-x: .75;
  --tw-scale-y: .75;
  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(.75) scaleY(.75);
  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));
}.active\:scale-95:active:not(#\#):not(#\#){
  --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(.95) scaleY(.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));
}.active\:cursor-grabbing:active:not(#\#):not(#\#){
  cursor: grabbing;
}.disabled\:pointer-events-none:disabled:not(#\#):not(#\#){
  pointer-events: none;
}.disabled\:cursor-not-allowed:disabled:not(#\#):not(#\#){
  cursor: not-allowed;
}.disabled\:bg-gray-100:disabled:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, 1);
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}.disabled\:text-gray-400:disabled:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, 1);
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}.disabled\:opacity-50:disabled:not(#\#):not(#\#){
  opacity: 0.5;
}.group:hover:not(#\#):not(#\#) .group-hover\:block{
  display: block;
}.group:hover:not(#\#):not(#\#) .group-hover\:opacity-100{
  opacity: 1;
}.group.destructive:not(#\#):not(#\#) .group-\[\.destructive\]\:border-muted\/40{
  border-color: hsla(210, 40%, 96%, 0.4);
  border-color: hsl(var(--muted) / 0.4);
}.group.destructive:not(#\#):not(#\#) .group-\[\.destructive\]\:text-red-300{
  --tw-text-opacity: 1;
  color: rgba(252, 165, 165, 1);
  color: rgba(252, 165, 165, var(--tw-text-opacity));
}.group.destructive:not(#\#):not(#\#) .group-\[\.destructive\]\:hover\:border-destructive\/30:hover{
  border-color: hsla(0, 84%, 60%, 0.3);
  border-color: hsl(var(--destructive) / 0.3);
}.group.destructive:not(#\#):not(#\#) .group-\[\.destructive\]\:hover\:bg-destructive:hover{
  background-color: hsl(0, 84%, 60%);
  background-color: hsl(var(--destructive));
}.group.destructive:not(#\#):not(#\#) .group-\[\.destructive\]\:hover\:text-destructive-foreground:hover{
  color: hsl(210, 40%, 98%);
  color: hsl(var(--destructive-foreground));
}.group.destructive:not(#\#):not(#\#) .group-\[\.destructive\]\:hover\:text-red-50:hover{
  --tw-text-opacity: 1;
  color: rgba(254, 242, 242, 1);
  color: rgba(254, 242, 242, var(--tw-text-opacity));
}.group.destructive:not(#\#):not(#\#) .group-\[\.destructive\]\:focus\:ring-destructive:focus{
  --tw-ring-color: hsl(var(--destructive));
}.group.destructive:not(#\#):not(#\#) .group-\[\.destructive\]\:focus\:ring-red-400:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(248, 113, 113, var(--tw-ring-opacity));
}.group.destructive:not(#\#):not(#\#) .group-\[\.destructive\]\:focus\:ring-offset-red-600:focus{
  --tw-ring-offset-color: #dc2626;
}.peer:disabled:not(#\#):not(#\#) ~ .peer-disabled\:cursor-not-allowed{
  cursor: not-allowed;
}.peer:disabled:not(#\#):not(#\#) ~ .peer-disabled\:opacity-70{
  opacity: 0.7;
}.has-\[\:disabled\]\:opacity-50:has(:disabled):not(#\#):not(#\#){
  opacity: 0.5;
}.aria-selected\:bg-accent[aria-selected="true"]:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--accent));
}.aria-selected\:bg-accent\/50[aria-selected="true"]:not(#\#):not(#\#){
  background-color: hsla(210, 40%, 96%, 0.5);
  background-color: hsl(var(--accent) / 0.5);
}.aria-selected\:text-accent-foreground[aria-selected="true"]:not(#\#):not(#\#){
  color: hsl(222, 47%, 11%);
  color: hsl(var(--accent-foreground));
}.aria-selected\:text-muted-foreground[aria-selected="true"]:not(#\#):not(#\#){
  color: hsl(215, 16%, 47%);
  color: hsl(var(--muted-foreground));
}.aria-selected\:opacity-100[aria-selected="true"]:not(#\#):not(#\#){
  opacity: 1;
}.aria-selected\:opacity-30[aria-selected="true"]:not(#\#):not(#\#){
  opacity: 0.3;
}.data-\[disabled\=true\]\:pointer-events-none[data-disabled=true]:not(#\#):not(#\#){
  pointer-events: none;
}.data-\[disabled\]\:pointer-events-none[data-disabled]:not(#\#):not(#\#){
  pointer-events: none;
}.data-\[panel-group-direction\=vertical\]\:h-px[data-panel-group-direction=vertical]:not(#\#):not(#\#){
  height: 1px;
}.data-\[panel-group-direction\=vertical\]\:w-full[data-panel-group-direction=vertical]:not(#\#):not(#\#){
  width: 100%;
}.data-\[side\=bottom\]\:translate-y-1[data-side=bottom]:not(#\#):not(#\#){
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), 0.25rem) 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: 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));
}.data-\[side\=left\]\:-translate-x-1[data-side=left]:not(#\#):not(#\#){
  --tw-translate-x: -0.25rem;
  transform: translate(-0.25rem, 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: 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));
}.data-\[side\=right\]\:translate-x-1[data-side=right]:not(#\#):not(#\#){
  --tw-translate-x: 0.25rem;
  transform: translate(0.25rem, 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: 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));
}.data-\[side\=top\]\:-translate-y-1[data-side=top]:not(#\#):not(#\#){
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), -0.25rem) 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: 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));
}.data-\[state\=checked\]\:translate-x-4[data-state=checked]:not(#\#):not(#\#){
  --tw-translate-x: 1rem;
  transform: translate(1rem, 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: 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));
}.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked]:not(#\#):not(#\#){
  --tw-translate-x: 0px;
  transform: translate(0px, 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: 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));
}.data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel]:not(#\#):not(#\#){
  --tw-translate-x: 0px;
  transform: translate(0px, 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: 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));
}.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end]:not(#\#):not(#\#){
  --tw-translate-x: var(--radix-toast-swipe-end-x);
  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));
}.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move]:not(#\#):not(#\#){
  --tw-translate-x: var(--radix-toast-swipe-move-x);
  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));
}.data-\[panel-group-direction\=vertical\]\:flex-col[data-panel-group-direction=vertical]:not(#\#):not(#\#){
  flex-direction: column;
}.data-\[active\]\:bg-accent\/50[data-active]:not(#\#):not(#\#){
  background-color: hsla(210, 40%, 96%, 0.5);
  background-color: hsl(var(--accent) / 0.5);
}.data-\[selected\=true\]\:bg-accent[data-selected=true]:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--accent));
}.data-\[state\=active\]\:bg-background[data-state=active]:not(#\#):not(#\#){
  background-color: hsl(0, 0%, 100%);
  background-color: hsl(var(--background));
}.data-\[state\=checked\]\:bg-primary[data-state=checked]:not(#\#):not(#\#){
  background-color: hsl(233, 100%, 67%);
  background-color: hsl(var(--primary));
}.data-\[state\=on\]\:bg-accent[data-state=on]:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--accent));
}.data-\[state\=open\]\:bg-accent[data-state=open]:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--accent));
}.data-\[state\=open\]\:bg-accent\/50[data-state=open]:not(#\#):not(#\#){
  background-color: hsla(210, 40%, 96%, 0.5);
  background-color: hsl(var(--accent) / 0.5);
}.data-\[state\=open\]\:bg-secondary[data-state=open]:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--secondary));
}.data-\[state\=selected\]\:bg-muted[data-state=selected]:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--muted));
}.data-\[state\=unchecked\]\:bg-input[data-state=unchecked]:not(#\#):not(#\#){
  background-color: hsl(214, 32%, 91%);
  background-color: hsl(var(--input));
}.data-\[selected\=true\]\:text-accent-foreground[data-selected=true]:not(#\#):not(#\#){
  color: hsl(222, 47%, 11%);
  color: hsl(var(--accent-foreground));
}.data-\[state\=active\]\:text-foreground[data-state=active]:not(#\#):not(#\#){
  color: hsl(222, 84%, 5%);
  color: hsl(var(--foreground));
}.data-\[state\=checked\]\:text-primary-foreground[data-state=checked]:not(#\#):not(#\#){
  color: hsl(0, 0%, 98%);
  color: hsl(var(--primary-foreground));
}.data-\[state\=on\]\:text-accent-foreground[data-state=on]:not(#\#):not(#\#){
  color: hsl(222, 47%, 11%);
  color: hsl(var(--accent-foreground));
}.data-\[state\=open\]\:text-accent-foreground[data-state=open]:not(#\#):not(#\#){
  color: hsl(222, 47%, 11%);
  color: hsl(var(--accent-foreground));
}.data-\[disabled\=true\]\:opacity-50[data-disabled=true]:not(#\#):not(#\#){
  opacity: 0.5;
}.data-\[disabled\]\:opacity-50[data-disabled]:not(#\#):not(#\#){
  opacity: 0.5;
}.data-\[state\=active\]\:shadow[data-state=active]:not(#\#):not(#\#){
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(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: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}.data-\[swipe\=move\]\:transition-none[data-swipe=move]:not(#\#):not(#\#){
  transition-property: none;
}.data-\[state\=closed\]\:duration-300[data-state=closed]:not(#\#):not(#\#){
  transition-duration: 300ms;
}.data-\[state\=open\]\:duration-500[data-state=open]:not(#\#):not(#\#){
  transition-duration: 500ms;
}.data-\[motion\^\=from-\]\:animate-in[data-motion^=from-]:not(#\#):not(#\#){
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}.data-\[state\=open\]\:animate-in[data-state=open]:not(#\#):not(#\#){
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}.data-\[state\=visible\]\:animate-in[data-state=visible]:not(#\#):not(#\#){
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}.data-\[motion\^\=to-\]\:animate-out[data-motion^=to-]:not(#\#):not(#\#){
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}.data-\[state\=closed\]\:animate-out[data-state=closed]:not(#\#):not(#\#){
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}.data-\[state\=hidden\]\:animate-out[data-state=hidden]:not(#\#):not(#\#){
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}.data-\[swipe\=end\]\:animate-out[data-swipe=end]:not(#\#):not(#\#){
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}.data-\[motion\^\=from-\]\:fade-in[data-motion^=from-]:not(#\#):not(#\#){
  --tw-enter-opacity: 0;
}.data-\[motion\^\=to-\]\:fade-out[data-motion^=to-]:not(#\#):not(#\#){
  --tw-exit-opacity: 0;
}.data-\[state\=closed\]\:fade-out-0[data-state=closed]:not(#\#):not(#\#){
  --tw-exit-opacity: 0;
}.data-\[state\=closed\]\:fade-out-80[data-state=closed]:not(#\#):not(#\#){
  --tw-exit-opacity: 0.8;
}.data-\[state\=hidden\]\:fade-out[data-state=hidden]:not(#\#):not(#\#){
  --tw-exit-opacity: 0;
}.data-\[state\=open\]\:fade-in-0[data-state=open]:not(#\#):not(#\#){
  --tw-enter-opacity: 0;
}.data-\[state\=visible\]\:fade-in[data-state=visible]:not(#\#):not(#\#){
  --tw-enter-opacity: 0;
}.data-\[state\=closed\]\:zoom-out-95[data-state=closed]:not(#\#):not(#\#){
  --tw-exit-scale: .95;
}.data-\[state\=open\]\:zoom-in-90[data-state=open]:not(#\#):not(#\#){
  --tw-enter-scale: .9;
}.data-\[state\=open\]\:zoom-in-95[data-state=open]:not(#\#):not(#\#){
  --tw-enter-scale: .95;
}.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion=from-end]:not(#\#):not(#\#){
  --tw-enter-translate-x: 13rem;
}.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion=from-start]:not(#\#):not(#\#){
  --tw-enter-translate-x: -13rem;
}.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion=to-end]:not(#\#):not(#\#){
  --tw-exit-translate-x: 13rem;
}.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion=to-start]:not(#\#):not(#\#){
  --tw-exit-translate-x: -13rem;
}.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom]:not(#\#):not(#\#){
  --tw-enter-translate-y: -0.5rem;
}.data-\[side\=left\]\:slide-in-from-right-2[data-side=left]:not(#\#):not(#\#){
  --tw-enter-translate-x: 0.5rem;
}.data-\[side\=right\]\:slide-in-from-left-2[data-side=right]:not(#\#):not(#\#){
  --tw-enter-translate-x: -0.5rem;
}.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top]:not(#\#):not(#\#){
  --tw-enter-translate-y: 0.5rem;
}.data-\[state\=closed\]\:slide-out-to-bottom[data-state=closed]:not(#\#):not(#\#){
  --tw-exit-translate-y: 100%;
}.data-\[state\=closed\]\:slide-out-to-left[data-state=closed]:not(#\#):not(#\#){
  --tw-exit-translate-x: -100%;
}.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state=closed]:not(#\#):not(#\#){
  --tw-exit-translate-x: -50%;
}.data-\[state\=closed\]\:slide-out-to-right[data-state=closed]:not(#\#):not(#\#){
  --tw-exit-translate-x: 100%;
}.data-\[state\=closed\]\:slide-out-to-right-full[data-state=closed]:not(#\#):not(#\#){
  --tw-exit-translate-x: 100%;
}.data-\[state\=closed\]\:slide-out-to-top[data-state=closed]:not(#\#):not(#\#){
  --tw-exit-translate-y: -100%;
}.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state=closed]:not(#\#):not(#\#){
  --tw-exit-translate-y: -48%;
}.data-\[state\=open\]\:slide-in-from-bottom[data-state=open]:not(#\#):not(#\#){
  --tw-enter-translate-y: 100%;
}.data-\[state\=open\]\:slide-in-from-left[data-state=open]:not(#\#):not(#\#){
  --tw-enter-translate-x: -100%;
}.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state=open]:not(#\#):not(#\#){
  --tw-enter-translate-x: -50%;
}.data-\[state\=open\]\:slide-in-from-right[data-state=open]:not(#\#):not(#\#){
  --tw-enter-translate-x: 100%;
}.data-\[state\=open\]\:slide-in-from-top[data-state=open]:not(#\#):not(#\#){
  --tw-enter-translate-y: -100%;
}.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state=open]:not(#\#):not(#\#){
  --tw-enter-translate-y: -48%;
}.data-\[state\=open\]\:slide-in-from-top-full[data-state=open]:not(#\#):not(#\#){
  --tw-enter-translate-y: -100%;
}.data-\[state\=closed\]\:duration-300[data-state=closed]:not(#\#):not(#\#){
  animation-duration: 300ms;
}.data-\[state\=open\]\:duration-500[data-state=open]:not(#\#):not(#\#){
  animation-duration: 500ms;
}.data-\[panel-group-direction\=vertical\]\:after\:left-0[data-panel-group-direction=vertical]:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  left: 0px;
}.data-\[panel-group-direction\=vertical\]\:after\:h-1[data-panel-group-direction=vertical]:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  height: 0.25rem;
}.data-\[panel-group-direction\=vertical\]\:after\:w-full[data-panel-group-direction=vertical]:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  width: 100%;
}.data-\[panel-group-direction\=vertical\]\:after\:-translate-y-1\/2[data-panel-group-direction=vertical]:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) 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: 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));
}.data-\[panel-group-direction\=vertical\]\:after\:translate-x-0[data-panel-group-direction=vertical]:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  --tw-translate-x: 0px;
  transform: translate(0px, 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: 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));
}.group[data-state=open]:not(#\#):not(#\#) .group-data-\[state\=open\]\:rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  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));
}@media (min-width: 640px){.sm\:bottom-0:not(#\#):not(#\#){
    bottom: 0px;
  }.sm\:right-0:not(#\#):not(#\#){
    right: 0px;
  }.sm\:top-auto:not(#\#):not(#\#){
    top: auto;
  }.sm\:mt-0:not(#\#):not(#\#){
    margin-top: 0px;
  }.sm\:w-auto:not(#\#):not(#\#){
    width: auto;
  }.sm\:max-w-\[600px\]:not(#\#):not(#\#){
    max-width: 600px;
  }.sm\:max-w-sm:not(#\#):not(#\#){
    max-width: 24rem;
  }.sm\:flex-row:not(#\#):not(#\#){
    flex-direction: row;
  }.sm\:flex-col:not(#\#):not(#\#){
    flex-direction: column;
  }.sm\:items-center:not(#\#):not(#\#){
    align-items: center;
  }.sm\:justify-start:not(#\#):not(#\#){
    justify-content: flex-start;
  }.sm\:justify-end:not(#\#):not(#\#){
    justify-content: flex-end;
  }.sm\:gap-2:not(#\#):not(#\#){
    gap: 0.5rem;
  }.sm\:gap-2\.5:not(#\#):not(#\#){
    gap: 0.625rem;
  }.sm\:space-x-2:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * 0);
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * (1 - 0));
    margin-left: calc(0.5rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(0.5rem * calc(1 - 0));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }.sm\:space-x-4:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * 0);
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * (1 - 0));
    margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
    margin-left: calc(1rem * calc(1 - 0));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }.sm\:space-y-0:not(#\#):not(#\#) > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * (1 - 0));
    margin-top: calc(0px * (1 - var(--tw-space-y-reverse)));
    margin-top: calc(0px * calc(1 - 0));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * 0);
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }.sm\:rounded-lg:not(#\#):not(#\#){
    border-radius: 0.5rem;
    border-radius: var(--radius);
  }.sm\:text-left:not(#\#):not(#\#){
    text-align: left;
  }.data-\[state\=open\]\:sm\:slide-in-from-bottom-full[data-state=open]:not(#\#):not(#\#){
    --tw-enter-translate-y: 100%;
  }
}@media (min-width: 768px){.md\:absolute:not(#\#):not(#\#){
    position: absolute;
  }.md\:mx-auto:not(#\#):not(#\#){
    margin-left: auto;
    margin-right: auto;
  }.md\:mt-0:not(#\#):not(#\#){
    margin-top: 0px;
  }.md\:w-\[var\(--radix-navigation-menu-viewport-width\)\]:not(#\#):not(#\#){
    width: var(--radix-navigation-menu-viewport-width);
  }.md\:w-auto:not(#\#):not(#\#){
    width: auto;
  }.md\:w-full:not(#\#):not(#\#){
    width: 100%;
  }.md\:max-w-\[420px\]:not(#\#):not(#\#){
    max-width: 420px;
  }.md\:flex-row:not(#\#):not(#\#){
    flex-direction: row;
  }.md\:font-medium:not(#\#):not(#\#){
    font-weight: 500;
  }.md\:font-normal:not(#\#):not(#\#){
    font-weight: 400;
  }
}@media (min-width: 1024px){.lg\:h-fit:not(#\#):not(#\#){
    height: -moz-fit-content;
    height: fit-content;
  }
}@media (prefers-color-scheme: dark){.dark\:border-destructive:not(#\#):not(#\#){
    border-color: hsl(0, 84%, 60%);
    border-color: hsl(var(--destructive));
  }
}.\[\&\+div\]\:text-xs:not(#\#):not(#\#)+div{
  font-size: 0.75rem;
  line-height: 1rem;
}.\[\&\:has\(\[aria-selected\]\)\]\:bg-accent:has([aria-selected]):not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--accent));
}.first\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-l-md:has([aria-selected]):first-child:not(#\#):not(#\#){
  border-top-left-radius: calc(0.5rem - 2px);
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(0.5rem - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}.last\:\[\&\:has\(\[aria-selected\]\)\]\:rounded-r-md:has([aria-selected]):last-child:not(#\#):not(#\#){
  border-top-right-radius: calc(0.5rem - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(0.5rem - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}.\[\&\:has\(\[aria-selected\]\.day-outside\)\]\:bg-accent\/50:has([aria-selected].day-outside):not(#\#):not(#\#){
  background-color: hsla(210, 40%, 96%, 0.5);
  background-color: hsl(var(--accent) / 0.5);
}.\[\&\:has\(\[aria-selected\]\.day-range-end\)\]\:rounded-r-md:has([aria-selected].day-range-end):not(#\#):not(#\#){
  border-top-right-radius: calc(0.5rem - 2px);
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(0.5rem - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]):not(#\#):not(#\#){
  padding-right: 0px;
}.\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\]:not(#\#):not(#\#)>[role=checkbox]{
  --tw-translate-y: 2px;
  transform: translate(var(--tw-translate-x), 2px) 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: 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));
}.\[\&\>span\]\:line-clamp-1:not(#\#):not(#\#)>span{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}.\[\&\>svg\+div\]\:translate-y-\[-3px\]:not(#\#):not(#\#)>svg+div{
  --tw-translate-y: -3px;
  transform: translate(var(--tw-translate-x), -3px) 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: 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));
}.\[\&\>svg\]\:absolute:not(#\#):not(#\#)>svg{
  position: absolute;
}.\[\&\>svg\]\:left-4:not(#\#):not(#\#)>svg{
  left: 1rem;
}.\[\&\>svg\]\:top-4:not(#\#):not(#\#)>svg{
  top: 1rem;
}.\[\&\>svg\]\:size-3\.5:not(#\#):not(#\#)>svg{
  width: 0.875rem;
  height: 0.875rem;
}.\[\&\>svg\]\:h-2\.5:not(#\#):not(#\#)>svg{
  height: 0.625rem;
}.\[\&\>svg\]\:h-3:not(#\#):not(#\#)>svg{
  height: 0.75rem;
}.\[\&\>svg\]\:h-full:not(#\#):not(#\#)>svg{
  height: 100%;
}.\[\&\>svg\]\:w-2\.5:not(#\#):not(#\#)>svg{
  width: 0.625rem;
}.\[\&\>svg\]\:w-3:not(#\#):not(#\#)>svg{
  width: 0.75rem;
}.\[\&\>svg\]\:w-full:not(#\#):not(#\#)>svg{
  width: 100%;
}.\[\&\>svg\]\:text-destructive:not(#\#):not(#\#)>svg{
  color: hsl(0, 84%, 60%);
  color: hsl(var(--destructive));
}.\[\&\>svg\]\:text-foreground:not(#\#):not(#\#)>svg{
  color: hsl(222, 84%, 5%);
  color: hsl(var(--foreground));
}.\[\&\>svg\]\:text-muted-foreground:not(#\#):not(#\#)>svg{
  color: hsl(215, 16%, 47%);
  color: hsl(var(--muted-foreground));
}.\[\&\>svg\~\*\]\:pl-7:not(#\#):not(#\#)>svg~*{
  padding-left: 1.75rem;
}.\[\&\>tr\]\:last\:border-b-0:last-child:not(#\#):not(#\#)>tr{
  border-bottom-width: 0px;
}.\[\&\[data-panel-group-direction\=vertical\]\>div\]\:rotate-90[data-panel-group-direction=vertical]:not(#\#):not(#\#)>div{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(90deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  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));
}.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]:not(#\#):not(#\#)>svg{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(180deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  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));
}.first\:\[\&\[data-state\=open\]\>svg\]\:rotate-90[data-state=open]:not(#\#):not(#\#)>svg:first-child{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(90deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  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));
}.\[\&_\.recharts-cartesian-axis-tick_text\]\:fill-muted-foreground:not(#\#):not(#\#) .recharts-cartesian-axis-tick text{
  fill: hsl(215, 16%, 47%);
  fill: hsl(var(--muted-foreground));
}.\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50:not(#\#):not(#\#) .recharts-cartesian-grid line[stroke='#ccc']{
  stroke: hsla(214, 32%, 91%, 0.5);
  stroke: hsl(var(--border) / 0.5);
}.\[\&_\.recharts-curve\.recharts-tooltip-cursor\]\:stroke-border:not(#\#):not(#\#) .recharts-curve.recharts-tooltip-cursor{
  stroke: hsl(214, 32%, 91%);
  stroke: hsl(var(--border));
}.\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent:not(#\#):not(#\#) .recharts-dot[stroke='#fff']{
  stroke: transparent;
}.\[\&_\.recharts-layer\]\:outline-none:not(#\#):not(#\#) .recharts-layer{
  outline: 2px solid transparent;
  outline-offset: 2px;
}.\[\&_\.recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:stroke-border:not(#\#):not(#\#) .recharts-polar-grid [stroke='#ccc']{
  stroke: hsl(214, 32%, 91%);
  stroke: hsl(var(--border));
}.\[\&_\.recharts-radial-bar-background-sector\]\:fill-muted:not(#\#):not(#\#) .recharts-radial-bar-background-sector{
  fill: hsl(210, 40%, 96%);
  fill: hsl(var(--muted));
}.\[\&_\.recharts-rectangle\.recharts-tooltip-cursor\]\:fill-muted:not(#\#):not(#\#) .recharts-rectangle.recharts-tooltip-cursor{
  fill: hsl(210, 40%, 96%);
  fill: hsl(var(--muted));
}.\[\&_\.recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:stroke-border:not(#\#):not(#\#) .recharts-reference-line [stroke='#ccc']{
  stroke: hsl(214, 32%, 91%);
  stroke: hsl(var(--border));
}.\[\&_\.recharts-sector\[stroke\=\'\#fff\'\]\]\:stroke-transparent:not(#\#):not(#\#) .recharts-sector[stroke='#fff']{
  stroke: transparent;
}.\[\&_\.recharts-sector\]\:outline-none:not(#\#):not(#\#) .recharts-sector{
  outline: 2px solid transparent;
  outline-offset: 2px;
}.\[\&_\.recharts-surface\]\:outline-none:not(#\#):not(#\#) .recharts-surface{
  outline: 2px solid transparent;
  outline-offset: 2px;
}.\[\&_\[cmdk-group-heading\]\]\:px-2:not(#\#):not(#\#) [cmdk-group-heading]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}.\[\&_\[cmdk-group-heading\]\]\:py-1\.5:not(#\#):not(#\#) [cmdk-group-heading]{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}.\[\&_\[cmdk-group-heading\]\]\:text-xs:not(#\#):not(#\#) [cmdk-group-heading]{
  font-size: 0.75rem;
  line-height: 1rem;
}.\[\&_\[cmdk-group-heading\]\]\:font-medium:not(#\#):not(#\#) [cmdk-group-heading]{
  font-weight: 500;
}.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground:not(#\#):not(#\#) [cmdk-group-heading]{
  color: hsl(215, 16%, 47%);
  color: hsl(var(--muted-foreground));
}.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0:not(#\#):not(#\#) [cmdk-group]:not([hidden]) ~[cmdk-group]{
  padding-top: 0px;
}.\[\&_\[cmdk-group\]\]\:px-2:not(#\#):not(#\#) [cmdk-group]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5:not(#\#):not(#\#) [cmdk-input-wrapper] svg{
  height: 1.25rem;
}.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5:not(#\#):not(#\#) [cmdk-input-wrapper] svg{
  width: 1.25rem;
}.\[\&_\[cmdk-input\]\]\:h-12:not(#\#):not(#\#) [cmdk-input]{
  height: 3rem;
}.\[\&_\[cmdk-item\]\]\:px-2:not(#\#):not(#\#) [cmdk-item]{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}.\[\&_\[cmdk-item\]\]\:py-3:not(#\#):not(#\#) [cmdk-item]{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}.\[\&_\[cmdk-item\]_svg\]\:h-5:not(#\#):not(#\#) [cmdk-item] svg{
  height: 1.25rem;
}.\[\&_\[cmdk-item\]_svg\]\:w-5:not(#\#):not(#\#) [cmdk-item] svg{
  width: 1.25rem;
}.\[\&_p\]\:leading-relaxed:not(#\#):not(#\#) p{
  line-height: 1.625;
}.\[\&_tr\:last-child\]\:border-0:not(#\#):not(#\#) tr:last-child{
  border-width: 0px;
}.\[\&_tr\]\:border-b:not(#\#):not(#\#) tr{
  border-bottom-width: 1px;
}

/*# sourceMappingURL=main.34f02da1.css.map*/