hplx-feature-library 1.0.171 → 1.0.172

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/dist/AllInvestigations/components/AllInvestigationsTable.d.ts +19 -0
  2. package/dist/AllInvestigations/index.d.ts +1 -0
  3. package/dist/AllInvestigations/index.js +4 -0
  4. package/dist/AllInvestigations/utils/test-tange-util.d.ts +8 -0
  5. package/dist/AllInvestigationsTable-C3aTtdGN.cjs +79 -0
  6. package/dist/AllInvestigationsTable-C7jrmW8z.js +17354 -0
  7. package/dist/Attachments/index.js +6163 -6279
  8. package/dist/PediatricsCalculator/index.js +1 -1
  9. package/dist/{PediatricsCalculatorTable-Dwluo5W0.js → PediatricsCalculatorTable-Be2H_OXh.js} +203 -210
  10. package/dist/{PediatricsCalculatorTable-BglWcUGO.cjs → PediatricsCalculatorTable-fk_QinWG.cjs} +11 -11
  11. package/dist/ReusableTable/ReusableTable.d.ts +3 -0
  12. package/dist/ReusableTable/ReusableTableConstants.d.ts +8 -0
  13. package/dist/ReusableTable/ReusableTableTypes.d.ts +96 -0
  14. package/dist/ReusableTable/components/EmptyTableContainer.d.ts +12 -0
  15. package/dist/ReusableTable/components/FilterCheckbox.d.ts +8 -0
  16. package/dist/ReusableTable/components/FilterDropdown.d.ts +17 -0
  17. package/dist/ReusableTable/components/Pagination.d.ts +2 -0
  18. package/dist/ReusableTable/components/TableBody.d.ts +2 -0
  19. package/dist/ReusableTable/components/TableCell.d.ts +3 -0
  20. package/dist/ReusableTable/components/TableFilterSelect.d.ts +12 -0
  21. package/dist/ReusableTable/components/TableHead.d.ts +2 -0
  22. package/dist/ReusableTable/components/TableMain.d.ts +2 -0
  23. package/dist/ReusableTable/components/TableRow.d.ts +3 -0
  24. package/dist/ReusableTable/context/TableContext.d.ts +21 -0
  25. package/dist/ReusableTable/context/TableContextBase.d.ts +26 -0
  26. package/dist/ReusableTable/context/useTableContext.d.ts +2 -0
  27. package/dist/TrendGraphs/AreaChartComponent.d.ts +9 -0
  28. package/dist/TrendGraphs/LineChartComponent/DataPointToolTip.d.ts +16 -0
  29. package/dist/TrendGraphs/LineChartComponent/LineChartBody.d.ts +2 -0
  30. package/dist/TrendGraphs/LineChartComponent/LineChartHeader.d.ts +2 -0
  31. package/dist/TrendGraphs/LineChartComponent/index.d.ts +2 -0
  32. package/dist/TrendGraphs/context/index.d.ts +2 -0
  33. package/dist/TrendGraphs/hooks/useTrendGraphContext.d.ts +2 -0
  34. package/dist/TrendGraphs/utils/index.d.ts +4 -0
  35. package/dist/components/Modal.d.ts +5 -0
  36. package/dist/constants/TrendGraphsConstants.d.ts +2 -0
  37. package/dist/hplx-feature-library.css +1 -1
  38. package/dist/{useOutsideClick-CYAjbj1N.js → index-4whwJbrk.js} +812 -823
  39. package/dist/{useOutsideClick-COATBT9j.cjs → index-C6KQLMQs.cjs} +23 -23
  40. package/dist/index-CJFGOBPb.js +122 -0
  41. package/dist/index-DfcUmlge.cjs +17 -0
  42. package/dist/index.d.ts +1 -0
  43. package/dist/index.js +4 -2
  44. package/dist/types/AllInvestigationTypes/index.js +4 -0
  45. package/dist/types/AllInvestigationTypes.d.ts +43 -0
  46. package/dist/types/TrendGraphTypes.d.ts +19 -0
  47. package/dist/useClickOutside-BjJyGTec.js +14 -0
  48. package/dist/useClickOutside-DsVG12Cs.cjs +1 -0
  49. package/dist/useOutsideClick-C4Q0aGuf.js +15 -0
  50. package/dist/useOutsideClick-CicUjzPP.cjs +1 -0
  51. package/package.json +12 -1
