/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
	background: transparent;
}
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	-webkit-text-decoration: none;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(../416d91365b44e4b4f477.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(../8f2c4d11474275fbc161.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(../2b3e1faf89f94a483539.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	-webkit-text-decoration: none;
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	-webkit-text-decoration: underline;
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;
	transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	-webkit-text-decoration: none;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

/*
! 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:not(#\#):not(#\#){
  width: 100%;
}@media (min-width: 640px){.container:not(#\#):not(#\#){
    max-width: 640px;
  }
}@media (min-width: 768px){.container:not(#\#):not(#\#){
    max-width: 768px;
  }
}@media (min-width: 1024px){.container:not(#\#):not(#\#){
    max-width: 1024px;
  }
}@media (min-width: 1280px){.container:not(#\#):not(#\#){
    max-width: 1280px;
  }
}@media (min-width: 1536px){.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;
}.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-12:not(#\#):not(#\#){
  bottom: -3rem;
}.-left-12:not(#\#):not(#\#){
  left: -3rem;
}.-right-12:not(#\#):not(#\#){
  right: -3rem;
}.-top-12:not(#\#):not(#\#){
  top: -3rem;
}.bottom-0:not(#\#):not(#\#){
  bottom: 0px;
}.bottom-2:not(#\#):not(#\#){
  bottom: 0.5rem;
}.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-\[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-16:not(#\#):not(#\#){
  top: 4rem;
}.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-\[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-50:not(#\#):not(#\#){
  z-index: 50;
}.z-\[100\]:not(#\#):not(#\#){
  z-index: 100;
}.z-\[1\]:not(#\#):not(#\#){
  z-index: 1;
}.-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-1:not(#\#):not(#\#){
  margin-bottom: 0.25rem;
}.mb-2:not(#\#):not(#\#){
  margin-bottom: 0.5rem;
}.mb-4:not(#\#):not(#\#){
  margin-bottom: 1rem;
}.ml-1:not(#\#):not(#\#){
  margin-left: 0.25rem;
}.ml-auto:not(#\#):not(#\#){
  margin-left: auto;
}.mr-2:not(#\#):not(#\#){
  margin-right: 0.5rem;
}.mr-4:not(#\#):not(#\#){
  margin-right: 1rem;
}.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-4:not(#\#):not(#\#){
  margin-top: 1rem;
}.mt-auto:not(#\#):not(#\#){
  margin-top: auto;
}.block:not(#\#):not(#\#){
  display: 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-3:not(#\#):not(#\#){
  height: 0.75rem;
}.h-3\.5:not(#\#):not(#\#){
  height: 0.875rem;
}.h-4:not(#\#):not(#\#){
  height: 1rem;
}.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-\[80\%\]:not(#\#):not(#\#){
  height: 80%;
}.h-\[90\%\]:not(#\#):not(#\#){
  height: 90%;
}.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-dvh:not(#\#):not(#\#){
  height: 100dvh;
}.h-full:not(#\#):not(#\#){
  height: 100%;
}.h-px:not(#\#):not(#\#){
  height: 1px;
}.max-h-96:not(#\#):not(#\#){
  max-height: 24rem;
}.max-h-\[300px\]:not(#\#):not(#\#){
  max-height: 300px;
}.max-h-\[80\%\]:not(#\#):not(#\#){
  max-height: 80%;
}.max-h-screen:not(#\#):not(#\#){
  max-height: 100vh;
}.min-h-\[60px\]:not(#\#):not(#\#){
  min-height: 60px;
}.w-0:not(#\#):not(#\#){
  width: 0px;
}.w-1:not(#\#):not(#\#){
  width: 0.25rem;
}.w-10:not(#\#):not(#\#){
  width: 2.5rem;
}.w-12:not(#\#):not(#\#){
  width: 3rem;
}.w-2:not(#\#):not(#\#){
  width: 0.5rem;
}.w-2\.5:not(#\#):not(#\#){
  width: 0.625rem;
}.w-2\/4:not(#\#):not(#\#){
  width: 50%;
}.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-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-\[100px\]:not(#\#):not(#\#){
  min-width: 100px;
}.min-w-\[12rem\]:not(#\#):not(#\#){
  min-width: 12rem;
}.min-w-\[150px\]:not(#\#):not(#\#){
  min-width: 150px;
}.min-w-\[8rem\]:not(#\#):not(#\#){
  min-width: 8rem;
}.min-w-\[var\(--radix-select-trigger-width\)\]:not(#\#):not(#\#){
  min-width: var(--radix-select-trigger-width);
}.max-w-44:not(#\#):not(#\#){
  max-width: 11rem;
}.max-w-48:not(#\#):not(#\#){
  max-width: 12rem;
}.max-w-56:not(#\#):not(#\#){
  max-width: 14rem;
}.max-w-\[361px\]:not(#\#):not(#\#){
  max-width: 361px;
}.max-w-\[70\%\]:not(#\#):not(#\#){
  max-width: 70%;
}.max-w-\[90\%\]:not(#\#):not(#\#){
  max-width: 90%;
}.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-sm:not(#\#):not(#\#){
  max-width: 24rem;
}.max-w-xl:not(#\#):not(#\#){
  max-width: 36rem;
}.flex-1:not(#\#):not(#\#){
  flex: 1 1 0%;
}.shrink-0:not(#\#):not(#\#){
  flex-shrink: 0;
}.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-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));
}.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: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-not-allowed:not(#\#):not(#\#){
  cursor: not-allowed;
}.cursor-pointer:not(#\#):not(#\#){
  cursor: pointer;
}.touch-none:not(#\#):not(#\#){
  touch-action: none;
}.select-none:not(#\#):not(#\#){
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}.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-\[1fr_10px_1fr\]:not(#\#):not(#\#){
  grid-template-columns: 1fr 10px 1fr;
}.flex-row:not(#\#):not(#\#){
  flex-direction: row;
}.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-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;
}.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-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-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));
}.overflow-auto:not(#\#):not(#\#){
  overflow: auto;
}.overflow-hidden:not(#\#):not(#\#){
  overflow: hidden;
}.overflow-y-auto:not(#\#):not(#\#){
  overflow-y: auto;
}.overflow-x-hidden:not(#\#):not(#\#){
  overflow-x: hidden;
}.whitespace-nowrap:not(#\#):not(#\#){
  white-space: nowrap;
}.break-words:not(#\#):not(#\#){
  word-wrap: break-word;
}.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-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-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-\[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-l:not(#\#):not(#\#){
  border-left-width: 1px;
}.border-r:not(#\#):not(#\#){
  border-right-width: 1px;
}.border-t:not(#\#):not(#\#){
  border-top-width: 1px;
}.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-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-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-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-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-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-slate-900:not(#\#):not(#\#){
  --tw-border-opacity: 1;
  border-color: rgba(15, 23, 42, 1);
  border-color: rgba(15, 23, 42, var(--tw-border-opacity));
}.border-transparent:not(#\#):not(#\#){
  border-color: transparent;
}.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-transparent:not(#\#):not(#\#){
  border-left-color: transparent;
}.border-t-transparent:not(#\#):not(#\#){
  border-top-color: transparent;
}.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-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\/70:not(#\#):not(#\#){
  background-color: rgba(0, 0, 0, 0.7);
}.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-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-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-500:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, 1);
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
}.bg-muted:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--muted));
}.bg-muted\/50:not(#\#):not(#\#){
  background-color: hsla(210, 40%, 96%, 0.5);
  background-color: hsl(var(--muted) / 0.5);
}.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-secondary:not(#\#):not(#\#){
  background-color: hsl(210, 40%, 96%);
  background-color: hsl(var(--secondary));
}.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-zinc-50:not(#\#):not(#\#){
  --tw-bg-opacity: 1;
  background-color: rgba(250, 250, 250, 1);
  background-color: rgba(250, 250, 250, var(--tw-bg-opacity));
}.fill-current:not(#\#):not(#\#){
  fill: currentColor;
}.fill-primary:not(#\#):not(#\#){
  fill: hsl(233, 100%, 67%);
  fill: hsl(var(--primary));
}.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-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;
}.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-2:not(#\#):not(#\#){
  padding-left: 0.5rem;
}.pl-2\.5:not(#\#):not(#\#){
  padding-left: 0.625rem;
}.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-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-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;
}.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-\[16px\]:not(#\#):not(#\#){
  font-size: 16px;
}.text-\[17px\]:not(#\#):not(#\#){
  font-size: 17px;
}.text-\[19px\]:not(#\#):not(#\#){
  font-size: 19px;
}.text-\[22px\]:not(#\#):not(#\#){
  font-size: 22px;
}.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-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;
}.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-\[24px\]:not(#\#):not(#\#){
  line-height: 24px;
}.leading-none:not(#\#):not(#\#){
  line-height: 1;
}.tracking-tight:not(#\#):not(#\#){
  letter-spacing: -0.025em;
}.tracking-widest:not(#\#):not(#\#){
  letter-spacing: 0.1em;
}.text-\[\#005BFF\]:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(0, 91, 255, 1);
  color: rgba(0, 91, 255, var(--tw-text-opacity));
}.text-\[\#222222\]:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(34, 34, 34, 1);
  color: rgba(34, 34, 34, var(--tw-text-opacity));
}.text-\[\#2CAF50\]:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(44, 175, 80, 1);
  color: rgba(44, 175, 80, var(--tw-text-opacity));
}.text-\[\#6826FF\]:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(104, 38, 255, 1);
  color: rgba(104, 38, 255, 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-\[\#FFCC00\]:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(255, 204, 0, 1);
  color: rgba(255, 204, 0, var(--tw-text-opacity));
}.text-accent-foreground:not(#\#):not(#\#){
  color: hsl(222, 47%, 11%);
  color: hsl(var(--accent-foreground));
}.text-black:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, 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-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-green-400:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(74, 222, 128, 1);
  color: rgba(74, 222, 128, var(--tw-text-opacity));
}.text-muted-foreground:not(#\#):not(#\#){
  color: hsl(215, 16%, 47%);
  color: hsl(var(--muted-foreground));
}.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-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-purple-600:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(147, 51, 234, 1);
  color: rgba(147, 51, 234, var(--tw-text-opacity));
}.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-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-900:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(15, 23, 42, 1);
  color: rgba(15, 23, 42, var(--tw-text-opacity));
}.text-violet-600:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(124, 58, 237, 1);
  color: rgba(124, 58, 237, 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));
}.text-zinc-900:not(#\#):not(#\#){
  --tw-text-opacity: 1;
  color: rgba(24, 24, 27, 1);
  color: rgba(24, 24, 27, var(--tw-text-opacity));
}.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-50:not(#\#):not(#\#){
  opacity: 0.5;
}.opacity-60:not(#\#):not(#\#){
  opacity: 0.6;
}.opacity-70:not(#\#):not(#\#){
  opacity: 0.7;
}.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);
}.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-ring:not(#\#):not(#\#){
  --tw-ring-color: hsl(var(--ring));
}.ring-offset-background:not(#\#):not(#\#){
  --tw-ring-offset-color: hsl(var(--background));
}.drop-shadow-md:not(#\#):not(#\#){
  --tw-drop-shadow: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
  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) drop-shadow(0 4px 3px rgba(0, 0, 0, 0.07)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
  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);
}.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-200:not(#\#):not(#\#){
  transition-duration: 200ms;
}.duration-300:not(#\#):not(#\#){
  transition-duration: 300ms;
}.ease-in-out:not(#\#):not(#\#){
  transition-timing-function: cubic-bezier(0.4, 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-200:not(#\#):not(#\#){
  animation-duration: 200ms;
}.duration-300:not(#\#):not(#\#){
  animation-duration: 300ms;
}.ease-in-out:not(#\#):not(#\#){
  animation-timing-function: cubic-bezier(0.4, 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));
}.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\:left-1\/2:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  left: 50%;
}.after\:w-1:not(#\#):not(#\#)::after{
  content: var(--tw-content);
  width: 0.25rem;
}.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));
}.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);
}.focus-within\:relative:focus-within:not(#\#):not(#\#){
  position: relative;
}.focus-within\:z-20:focus-within:not(#\#):not(#\#){
  z-index: 20;
}.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-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-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-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-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-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\:text-accent-foreground:hover:not(#\#):not(#\#){
  color: hsl(222, 47%, 11%);
  color: hsl(var(--accent-foreground));
}.hover\:text-foreground:hover:not(#\#):not(#\#){
  color: hsl(222, 84%, 5%);
  color: hsl(var(--foreground));
}.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;
}.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\: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-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));
}.disabled\:pointer-events-none:disabled:not(#\#):not(#\#){
  pointer-events: none;
}.disabled\:cursor-not-allowed:disabled:not(#\#):not(#\#){
  cursor: not-allowed;
}.disabled\:opacity-50:disabled:not(#\#):not(#\#){
  opacity: 0.5;
}.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\: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\: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\: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\:font-medium:not(#\#):not(#\#){
    font-weight: 500;
  }.md\:font-normal:not(#\#):not(#\#){
    font-weight: 400;
  }
}@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\(\>\.day-range-end\)\]\:rounded-r-md:has(>.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\(\>\.day-range-start\)\]\:rounded-l-md:has(>.day-range-start):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);
}.\[\&\:has\(\[aria-selected\]\)\]\:rounded-md:has([aria-selected]):not(#\#):not(#\#){
  border-radius: calc(0.5rem - 2px);
  border-radius: calc(var(--radius) - 2px);
}.\[\&\: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\]\:w-2\.5:not(#\#):not(#\#)>svg{
  width: 0.625rem;
}.\[\&\>svg\]\:w-3:not(#\#):not(#\#)>svg{
  width: 0.75rem;
}.\[\&\>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));
}.\[\&_\.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;
}