@@ -0,0 +1,9 @@
1
+ import { TrendGraphData } from '../types/TrendGraphTypes';
2
+ interface AreaChartProps {
3
+ trendData: TrendGraphData;
4
+ containerWidth: number;
5
+ containerHeight: number;
6
+ showError?: (message: string) => void;
7
+ }
8
+ declare function AreaChartComponent(props: AreaChartProps): import("react/jsx-runtime").JSX.Element;
9
+ export default AreaChartComponent;
@@ -0,0 +1,16 @@
1
+ interface PayloadItem {
2
+ value: number;
3
+ payload: {
4
+ date: string;
5
+ value: number;
6
+ };
7
+ dataKey: string;
8
+ name: string;
9
+ }
10
+ interface DataPointTooltipProps {
11
+ active?: boolean;
12
+ payload?: PayloadItem[];
13
+ label?: string | number;
14
+ }
15
+ declare const DataPointTooltip: React.FC<DataPointTooltipProps>;
16
+ export default DataPointTooltip;
@@ -0,0 +1,2 @@
1
+ declare function LineChartBody(): import("react/jsx-runtime").JSX.Element;
2
+ export default LineChartBody;
@@ -0,0 +1,2 @@
1
+ declare function LineChartHeader(): import("react/jsx-runtime").JSX.Element;
2
+ export default LineChartHeader;
@@ -0,0 +1,2 @@
1
+ declare function LineChartComponent(): import("react/jsx-runtime").JSX.Element;
2
+ export default LineChartComponent;
@@ -0,0 +1,2 @@
1
+ import { TrendGraphContextType } from '../../types/TrendGraphTypes';
2
+ export declare const TrendGraphContext: import('react').Context<TrendGraphContextType | undefined>;
@@ -0,0 +1,2 @@
1
+ declare function useTrendGraphContext(): import('../../types/TrendGraphTypes').TrendGraphContextType;
2
+ export default useTrendGraphContext;
@@ -0,0 +1,4 @@
1
+ import { I_AllInvestigations } from '../../types/AllInvestigationTypes';
2
+ import { TrendGraphData, TrendGraphDataPoint } from '../../types/TrendGraphTypes';
3
+ export declare function isValidTrendGraphData(data: TrendGraphData): boolean;
4
+ export declare const convertRowToTrendGraphData: (row: I_AllInvestigations) => TrendGraphDataPoint[];
@@ -0,0 +1,5 @@
1
+ interface ModalProps {
2
+ children: React.ReactNode;
3
+ }
4
+ declare function Modal({ children }: ModalProps): import('react').ReactPortal;
5
+ export default Modal;
@@ -0,0 +1,2 @@
1
+ import { AreaGraphColor } from '../types/TrendGraphTypes';
2
+ export declare const AREA_GRAPH_COLORS: AreaGraphColor[];
@@ -1 +1 @@
1
- *,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}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}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.\!hfl-pointer-events-none{pointer-events:none!important}.hfl-pointer-events-none{pointer-events:none}.hfl-visible{visibility:visible}.hfl-invisible{visibility:hidden}.hfl-fixed{position:fixed}.hfl-absolute{position:absolute}.hfl-relative{position:relative}.hfl-sticky{position:sticky}.hfl-inset-0{inset:0}.hfl-bottom-0{bottom:0}.hfl-bottom-full{bottom:100%}.hfl-left-0{left:0}.hfl-left-1\/2{left:50%}.hfl-left-\[90\%\]{left:90%}.hfl-right-0{right:0}.hfl-top-0{top:0}.hfl-top-1\/2{top:50%}.hfl-top-\[55\%\]{top:55%}.hfl-top-\[80\%\]{top:80%}.hfl-top-full{top:100%}.hfl-z-10{z-index:10}.hfl-z-20{z-index:20}.hfl-z-50{z-index:50}.hfl-z-\[100\]{z-index:100}.hfl-z-\[9999999999\]{z-index:9999999999}.hfl-mx-10{margin-left:2.5em;margin-right:2.5em}.hfl-mx-2{margin-left:.5em;margin-right:.5em}.hfl-mx-auto{margin-left:auto;margin-right:auto}.hfl-my-0{margin-top:0;margin-bottom:0}.hfl-mb-1{margin-bottom:.25em}.hfl-mb-2{margin-bottom:.5em}.hfl-mb-4{margin-bottom:1em}.hfl-mb-6{margin-bottom:1.5em}.hfl-ml-1{margin-left:.25em}.hfl-ml-3{margin-left:.75em}.hfl-ml-\[1px\]{margin-left:1px}.hfl-mr-2{margin-right:.5em}.hfl-mt-0{margin-top:0}.hfl-mt-1{margin-top:.25em}.hfl-mt-2{margin-top:.5em}.hfl-mt-3{margin-top:.75em}.hfl-mt-4{margin-top:1em}.hfl-mt-5{margin-top:1.25em}.hfl-mt-\[10px\]{margin-top:10px}.hfl-block{display:block}.hfl-inline-block{display:inline-block}.hfl-flex{display:flex}.hfl-inline-flex{display:inline-flex}.hfl-grid{display:grid}.hfl-hidden{display:none}.hfl-h-10{height:2.5em}.hfl-h-12{height:3em}.hfl-h-16{height:4em}.hfl-h-4{height:1em}.hfl-h-48{height:12em}.hfl-h-64{height:16em}.hfl-h-\[100vh\]{height:100vh}.hfl-h-\[18px\]{height:18px}.hfl-h-\[220px\]{height:220px}.hfl-h-\[24px\]{height:24px}.hfl-h-\[26px\]{height:26px}.hfl-h-\[285px\]{height:285px}.hfl-h-\[300px\]{height:300px}.hfl-h-\[32px\]{height:32px}.hfl-h-\[350px\]{height:350px}.hfl-h-\[400px\]{height:400px}.hfl-h-\[40px\]{height:40px}.hfl-h-\[48px\]{height:48px}.hfl-h-\[85px\]{height:85px}.hfl-h-auto{height:auto}.hfl-h-full{height:100%}.hfl-max-h-64{max-height:16em}.hfl-max-h-96{max-height:24em}.hfl-max-h-\[285px\]{max-height:285px}.hfl-max-h-\[330px\]{max-height:330px}.hfl-max-h-\[80vh\]{max-height:80vh}.hfl-max-h-\[90vh\]{max-height:90vh}.hfl-min-h-\[50vh\]{min-height:50vh}.hfl-w-12{width:3em}.hfl-w-16{width:4em}.hfl-w-4{width:1em}.hfl-w-40{width:10em}.hfl-w-48{width:12em}.hfl-w-56{width:14em}.hfl-w-\[18px\]{width:18px}.hfl-w-\[220px\]{width:220px}.hfl-w-\[24px\]{width:24px}.hfl-w-\[26px\]{width:26px}.hfl-w-\[400px\]{width:400px}.hfl-w-\[48px\]{width:48px}.hfl-w-\[70\%\]{width:70%}.hfl-w-full{width:100%}.hfl-w-max{width:-moz-max-content;width:max-content}.hfl-min-w-0{min-width:0px}.hfl-min-w-\[16em\]{min-width:16em}.hfl-min-w-\[20em\]{min-width:20em}.hfl-min-w-\[32px\]{min-width:32px}.hfl-min-w-\[375px\]{min-width:375px}.hfl-max-w-2xl{max-width:42rem}.hfl-max-w-\[800px\]{max-width:800px}.hfl-max-w-md{max-width:28em}.hfl-flex-1{flex:1 1 0%}.hfl-flex-shrink-0{flex-shrink:0}.hfl-flex-grow{flex-grow:1}.hfl--translate-x-1\/2{--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hfl--translate-y-1\/2{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hfl-translate-x-\[-80\%\]{--tw-translate-x: -80%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hfl-translate-y-\[-90\%\]{--tw-translate-y: -90%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hfl-transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\!hfl-cursor-not-allowed{cursor:not-allowed!important}.hfl-cursor-not-allowed{cursor:not-allowed}.hfl-cursor-pointer{cursor:pointer}.hfl-grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.hfl-grid-cols-\[1\.36fr_1\.36fr_1\.02fr_1\.25fr_2\.27fr_1\.36fr_1\.36fr\]{grid-template-columns:1.36fr 1.36fr 1.02fr 1.25fr 2.27fr 1.36fr 1.36fr}.hfl-grid-cols-\[1fr_1fr\]{grid-template-columns:1fr 1fr}.hfl-grid-cols-\[1fr_1fr_1fr\]{grid-template-columns:1fr 1fr 1fr}.hfl-grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))}.hfl-flex-col{flex-direction:column}.hfl-flex-wrap{flex-wrap:wrap}.hfl-items-center{align-items:center}.hfl-justify-start{justify-content:flex-start}.hfl-justify-end{justify-content:flex-end}.hfl-justify-center{justify-content:center}.hfl-justify-between{justify-content:space-between}.hfl-gap-0{gap:0px}.hfl-gap-1{gap:.25em}.hfl-gap-2{gap:.5em}.hfl-gap-2\.5{gap:.625em}.hfl-gap-3{gap:.75em}.hfl-gap-4{gap:1em}.hfl-gap-6{gap:1.5em}.hfl-gap-8{gap:2em}.hfl-overflow-hidden{overflow:hidden}.hfl-overflow-scroll{overflow:scroll}.hfl-overflow-x-auto{overflow-x:auto}.hfl-overflow-y-auto{overflow-y:auto}.hfl-overflow-y-scroll{overflow-y:scroll}.hfl-text-nowrap{text-wrap:nowrap}.hfl-break-words{overflow-wrap:break-word}.hfl-rounded{border-radius:.25em}.hfl-rounded-full{border-radius:9999px}.hfl-rounded-lg{border-radius:.5em}.hfl-rounded-md{border-radius:.375em}.hfl-rounded-sm{border-radius:.125rem}.hfl-rounded-bl-lg{border-bottom-left-radius:.5em}.hfl-rounded-bl-md{border-bottom-left-radius:.375em}.hfl-rounded-br-md{border-bottom-right-radius:.375em}.hfl-rounded-tl-md{border-top-left-radius:.375em}.hfl-rounded-tr-md{border-top-right-radius:.375em}.hfl-border{border-width:1px}.hfl-border-0{border-width:0}.hfl-border-1{border-width:1px}.hfl-border-2{border-width:2px}.hfl-border-8{border-width:8px}.hfl-border-x-1{border-left-width:1px;border-right-width:1px}.hfl-border-b,.hfl-border-b-1{border-bottom-width:1px}.hfl-border-b-2{border-bottom-width:2px}.hfl-border-l{border-left-width:1px}.hfl-border-l-2{border-left-width:2px}.hfl-border-r-1{border-right-width:1px}.hfl-border-t{border-top-width:1px}.hfl-border-dashed{border-style:dashed}.hfl-border-Blue-300{--tw-border-opacity: 1;border-color:rgb(132 202 255 / var(--tw-border-opacity, 1))}.hfl-border-Blue-500{--tw-border-opacity: 1;border-color:rgb(46 144 250 / var(--tw-border-opacity, 1))}.hfl-border-Blue-600{--tw-border-opacity: 1;border-color:rgb(21 112 239 / var(--tw-border-opacity, 1))}.hfl-border-Error-300{--tw-border-opacity: 1;border-color:rgb(253 162 155 / var(--tw-border-opacity, 1))}.hfl-border-Error-400{--tw-border-opacity: 1;border-color:rgb(249 112 102 / var(--tw-border-opacity, 1))}.hfl-border-Gray-100{--tw-border-opacity: 1;border-color:rgb(242 244 247 / var(--tw-border-opacity, 1))}.hfl-border-Gray-200{--tw-border-opacity: 1;border-color:rgb(234 236 240 / var(--tw-border-opacity, 1))}.hfl-border-Gray-300{--tw-border-opacity: 1;border-color:rgb(208 213 221 / var(--tw-border-opacity, 1))}.hfl-border-Gray-400{--tw-border-opacity: 1;border-color:rgb(152 162 179 / var(--tw-border-opacity, 1))}.hfl-border-Gray-900{--tw-border-opacity: 1;border-color:rgb(16 24 40 / var(--tw-border-opacity, 1))}.hfl-border-Primary-600{--tw-border-opacity: 1;border-color:rgb(21 112 239 / var(--tw-border-opacity, 1))}.hfl-border-Warning-400{--tw-border-opacity: 1;border-color:rgb(253 176 34 / var(--tw-border-opacity, 1))}.hfl-border-Warning-50{--tw-border-opacity: 1;border-color:rgb(255 250 235 / var(--tw-border-opacity, 1))}.hfl-border-White{--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity, 1))}.hfl-border-b-Success-600{--tw-border-opacity: 1;border-bottom-color:rgb(3 152 85 / var(--tw-border-opacity, 1))}.hfl-border-l-Success-600{--tw-border-opacity: 1;border-left-color:rgb(3 152 85 / var(--tw-border-opacity, 1))}.\!hfl-bg-Gray-50{--tw-bg-opacity: 1 !important;background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))!important}.hfl-bg-Blue-100{--tw-bg-opacity: 1;background-color:rgb(209 233 255 / var(--tw-bg-opacity, 1))}.hfl-bg-Blue-25{--tw-bg-opacity: 1;background-color:rgb(245 250 255 / var(--tw-bg-opacity, 1))}.hfl-bg-Blue-50{--tw-bg-opacity: 1;background-color:rgb(239 248 255 / var(--tw-bg-opacity, 1))}.hfl-bg-Blue-600{--tw-bg-opacity: 1;background-color:rgb(21 112 239 / var(--tw-bg-opacity, 1))}.hfl-bg-Blue_gray-50{--tw-bg-opacity: 1;background-color:rgb(248 249 252 / var(--tw-bg-opacity, 1))}.hfl-bg-Error-50{--tw-bg-opacity: 1;background-color:rgb(254 243 242 / var(--tw-bg-opacity, 1))}.hfl-bg-Error-500{--tw-bg-opacity: 1;background-color:rgb(240 68 56 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-100{--tw-bg-opacity: 1;background-color:rgb(242 244 247 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-300{--tw-bg-opacity: 1;background-color:rgb(208 213 221 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-400{--tw-bg-opacity: 1;background-color:rgb(152 162 179 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-600{--tw-bg-opacity: 1;background-color:rgb(71 84 103 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-750{background-color:#34405480}.hfl-bg-Primary-100{--tw-bg-opacity: 1;background-color:rgb(209 233 255 / var(--tw-bg-opacity, 1))}.hfl-bg-Primary-600{--tw-bg-opacity: 1;background-color:rgb(21 112 239 / var(--tw-bg-opacity, 1))}.hfl-bg-Success-600{--tw-bg-opacity: 1;background-color:rgb(3 152 85 / var(--tw-bg-opacity, 1))}.hfl-bg-Warning-100{--tw-bg-opacity: 1;background-color:rgb(254 240 199 / var(--tw-bg-opacity, 1))}.hfl-bg-Warning-50{--tw-bg-opacity: 1;background-color:rgb(255 250 235 / var(--tw-bg-opacity, 1))}.hfl-bg-White{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.hfl-bg-black{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity, 1))}.hfl-bg-blue-600{--tw-bg-opacity: 1;background-color:rgb(37 99 235 / var(--tw-bg-opacity, 1))}.hfl-bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity, 1))}.hfl-bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity, 1))}.hfl-bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.hfl-bg-opacity-50{--tw-bg-opacity: .5}.hfl-bg-opacity-75{--tw-bg-opacity: .75}.hfl-bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.hfl-bg-gradient_primary_600_500_90{background-image:linear-gradient(90deg,#1570ef,#2e90fa)}.hfl-from-White_20{--tw-gradient-from: #fffffd var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 253 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.hfl-to-Primary-50{--tw-gradient-to: #eff8ff var(--tw-gradient-to-position)}.hfl-object-contain{-o-object-fit:contain;object-fit:contain}.hfl-object-cover{-o-object-fit:cover;object-fit:cover}.hfl-p-1{padding:.25em}.hfl-p-2{padding:.5em}.hfl-p-3{padding:.75em}.hfl-p-4{padding:1em}.hfl-p-6{padding:1.5em}.hfl-p-8{padding:2em}.hfl-px-10{padding-left:2.5em;padding-right:2.5em}.hfl-px-2{padding-left:.5em;padding-right:.5em}.hfl-px-3{padding-left:.75em;padding-right:.75em}.hfl-px-4{padding-left:1em;padding-right:1em}.hfl-px-6{padding-left:1.5em;padding-right:1.5em}.hfl-px-7{padding-left:1.75em;padding-right:1.75em}.hfl-py-0\.5{padding-top:.125em;padding-bottom:.125em}.hfl-py-1{padding-top:.25em;padding-bottom:.25em}.hfl-py-2{padding-top:.5em;padding-bottom:.5em}.hfl-py-2\.5{padding-top:.625em;padding-bottom:.625em}.hfl-py-20{padding-top:5em;padding-bottom:5em}.hfl-py-3{padding-top:.75em;padding-bottom:.75em}.hfl-py-5{padding-top:1.25em;padding-bottom:1.25em}.hfl-py-\[6px\]{padding-top:6px;padding-bottom:6px}.hfl-pb-20{padding-bottom:5em}.hfl-pl-2{padding-left:.5em}.hfl-pr-2{padding-right:.5em}.hfl-pr-4{padding-right:1em}.hfl-pt-4{padding-top:1em}.hfl-pt-6{padding-top:1.5em}.hfl-text-left{text-align:left}.hfl-text-center{text-align:center}.hfl-text-0{font-size:12px}.hfl-text-1{font-size:14px}.hfl-text-4xl{font-size:2.25rem;line-height:2.5rem}.hfl-text-5{font-size:24px}.hfl-text-\[14px\]{font-size:14px}.hfl-text-base{font-size:1rem;line-height:1.5rem}.hfl-text-sm{font-size:.875rem;line-height:1.25rem}.hfl-text-xl{font-size:1.25rem;line-height:1.75rem}.hfl-font-bold{font-weight:700}.hfl-font-inter-0{font-weight:400}.hfl-font-inter-1,.hfl-font-medium{font-weight:500}.hfl-uppercase{text-transform:uppercase}.hfl-text-Blue-500{--tw-text-opacity: 1;color:rgb(46 144 250 / var(--tw-text-opacity, 1))}.hfl-text-Blue-600{--tw-text-opacity: 1;color:rgb(21 112 239 / var(--tw-text-opacity, 1))}.hfl-text-Blue_gray-600{--tw-text-opacity: 1;color:rgb(62 71 132 / var(--tw-text-opacity, 1))}.hfl-text-Blue_gray-800{--tw-text-opacity: 1;color:rgb(41 48 86 / var(--tw-text-opacity, 1))}.hfl-text-Error-400{--tw-text-opacity: 1;color:rgb(249 112 102 / var(--tw-text-opacity, 1))}.hfl-text-Error-500{--tw-text-opacity: 1;color:rgb(240 68 56 / var(--tw-text-opacity, 1))}.hfl-text-Error-600{--tw-text-opacity: 1;color:rgb(217 45 32 / var(--tw-text-opacity, 1))}.hfl-text-Gray-400{--tw-text-opacity: 1;color:rgb(152 162 179 / var(--tw-text-opacity, 1))}.hfl-text-Gray-500{--tw-text-opacity: 1;color:rgb(102 112 133 / var(--tw-text-opacity, 1))}.hfl-text-Gray-600{--tw-text-opacity: 1;color:rgb(71 84 103 / var(--tw-text-opacity, 1))}.hfl-text-Gray-700{--tw-text-opacity: 1;color:rgb(52 64 84 / var(--tw-text-opacity, 1))}.hfl-text-Gray-800{--tw-text-opacity: 1;color:rgb(29 41 57 / var(--tw-text-opacity, 1))}.hfl-text-Gray-900{--tw-text-opacity: 1;color:rgb(16 24 40 / var(--tw-text-opacity, 1))}.hfl-text-Primary-600{--tw-text-opacity: 1;color:rgb(21 112 239 / var(--tw-text-opacity, 1))}.hfl-text-Warning-600{--tw-text-opacity: 1;color:rgb(220 104 3 / var(--tw-text-opacity, 1))}.hfl-text-White{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.hfl-text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity, 1))}.hfl-text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity, 1))}.hfl-text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.hfl-shadow-lg{--tw-shadow: 0px 12px 16px -4px rgba(16, 24, 40, .08), 0px 4px 6px -2px rgba(16, 24, 40, .03);--tw-shadow-colored: 0px 12px 16px -4px var(--tw-shadow-color), 0px 4px 6px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hfl-shadow-md{--tw-shadow: 0px 4px 8px -2px rgba(16, 24, 40, .1), 0px 2px 4px -2px rgba(16, 24, 40, .06);--tw-shadow-colored: 0px 4px 8px -2px var(--tw-shadow-color), 0px 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hfl-shadow-upload{--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hfl-shadow-xs{--tw-shadow: 0px 1px 2px rgba(16, 24, 40, .05);--tw-shadow-colored: 0px 1px 2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hfl-outline-none{outline:2px solid transparent;outline-offset:2px}.hfl-backdrop-blur-sm{--tw-backdrop-blur: blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.hfl-transition{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(.4,0,.2,1);transition-duration:.15s}.hfl-transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.hfl-transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.hfl-transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.hfl-duration-200{transition-duration:.2s}.hfl-duration-300{transition-duration:.3s}*{box-sizing:border-box}.transform-half{transform:translate(-50%,-50%)}.odd\:hfl-bg-Gray-100:nth-child(odd){--tw-bg-opacity: 1;background-color:rgb(242 244 247 / var(--tw-bg-opacity, 1))}.hover\:hfl-border-Primary-300:hover{--tw-border-opacity: 1;border-color:rgb(132 202 255 / var(--tw-border-opacity, 1))}.hover\:hfl-bg-Blue-50:hover{--tw-bg-opacity: 1;background-color:rgb(239 248 255 / var(--tw-bg-opacity, 1))}.hover\:hfl-bg-Blue-600:hover{--tw-bg-opacity: 1;background-color:rgb(21 112 239 / var(--tw-bg-opacity, 1))}.hover\:hfl-bg-Error-50:hover{--tw-bg-opacity: 1;background-color:rgb(254 243 242 / var(--tw-bg-opacity, 1))}.hover\:hfl-bg-Error-700:hover{--tw-bg-opacity: 1;background-color:rgb(180 35 24 / var(--tw-bg-opacity, 1))}.hover\:hfl-bg-Primary-50:hover{--tw-bg-opacity: 1;background-color:rgb(239 248 255 / var(--tw-bg-opacity, 1))}.hover\:hfl-text-White:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.hover\:hfl-shadow-xs-primary:hover{--tw-shadow: 0px 1px 2px rgba(16, 24, 40, .05), 0px 0px 0px 4px #d1e9ff;--tw-shadow-colored: 0px 1px 2px var(--tw-shadow-color), 0px 0px 0px 4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.focus\:hfl-border-0:focus{border-width:0}.focus\:hfl-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:hfl-ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:hfl-ring-Primary-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(46 144 250 / var(--tw-ring-opacity, 1))}.focus-visible\:hfl-outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:hfl-outline-0:focus-visible{outline-width:0px}.disabled\:hfl-cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:hfl-opacity-50:disabled{opacity:.5}@media (min-width: 360px){@media not all and (min-width: 1024px){.xxxs\:max-sm\:hfl-text-\[10px\]{font-size:10px}}}@media (min-width: 820px){.xsm\:hfl-mx-6{margin-left:1.5em;margin-right:1.5em}}.shimmer-effect{width:100%;height:100%;background:linear-gradient(90deg,#f0f0f0 25%,#e0e0e0,#f0f0f0 75%);background-size:200% 100%;animation:shimmer 1s infinite linear}@keyframes shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}
1
+ *,:before,:after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}:before,:after{--tw-content: ""}html,:host{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}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}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.\!hfl-pointer-events-none{pointer-events:none!important}.hfl-pointer-events-none{pointer-events:none}.hfl-visible{visibility:visible}.hfl-invisible{visibility:hidden}.hfl-fixed{position:fixed}.hfl-absolute{position:absolute}.hfl-relative{position:relative}.hfl-sticky{position:sticky}.hfl-inset-0{inset:0}.hfl-bottom-0{bottom:0}.hfl-bottom-full{bottom:100%}.hfl-left-0{left:0}.hfl-left-1\/2{left:50%}.hfl-left-\[20px\]{left:20px}.hfl-left-\[90\%\]{left:90%}.hfl-right-0{right:0}.hfl-top-0{top:0}.hfl-top-1\/2{top:50%}.hfl-top-\[48px\]{top:48px}.hfl-top-\[55\%\]{top:55%}.hfl-top-\[80\%\]{top:80%}.hfl-top-full{top:100%}.hfl-z-10{z-index:10}.hfl-z-20{z-index:20}.hfl-z-50{z-index:50}.hfl-z-\[10000000\]{z-index:10000000}.hfl-z-\[1000\]{z-index:1000}.hfl-z-\[100\]{z-index:100}.hfl-z-\[9999999999\]{z-index:9999999999}.hfl-mx-10{margin-left:2.5em;margin-right:2.5em}.hfl-mx-2{margin-left:.5em;margin-right:.5em}.hfl-mx-auto{margin-left:auto;margin-right:auto}.hfl-my-0{margin-top:0;margin-bottom:0}.hfl-my-2{margin-top:.5em;margin-bottom:.5em}.\!hfl-mr-1{margin-right:.25em!important}.hfl-mb-1{margin-bottom:.25em}.hfl-mb-2{margin-bottom:.5em}.hfl-mb-4{margin-bottom:1em}.hfl-mb-6{margin-bottom:1.5em}.hfl-ml-1{margin-left:.25em}.hfl-ml-3{margin-left:.75em}.hfl-ml-\[1px\]{margin-left:1px}.hfl-mr-1{margin-right:.25em}.hfl-mr-2{margin-right:.5em}.hfl-mt-0{margin-top:0}.hfl-mt-1{margin-top:.25em}.hfl-mt-2{margin-top:.5em}.hfl-mt-3{margin-top:.75em}.hfl-mt-4{margin-top:1em}.hfl-mt-5{margin-top:1.25em}.hfl-mt-\[10px\]{margin-top:10px}.hfl-block{display:block}.hfl-inline-block{display:inline-block}.hfl-flex{display:flex}.hfl-inline-flex{display:inline-flex}.hfl-table{display:table}.hfl-grid{display:grid}.hfl-hidden{display:none}.\!hfl-h-4{height:1em!important}.hfl-h-0{height:0px}.hfl-h-10{height:2.5em}.hfl-h-12{height:3em}.hfl-h-16{height:4em}.hfl-h-4{height:1em}.hfl-h-48{height:12em}.hfl-h-64{height:16em}.hfl-h-\[100vh\]{height:100vh}.hfl-h-\[18px\]{height:18px}.hfl-h-\[220px\]{height:220px}.hfl-h-\[24px\]{height:24px}.hfl-h-\[26px\]{height:26px}.hfl-h-\[285px\]{height:285px}.hfl-h-\[300px\]{height:300px}.hfl-h-\[32px\]{height:32px}.hfl-h-\[350px\]{height:350px}.hfl-h-\[400px\]{height:400px}.hfl-h-\[40px\]{height:40px}.hfl-h-\[48px\]{height:48px}.hfl-h-\[55vh\]{height:55vh}.hfl-h-auto{height:auto}.hfl-h-full{height:100%}.hfl-max-h-64{max-height:16em}.hfl-max-h-96{max-height:24em}.hfl-max-h-\[200px\]{max-height:200px}.hfl-max-h-\[285px\]{max-height:285px}.hfl-max-h-\[330px\]{max-height:330px}.hfl-max-h-\[80vh\]{max-height:80vh}.hfl-max-h-\[90vh\]{max-height:90vh}.hfl-min-h-\[16px\]{min-height:16px}.hfl-min-h-\[40px\]{min-height:40px}.hfl-min-h-\[50vh\]{min-height:50vh}.\!hfl-w-4{width:1em!important}.hfl-w-0{width:0px}.hfl-w-12{width:3em}.hfl-w-16{width:4em}.hfl-w-3\/4{width:75%}.hfl-w-4{width:1em}.hfl-w-40{width:10em}.hfl-w-48{width:12em}.hfl-w-56{width:14em}.hfl-w-\[150px\]{width:150px}.hfl-w-\[18px\]{width:18px}.hfl-w-\[220px\]{width:220px}.hfl-w-\[24px\]{width:24px}.hfl-w-\[26px\]{width:26px}.hfl-w-\[400px\]{width:400px}.hfl-w-\[48px\]{width:48px}.hfl-w-\[54vw\]{width:54vw}.hfl-w-\[70\%\]{width:70%}.hfl-w-auto{width:auto}.hfl-w-full{width:100%}.hfl-w-max{width:-moz-max-content;width:max-content}.hfl-min-w-0{min-width:0px}.hfl-min-w-\[16em\]{min-width:16em}.hfl-min-w-\[16px\]{min-width:16px}.hfl-min-w-\[20em\]{min-width:20em}.hfl-min-w-\[32px\]{min-width:32px}.hfl-min-w-\[375px\]{min-width:375px}.hfl-max-w-2xl{max-width:42rem}.hfl-max-w-\[800px\]{max-width:800px}.hfl-max-w-md{max-width:28em}.hfl-flex-1{flex:1 1 0%}.hfl-flex-shrink-0{flex-shrink:0}.hfl-flex-grow{flex-grow:1}.hfl--translate-x-1\/2{--tw-translate-x: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hfl--translate-y-1\/2{--tw-translate-y: -50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hfl-translate-x-\[-80\%\]{--tw-translate-x: -80%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hfl-translate-y-\[-90\%\]{--tw-translate-y: -90%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hfl-transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.\!hfl-cursor-not-allowed{cursor:not-allowed!important}.hfl-cursor-not-allowed{cursor:not-allowed}.hfl-cursor-pointer{cursor:pointer}.hfl-appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.hfl-grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.hfl-grid-cols-\[1\.36fr_1\.36fr_1\.02fr_1\.25fr_2\.27fr_1\.36fr_1\.36fr\]{grid-template-columns:1.36fr 1.36fr 1.02fr 1.25fr 2.27fr 1.36fr 1.36fr}.hfl-grid-cols-\[1fr_1fr\]{grid-template-columns:1fr 1fr}.hfl-grid-cols-\[1fr_1fr_1fr\]{grid-template-columns:1fr 1fr 1fr}.hfl-grid-rows-2{grid-template-rows:repeat(2,minmax(0,1fr))}.hfl-flex-row{flex-direction:row}.hfl-flex-col{flex-direction:column}.hfl-flex-wrap{flex-wrap:wrap}.hfl-items-center{align-items:center}.hfl-items-stretch{align-items:stretch}.hfl-justify-start{justify-content:flex-start}.hfl-justify-end{justify-content:flex-end}.hfl-justify-center{justify-content:center}.hfl-justify-between{justify-content:space-between}.hfl-gap-0{gap:0px}.hfl-gap-1{gap:.25em}.hfl-gap-2{gap:.5em}.hfl-gap-2\.5{gap:.625em}.hfl-gap-3{gap:.75em}.hfl-gap-4{gap:1em}.hfl-gap-6{gap:1.5em}.hfl-gap-8{gap:2em}.hfl-overflow-auto{overflow:auto}.hfl-overflow-hidden{overflow:hidden}.hfl-overflow-scroll{overflow:scroll}.hfl-overflow-x-auto{overflow-x:auto}.hfl-overflow-y-auto{overflow-y:auto}.hfl-overflow-x-hidden{overflow-x:hidden}.hfl-overflow-y-scroll{overflow-y:scroll}.hfl-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hfl-text-ellipsis{text-overflow:ellipsis}.hfl-whitespace-nowrap{white-space:nowrap}.hfl-text-nowrap{text-wrap:nowrap}.hfl-break-words{overflow-wrap:break-word}.hfl-rounded{border-radius:.25em}.hfl-rounded-full{border-radius:9999px}.hfl-rounded-lg{border-radius:.5em}.hfl-rounded-md{border-radius:.375em}.hfl-rounded-sm{border-radius:.125rem}.hfl-rounded-bl-lg{border-bottom-left-radius:.5em}.hfl-rounded-bl-md{border-bottom-left-radius:.375em}.hfl-rounded-br-md{border-bottom-right-radius:.375em}.hfl-rounded-tl-md{border-top-left-radius:.375em}.hfl-rounded-tr-md{border-top-right-radius:.375em}.hfl-border{border-width:1px}.hfl-border-0{border-width:0}.hfl-border-1{border-width:1px}.hfl-border-2{border-width:2px}.hfl-border-8{border-width:8px}.hfl-border-x-1{border-left-width:1px;border-right-width:1px}.hfl-border-b,.hfl-border-b-1{border-bottom-width:1px}.hfl-border-b-2{border-bottom-width:2px}.hfl-border-b-\[8px\]{border-bottom-width:8px}.hfl-border-l{border-left-width:1px}.hfl-border-l-2{border-left-width:2px}.hfl-border-l-\[6px\]{border-left-width:6px}.hfl-border-r-1{border-right-width:1px}.hfl-border-r-\[6px\]{border-right-width:6px}.hfl-border-t{border-top-width:1px}.hfl-border-t-0{border-top-width:0}.hfl-border-t-1{border-top-width:1px}.hfl-border-dashed{border-style:dashed}.\!hfl-border-Blue-600{--tw-border-opacity: 1 !important;border-color:rgb(21 112 239 / var(--tw-border-opacity, 1))!important}.hfl-border-Blue-300{--tw-border-opacity: 1;border-color:rgb(132 202 255 / var(--tw-border-opacity, 1))}.hfl-border-Blue-500{--tw-border-opacity: 1;border-color:rgb(46 144 250 / var(--tw-border-opacity, 1))}.hfl-border-Blue-600{--tw-border-opacity: 1;border-color:rgb(21 112 239 / var(--tw-border-opacity, 1))}.hfl-border-Error-300{--tw-border-opacity: 1;border-color:rgb(253 162 155 / var(--tw-border-opacity, 1))}.hfl-border-Error-400{--tw-border-opacity: 1;border-color:rgb(249 112 102 / var(--tw-border-opacity, 1))}.hfl-border-Error-600{--tw-border-opacity: 1;border-color:rgb(217 45 32 / var(--tw-border-opacity, 1))}.hfl-border-Gray-100{--tw-border-opacity: 1;border-color:rgb(242 244 247 / var(--tw-border-opacity, 1))}.hfl-border-Gray-200{--tw-border-opacity: 1;border-color:rgb(234 236 240 / var(--tw-border-opacity, 1))}.hfl-border-Gray-300{--tw-border-opacity: 1;border-color:rgb(208 213 221 / var(--tw-border-opacity, 1))}.hfl-border-Gray-400{--tw-border-opacity: 1;border-color:rgb(152 162 179 / var(--tw-border-opacity, 1))}.hfl-border-Gray-900{--tw-border-opacity: 1;border-color:rgb(16 24 40 / var(--tw-border-opacity, 1))}.hfl-border-Primary-600{--tw-border-opacity: 1;border-color:rgb(21 112 239 / var(--tw-border-opacity, 1))}.hfl-border-Warning-400{--tw-border-opacity: 1;border-color:rgb(253 176 34 / var(--tw-border-opacity, 1))}.hfl-border-Warning-50{--tw-border-opacity: 1;border-color:rgb(255 250 235 / var(--tw-border-opacity, 1))}.hfl-border-White{--tw-border-opacity: 1;border-color:rgb(255 255 255 / var(--tw-border-opacity, 1))}.hfl-border-gray-200{--tw-border-opacity: 1;border-color:rgb(229 231 235 / var(--tw-border-opacity, 1))}.hfl-border-b-Blue_gray-900{--tw-border-opacity: 1;border-bottom-color:rgb(16 19 35 / var(--tw-border-opacity, 1))}.hfl-border-b-Success-600{--tw-border-opacity: 1;border-bottom-color:rgb(3 152 85 / var(--tw-border-opacity, 1))}.hfl-border-b-Warning-600{--tw-border-opacity: 1;border-bottom-color:rgb(220 104 3 / var(--tw-border-opacity, 1))}.hfl-border-l-Success-600{--tw-border-opacity: 1;border-left-color:rgb(3 152 85 / var(--tw-border-opacity, 1))}.hfl-border-l-transparent{border-left-color:transparent}.hfl-border-r-transparent{border-right-color:transparent}.\!hfl-bg-Blue-50{--tw-bg-opacity: 1 !important;background-color:rgb(239 248 255 / var(--tw-bg-opacity, 1))!important}.\!hfl-bg-Gray-50{--tw-bg-opacity: 1 !important;background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))!important}.hfl-bg-Blue-100{--tw-bg-opacity: 1;background-color:rgb(209 233 255 / var(--tw-bg-opacity, 1))}.hfl-bg-Blue-25{--tw-bg-opacity: 1;background-color:rgb(245 250 255 / var(--tw-bg-opacity, 1))}.hfl-bg-Blue-50{--tw-bg-opacity: 1;background-color:rgb(239 248 255 / var(--tw-bg-opacity, 1))}.hfl-bg-Blue-600{--tw-bg-opacity: 1;background-color:rgb(21 112 239 / var(--tw-bg-opacity, 1))}.hfl-bg-Blue_gray-50{--tw-bg-opacity: 1;background-color:rgb(248 249 252 / var(--tw-bg-opacity, 1))}.hfl-bg-Blue_gray-900{--tw-bg-opacity: 1;background-color:rgb(16 19 35 / var(--tw-bg-opacity, 1))}.hfl-bg-Error-50{--tw-bg-opacity: 1;background-color:rgb(254 243 242 / var(--tw-bg-opacity, 1))}.hfl-bg-Error-500{--tw-bg-opacity: 1;background-color:rgb(240 68 56 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-100{--tw-bg-opacity: 1;background-color:rgb(242 244 247 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-300{--tw-bg-opacity: 1;background-color:rgb(208 213 221 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-400{--tw-bg-opacity: 1;background-color:rgb(152 162 179 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-50{--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-600{--tw-bg-opacity: 1;background-color:rgb(71 84 103 / var(--tw-bg-opacity, 1))}.hfl-bg-Gray-750{background-color:#34405480}.hfl-bg-Primary-100{--tw-bg-opacity: 1;background-color:rgb(209 233 255 / var(--tw-bg-opacity, 1))}.hfl-bg-Primary-600{--tw-bg-opacity: 1;background-color:rgb(21 112 239 / var(--tw-bg-opacity, 1))}.hfl-bg-Success-600{--tw-bg-opacity: 1;background-color:rgb(3 152 85 / var(--tw-bg-opacity, 1))}.hfl-bg-Warning-100{--tw-bg-opacity: 1;background-color:rgb(254 240 199 / var(--tw-bg-opacity, 1))}.hfl-bg-Warning-50{--tw-bg-opacity: 1;background-color:rgb(255 250 235 / var(--tw-bg-opacity, 1))}.hfl-bg-White{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.hfl-bg-black{--tw-bg-opacity: 1;background-color:rgb(0 0 0 / var(--tw-bg-opacity, 1))}.hfl-bg-black\/50{background-color:#00000080}.hfl-bg-blue-600{--tw-bg-opacity: 1;background-color:rgb(37 99 235 / var(--tw-bg-opacity, 1))}.hfl-bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243 244 246 / var(--tw-bg-opacity, 1))}.hfl-bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229 231 235 / var(--tw-bg-opacity, 1))}.hfl-bg-inherit{background-color:inherit}.hfl-bg-white{--tw-bg-opacity: 1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.hfl-bg-opacity-50{--tw-bg-opacity: .5}.hfl-bg-opacity-75{--tw-bg-opacity: .75}.hfl-bg-gradient-to-b{background-image:linear-gradient(to bottom,var(--tw-gradient-stops))}.hfl-bg-gradient_primary_600_500_90{background-image:linear-gradient(90deg,#1570ef,#2e90fa)}.hfl-from-White_20{--tw-gradient-from: #fffffd var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 253 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.hfl-to-Primary-50{--tw-gradient-to: #eff8ff var(--tw-gradient-to-position)}.hfl-object-contain{-o-object-fit:contain;object-fit:contain}.hfl-object-cover{-o-object-fit:cover;object-fit:cover}.\!hfl-p-0{padding:0!important}.hfl-p-1{padding:.25em}.hfl-p-2{padding:.5em}.hfl-p-3{padding:.75em}.hfl-p-4{padding:1em}.hfl-p-6{padding:1.5em}.hfl-p-8{padding:2em}.hfl-px-10{padding-left:2.5em;padding-right:2.5em}.hfl-px-2{padding-left:.5em;padding-right:.5em}.hfl-px-3{padding-left:.75em;padding-right:.75em}.hfl-px-4{padding-left:1em;padding-right:1em}.hfl-px-6{padding-left:1.5em;padding-right:1.5em}.hfl-px-7{padding-left:1.75em;padding-right:1.75em}.hfl-py-0\.5{padding-top:.125em;padding-bottom:.125em}.hfl-py-1{padding-top:.25em;padding-bottom:.25em}.hfl-py-1\.5{padding-top:.375em;padding-bottom:.375em}.hfl-py-2{padding-top:.5em;padding-bottom:.5em}.hfl-py-2\.5{padding-top:.625em;padding-bottom:.625em}.hfl-py-20{padding-top:5em;padding-bottom:5em}.hfl-py-3{padding-top:.75em;padding-bottom:.75em}.hfl-py-5{padding-top:1.25em;padding-bottom:1.25em}.hfl-py-\[6px\]{padding-top:6px;padding-bottom:6px}.hfl-pb-0\.5{padding-bottom:.125em}.hfl-pb-1{padding-bottom:.25em}.hfl-pb-20{padding-bottom:5em}.hfl-pl-2{padding-left:.5em}.hfl-pr-2{padding-right:.5em}.hfl-pr-4{padding-right:1em}.hfl-pt-4{padding-top:1em}.hfl-pt-6{padding-top:1.5em}.hfl-text-left{text-align:left}.hfl-text-center{text-align:center}.hfl-font-inter{font-family:Inter}.hfl-text-0{font-size:12px}.hfl-text-1{font-size:14px}.hfl-text-2{font-size:16px}.hfl-text-4{font-size:20px}.hfl-text-4xl{font-size:2.25rem;line-height:2.5rem}.hfl-text-5{font-size:24px}.hfl-text-\[13px\]{font-size:13px}.hfl-text-\[14px\]{font-size:14px}.hfl-text-base{font-size:1rem;line-height:1.5rem}.hfl-text-sm{font-size:.875rem;line-height:1.25rem}.hfl-text-xl{font-size:1.25rem;line-height:1.75rem}.hfl-font-bold{font-weight:700}.hfl-font-inter-0{font-weight:400}.hfl-font-inter-1{font-weight:500}.hfl-font-inter-2{font-weight:600}.hfl-font-medium{font-weight:500}.hfl-font-semibold{font-weight:600}.hfl-uppercase{text-transform:uppercase}.\!hfl-text-Blue-600{--tw-text-opacity: 1 !important;color:rgb(21 112 239 / var(--tw-text-opacity, 1))!important}.hfl-text-Blue-500{--tw-text-opacity: 1;color:rgb(46 144 250 / var(--tw-text-opacity, 1))}.hfl-text-Blue-600{--tw-text-opacity: 1;color:rgb(21 112 239 / var(--tw-text-opacity, 1))}.hfl-text-Blue_gray-600{--tw-text-opacity: 1;color:rgb(62 71 132 / var(--tw-text-opacity, 1))}.hfl-text-Blue_gray-800{--tw-text-opacity: 1;color:rgb(41 48 86 / var(--tw-text-opacity, 1))}.hfl-text-Error-400{--tw-text-opacity: 1;color:rgb(249 112 102 / var(--tw-text-opacity, 1))}.hfl-text-Error-500{--tw-text-opacity: 1;color:rgb(240 68 56 / var(--tw-text-opacity, 1))}.hfl-text-Error-600{--tw-text-opacity: 1;color:rgb(217 45 32 / var(--tw-text-opacity, 1))}.hfl-text-Gray-400{--tw-text-opacity: 1;color:rgb(152 162 179 / var(--tw-text-opacity, 1))}.hfl-text-Gray-500{--tw-text-opacity: 1;color:rgb(102 112 133 / var(--tw-text-opacity, 1))}.hfl-text-Gray-600{--tw-text-opacity: 1;color:rgb(71 84 103 / var(--tw-text-opacity, 1))}.hfl-text-Gray-700{--tw-text-opacity: 1;color:rgb(52 64 84 / var(--tw-text-opacity, 1))}.hfl-text-Gray-800{--tw-text-opacity: 1;color:rgb(29 41 57 / var(--tw-text-opacity, 1))}.hfl-text-Gray-900{--tw-text-opacity: 1;color:rgb(16 24 40 / var(--tw-text-opacity, 1))}.hfl-text-Indigo-500{--tw-text-opacity: 1;color:rgb(97 114 243 / var(--tw-text-opacity, 1))}.hfl-text-Primary-600{--tw-text-opacity: 1;color:rgb(21 112 239 / var(--tw-text-opacity, 1))}.hfl-text-Success-600{--tw-text-opacity: 1;color:rgb(3 152 85 / var(--tw-text-opacity, 1))}.hfl-text-Warning-600{--tw-text-opacity: 1;color:rgb(220 104 3 / var(--tw-text-opacity, 1))}.hfl-text-White{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.hfl-text-gray-500{--tw-text-opacity: 1;color:rgb(107 114 128 / var(--tw-text-opacity, 1))}.hfl-text-gray-900{--tw-text-opacity: 1;color:rgb(17 24 39 / var(--tw-text-opacity, 1))}.hfl-text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.hfl-shadow-lg{--tw-shadow: 0px 12px 16px -4px rgba(16, 24, 40, .08), 0px 4px 6px -2px rgba(16, 24, 40, .03);--tw-shadow-colored: 0px 12px 16px -4px var(--tw-shadow-color), 0px 4px 6px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hfl-shadow-md{--tw-shadow: 0px 4px 8px -2px rgba(16, 24, 40, .1), 0px 2px 4px -2px rgba(16, 24, 40, .06);--tw-shadow-colored: 0px 4px 8px -2px var(--tw-shadow-color), 0px 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hfl-shadow-upload{--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hfl-shadow-xs{--tw-shadow: 0px 1px 2px rgba(16, 24, 40, .05);--tw-shadow-colored: 0px 1px 2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.hfl-shadow-Gray-200{--tw-shadow-color: #eaecf0;--tw-shadow: var(--tw-shadow-colored)}.hfl-shadow-Gray-300{--tw-shadow-color: #d0d5dd;--tw-shadow: var(--tw-shadow-colored)}.hfl-outline-none{outline:2px solid transparent;outline-offset:2px}.hfl-backdrop-blur-\[2px\]{--tw-backdrop-blur: blur(2px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.hfl-backdrop-blur-sm{--tw-backdrop-blur: blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.hfl-transition{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(.4,0,.2,1);transition-duration:.15s}.hfl-transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.hfl-transition-colors{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.hfl-transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.hfl-duration-200{transition-duration:.2s}.hfl-duration-300{transition-duration:.3s}*{box-sizing:border-box}.transform-half{transform:translate(-50%,-50%)}.odd\:hfl-bg-Gray-100:nth-child(odd){--tw-bg-opacity: 1;background-color:rgb(242 244 247 / var(--tw-bg-opacity, 1))}.odd\:hfl-bg-Gray-50:nth-child(odd){--tw-bg-opacity: 1;background-color:rgb(249 250 251 / var(--tw-bg-opacity, 1))}.checked\:hfl-bg-Blue-600:checked{--tw-bg-opacity: 1;background-color:rgb(21 112 239 / var(--tw-bg-opacity, 1))}.hover\:hfl-border:hover{border-width:1px}.hover\:hfl-border-Blue-300:hover{--tw-border-opacity: 1;border-color:rgb(132 202 255 / var(--tw-border-opacity, 1))}.hover\:hfl-border-Blue-600:hover{--tw-border-opacity: 1;border-color:rgb(21 112 239 / var(--tw-border-opacity, 1))}.hover\:hfl-border-Primary-300:hover{--tw-border-opacity: 1;border-color:rgb(132 202 255 / var(--tw-border-opacity, 1))}.hover\:hfl-bg-Blue-50:hover{--tw-bg-opacity: 1;background-color:rgb(239 248 255 / var(--tw-bg-opacity, 1))}.hover\:hfl-bg-Blue-600:hover{--tw-bg-opacity: 1;background-color:rgb(21 112 239 / var(--tw-bg-opacity, 1))}.hover\:hfl-bg-Error-50:hover{--tw-bg-opacity: 1;background-color:rgb(254 243 242 / var(--tw-bg-opacity, 1))}.hover\:hfl-bg-Error-700:hover{--tw-bg-opacity: 1;background-color:rgb(180 35 24 / var(--tw-bg-opacity, 1))}.hover\:hfl-bg-Primary-50:hover{--tw-bg-opacity: 1;background-color:rgb(239 248 255 / var(--tw-bg-opacity, 1))}.hover\:hfl-font-bold:hover{font-weight:700}.hover\:hfl-text-Blue-600:hover{--tw-text-opacity: 1;color:rgb(21 112 239 / var(--tw-text-opacity, 1))}.hover\:hfl-text-White:hover{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.hover\:hfl-shadow-xs-primary:hover{--tw-shadow: 0px 1px 2px rgba(16, 24, 40, .05), 0px 0px 0px 4px #d1e9ff;--tw-shadow-colored: 0px 1px 2px var(--tw-shadow-color), 0px 0px 0px 4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.focus\:hfl-border-0:focus{border-width:0}.focus\:hfl-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.focus\:hfl-ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)}.focus\:hfl-ring-Primary-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(46 144 250 / var(--tw-ring-opacity, 1))}.focus-visible\:hfl-outline-none:focus-visible{outline:2px solid transparent;outline-offset:2px}.focus-visible\:hfl-outline-0:focus-visible{outline-width:0px}.disabled\:hfl-cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:hfl-bg-Gray-200:disabled{--tw-bg-opacity: 1;background-color:rgb(234 236 240 / var(--tw-bg-opacity, 1))}.disabled\:hfl-text-Gray-200:disabled{--tw-text-opacity: 1;color:rgb(234 236 240 / var(--tw-text-opacity, 1))}.disabled\:hfl-opacity-50:disabled{opacity:.5}@media (min-width: 360px){@media not all and (min-width: 1024px){.xxxs\:max-sm\:hfl-text-\[10px\]{font-size:10px}}}@media (min-width: 768px){.xs\:hfl-ml-8{margin-left:2em}.xs\:hfl-px-8{padding-left:2em;padding-right:2em}.xs\:hfl-py-2{padding-top:.5em;padding-bottom:.5em}}@media (min-width: 820px){.xsm\:hfl-mx-6{margin-left:1.5em;margin-right:1.5em}}@media (min-width: 1024px){.sm\:hfl-ml-12{margin-left:3em}.sm\:hfl-px-16{padding-left:4em;padding-right:4em}.sm\:hfl-py-4{padding-top:1em;padding-bottom:1em}}.shimmer-effect{width:100%;height:100%;background:linear-gradient(90deg,#f0f0f0 25%,#e0e0e0,#f0f0f0 75%);background-size:200% 100%;animation:shimmer 1s infinite linear}@keyframes shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}