lawgic-dev-kit 0.14.6 → 0.15.0
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.
- package/dist/components/atoms/LoadingProgress/LoadingProgress.d.ts +12 -0
- package/dist/components/atoms/LoadingProgress/LoadingProgress.js +71 -0
- package/dist/components/atoms/LoadingProgress/index.d.ts +1 -0
- package/dist/components/atoms/UploadContainer/UploadContainer.js +79 -51
- package/dist/components/atoms/UploadContainer/UploadContainer.types.d.ts +2 -0
- package/dist/components/atoms/index.d.ts +1 -0
- package/dist/index.js +65 -63
- package/dist/lawgic-dev-kit.css +1 -1
- package/dist/lawgic-dev-kit.umd.js +40 -40
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface LoadingProgressProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
size?: number;
|
|
4
|
+
strokeWidth?: number;
|
|
5
|
+
color?: string;
|
|
6
|
+
duration?: number;
|
|
7
|
+
label?: string;
|
|
8
|
+
initialProgress?: number;
|
|
9
|
+
automaticProgress?: boolean;
|
|
10
|
+
}
|
|
11
|
+
declare const LoadingProgress: React.FC<LoadingProgressProps>;
|
|
12
|
+
export default LoadingProgress;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { j as s } from "../../../_virtual/jsx-runtime.js";
|
|
2
|
+
import { useState as E, useEffect as P } from "react";
|
|
3
|
+
const k = ({
|
|
4
|
+
size: e = 100,
|
|
5
|
+
strokeWidth: r = 4,
|
|
6
|
+
color: c = "#1DA696",
|
|
7
|
+
duration: o = 3e3,
|
|
8
|
+
label: i = "",
|
|
9
|
+
initialProgress: h = 0,
|
|
10
|
+
automaticProgress: l = !0,
|
|
11
|
+
...j
|
|
12
|
+
}) => {
|
|
13
|
+
const [m, g] = E(h), a = (e - r) / 2, f = 2 * Math.PI * a, p = f * (1 - m / 100), { className: y = "", ...N } = j;
|
|
14
|
+
return P(() => {
|
|
15
|
+
if (!l) return;
|
|
16
|
+
let n, t;
|
|
17
|
+
const x = (d) => {
|
|
18
|
+
n || (n = d);
|
|
19
|
+
const v = d - n, u = Math.min(100, v / o * 100);
|
|
20
|
+
g(u), u < 100 && (t = requestAnimationFrame(x));
|
|
21
|
+
};
|
|
22
|
+
return t = requestAnimationFrame(x), () => {
|
|
23
|
+
t && cancelAnimationFrame(t);
|
|
24
|
+
};
|
|
25
|
+
}, [o, l]), /* @__PURE__ */ s.jsxs("div", { ...N, className: `relative flex items-center justify-center ${y}`, children: [
|
|
26
|
+
/* @__PURE__ */ s.jsxs("svg", { height: e, width: e, className: "transform -rotate-90", children: [
|
|
27
|
+
/* @__PURE__ */ s.jsx(
|
|
28
|
+
"circle",
|
|
29
|
+
{
|
|
30
|
+
stroke: "#E5E7EB",
|
|
31
|
+
fill: "transparent",
|
|
32
|
+
strokeWidth: r,
|
|
33
|
+
r: a,
|
|
34
|
+
cx: e / 2,
|
|
35
|
+
cy: e / 2
|
|
36
|
+
}
|
|
37
|
+
),
|
|
38
|
+
/* @__PURE__ */ s.jsx(
|
|
39
|
+
"circle",
|
|
40
|
+
{
|
|
41
|
+
stroke: c,
|
|
42
|
+
fill: "transparent",
|
|
43
|
+
strokeWidth: r,
|
|
44
|
+
strokeDasharray: f,
|
|
45
|
+
strokeDashoffset: p,
|
|
46
|
+
strokeLinecap: "round",
|
|
47
|
+
r: a,
|
|
48
|
+
cx: e / 2,
|
|
49
|
+
cy: e / 2
|
|
50
|
+
}
|
|
51
|
+
)
|
|
52
|
+
] }),
|
|
53
|
+
/* @__PURE__ */ s.jsxs("div", { className: "absolute flex flex-col items-center justify-center", children: [
|
|
54
|
+
i && /* @__PURE__ */ s.jsx("div", { className: "text-xs font-medium text-gray-500", children: i }),
|
|
55
|
+
/* @__PURE__ */ s.jsxs(
|
|
56
|
+
"div",
|
|
57
|
+
{
|
|
58
|
+
className: "text-lg font-semibold",
|
|
59
|
+
style: { color: c },
|
|
60
|
+
children: [
|
|
61
|
+
Math.round(m),
|
|
62
|
+
"%"
|
|
63
|
+
]
|
|
64
|
+
}
|
|
65
|
+
)
|
|
66
|
+
] })
|
|
67
|
+
] });
|
|
68
|
+
};
|
|
69
|
+
export {
|
|
70
|
+
k as default
|
|
71
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LoadingProgress } from './LoadingProgress';
|
|
@@ -1,21 +1,22 @@
|
|
|
1
1
|
import { j as t } from "../../../_virtual/jsx-runtime.js";
|
|
2
|
-
import { useState as
|
|
3
|
-
import
|
|
4
|
-
import { useTheme as B } from "../../../hooks/useTheme.js";
|
|
5
|
-
import { translateBytes as F } from "../../../utils/files.js";
|
|
2
|
+
import { useState as D, useRef as L } from "react";
|
|
3
|
+
import { translateBytes as P } from "../../../utils/files.js";
|
|
6
4
|
import "../../../_virtual/lodash.js";
|
|
7
5
|
import "../../../node_modules/@fortawesome/react-fontawesome/index.es.js";
|
|
6
|
+
import { useTheme as $ } from "../../../hooks/useTheme.js";
|
|
8
7
|
import "react-hook-form";
|
|
9
8
|
import "../../../constants/countries.js";
|
|
10
9
|
import "../ImageProfileInput/ImageProfileInput.validators.js";
|
|
10
|
+
import F from "../TextButton/TextButton.js";
|
|
11
|
+
import T from "../LoadingProgress/LoadingProgress.js";
|
|
11
12
|
import "../../molecules/InformationContainer/InformationContainer.js";
|
|
12
|
-
const
|
|
13
|
-
title:
|
|
14
|
-
subtitle:
|
|
15
|
-
buttonTitle:
|
|
16
|
-
onUpload:
|
|
13
|
+
const J = ({
|
|
14
|
+
title: y = "drag_and_drop_your_files_here",
|
|
15
|
+
subtitle: p = null,
|
|
16
|
+
buttonTitle: N = "choose_files",
|
|
17
|
+
onUpload: E = () => {
|
|
17
18
|
},
|
|
18
|
-
acceptedExtensions:
|
|
19
|
+
acceptedExtensions: n = [
|
|
19
20
|
"pdf",
|
|
20
21
|
"png",
|
|
21
22
|
"jpg",
|
|
@@ -26,55 +27,82 @@ const z = ({
|
|
|
26
27
|
"xls",
|
|
27
28
|
"xlsx"
|
|
28
29
|
],
|
|
29
|
-
maxSize:
|
|
30
|
+
maxSize: l = 1024,
|
|
30
31
|
// en KB
|
|
32
|
+
loading: C = !1,
|
|
33
|
+
loadingDuration: k = 1e4
|
|
31
34
|
}) => {
|
|
32
|
-
const { t:
|
|
35
|
+
const { t: a } = $(), [m, o] = D(!1), [u, i] = D(""), c = L(null), w = n.map((e) => `.${e}`).join(","), f = (e) => {
|
|
33
36
|
const r = [];
|
|
34
|
-
let
|
|
37
|
+
let d = !1;
|
|
35
38
|
Array.from(e).forEach((s) => {
|
|
36
|
-
var
|
|
37
|
-
const
|
|
38
|
-
if (!
|
|
39
|
+
var b;
|
|
40
|
+
const B = ((b = s.name.split(".").pop()) == null ? void 0 : b.toLowerCase()) || "";
|
|
41
|
+
if (!n.includes(B)) {
|
|
39
42
|
i(
|
|
40
43
|
`El archivo ${s.name} tiene una extensión no permitida.`
|
|
41
|
-
),
|
|
44
|
+
), d = !0;
|
|
42
45
|
return;
|
|
43
46
|
}
|
|
44
|
-
if (s.size >
|
|
47
|
+
if (s.size > l * 1024) {
|
|
45
48
|
i(
|
|
46
|
-
`El archivo ${s.name} excede el tamaño máximo de ${
|
|
47
|
-
),
|
|
49
|
+
`El archivo ${s.name} excede el tamaño máximo de ${l}KB.`
|
|
50
|
+
), d = !0;
|
|
48
51
|
return;
|
|
49
52
|
}
|
|
50
53
|
r.push(s);
|
|
51
|
-
}), !
|
|
52
|
-
},
|
|
54
|
+
}), !d && r.length > 0 && (i(""), E(r));
|
|
55
|
+
}, x = () => {
|
|
53
56
|
c.current && c.current.click();
|
|
54
|
-
},
|
|
57
|
+
}, _ = (e) => {
|
|
55
58
|
const r = e.target.files;
|
|
56
|
-
r && r.length > 0 &&
|
|
57
|
-
},
|
|
58
|
-
e.preventDefault(), e.stopPropagation(),
|
|
59
|
-
},
|
|
60
|
-
e.preventDefault(), e.stopPropagation(),
|
|
61
|
-
},
|
|
62
|
-
e.preventDefault(), e.stopPropagation(), m ||
|
|
63
|
-
},
|
|
64
|
-
e.preventDefault(), e.stopPropagation(),
|
|
59
|
+
r && r.length > 0 && f(r), e.target.value = "";
|
|
60
|
+
}, g = (e) => {
|
|
61
|
+
e.preventDefault(), e.stopPropagation(), o(!0);
|
|
62
|
+
}, h = (e) => {
|
|
63
|
+
e.preventDefault(), e.stopPropagation(), o(!1);
|
|
64
|
+
}, v = (e) => {
|
|
65
|
+
e.preventDefault(), e.stopPropagation(), m || o(!0);
|
|
66
|
+
}, j = (e) => {
|
|
67
|
+
e.preventDefault(), e.stopPropagation(), o(!1);
|
|
65
68
|
const r = e.dataTransfer.files;
|
|
66
|
-
r.length > 0 &&
|
|
69
|
+
r.length > 0 && f(r);
|
|
67
70
|
};
|
|
68
|
-
return /* @__PURE__ */ t.
|
|
69
|
-
|
|
71
|
+
return C ? /* @__PURE__ */ t.jsx("div", { className: "w-full mx-auto font-sans", children: /* @__PURE__ */ t.jsx("div", { className: "bg-blue-50 p-16 rounded-2xl", children: /* @__PURE__ */ t.jsxs(
|
|
72
|
+
"div",
|
|
73
|
+
{
|
|
74
|
+
className: "flex items-center justify-center gap-16 border-[1.4px] border-dashed rounded-2xl pt-28 p-32 text-center transition-all duration-300 border-blue-100 select-none",
|
|
75
|
+
onDragEnter: g,
|
|
76
|
+
onDragLeave: h,
|
|
77
|
+
onDragOver: v,
|
|
78
|
+
onDrop: j,
|
|
79
|
+
onClick: x,
|
|
80
|
+
children: [
|
|
81
|
+
/* @__PURE__ */ t.jsx(
|
|
82
|
+
T,
|
|
83
|
+
{
|
|
84
|
+
size: 75,
|
|
85
|
+
duration: k,
|
|
86
|
+
strokeWidth: 6,
|
|
87
|
+
color: "#4570EB"
|
|
88
|
+
}
|
|
89
|
+
),
|
|
90
|
+
/* @__PURE__ */ t.jsxs("h4", { className: "text-body-s text-gray-400", children: [
|
|
91
|
+
a("loading"),
|
|
92
|
+
"..."
|
|
93
|
+
] })
|
|
94
|
+
]
|
|
95
|
+
}
|
|
96
|
+
) }) }) : /* @__PURE__ */ t.jsxs("div", { className: "w-full mx-auto font-sans", children: [
|
|
97
|
+
/* @__PURE__ */ t.jsx("div", { className: "bg-blue-50 p-16 rounded-2xl", children: /* @__PURE__ */ t.jsxs(
|
|
70
98
|
"div",
|
|
71
99
|
{
|
|
72
|
-
className: `flex flex-col border-[1.4px] border-dashed rounded-2xl pt-28 p-32 text-center cursor-pointer transition-all duration-300 ${m ? "border-blue-400 bg-blue-100/50" : "border-
|
|
73
|
-
onDragEnter:
|
|
74
|
-
onDragLeave:
|
|
75
|
-
onDragOver:
|
|
76
|
-
onDrop:
|
|
77
|
-
onClick:
|
|
100
|
+
className: `flex flex-col border-[1.4px] border-dashed rounded-2xl pt-28 p-32 text-center cursor-pointer transition-all duration-300 ${m ? "border-blue-400 bg-blue-100/50" : "border-blue-100 hover:border-blue-400"}`,
|
|
101
|
+
onDragEnter: g,
|
|
102
|
+
onDragLeave: h,
|
|
103
|
+
onDragOver: v,
|
|
104
|
+
onDrop: j,
|
|
105
|
+
onClick: x,
|
|
78
106
|
children: [
|
|
79
107
|
/* @__PURE__ */ t.jsx("div", { className: "flex justify-center translate-y-4", children: /* @__PURE__ */ t.jsx(
|
|
80
108
|
"img",
|
|
@@ -85,9 +113,9 @@ const z = ({
|
|
|
85
113
|
}
|
|
86
114
|
) }),
|
|
87
115
|
/* @__PURE__ */ t.jsxs("div", { className: "flex flex-col items-center", children: [
|
|
88
|
-
/* @__PURE__ */ t.jsx("h3", { className: "font-600 text-xl text-dark", children:
|
|
89
|
-
|
|
90
|
-
/* @__PURE__ */ t.jsx(
|
|
116
|
+
/* @__PURE__ */ t.jsx("h3", { className: "font-600 text-xl text-dark", children: a(y) }),
|
|
117
|
+
p && /* @__PURE__ */ t.jsx("p", { className: "font-400 text-lg text-gray-500", children: a(p) }),
|
|
118
|
+
/* @__PURE__ */ t.jsx(F, { color: "blue", children: a(N) }),
|
|
91
119
|
/* @__PURE__ */ t.jsx(
|
|
92
120
|
"input",
|
|
93
121
|
{
|
|
@@ -95,23 +123,23 @@ const z = ({
|
|
|
95
123
|
ref: c,
|
|
96
124
|
className: "hidden",
|
|
97
125
|
multiple: !0,
|
|
98
|
-
accept:
|
|
99
|
-
onChange:
|
|
126
|
+
accept: w,
|
|
127
|
+
onChange: _
|
|
100
128
|
}
|
|
101
129
|
)
|
|
102
130
|
] })
|
|
103
131
|
]
|
|
104
132
|
}
|
|
105
|
-
),
|
|
106
|
-
|
|
133
|
+
) }),
|
|
134
|
+
u && /* @__PURE__ */ t.jsx("div", { className: "mt-3 text-sm text-red-500", children: u }),
|
|
107
135
|
/* @__PURE__ */ t.jsx("div", { className: "mt-10 w-full flex justify-center", children: /* @__PURE__ */ t.jsxs("span", { className: "text-gray-500 font-400 text-base", children: [
|
|
108
|
-
|
|
136
|
+
n.join(", ").toUpperCase(),
|
|
109
137
|
" formats. Maximus size:",
|
|
110
138
|
" ",
|
|
111
|
-
|
|
139
|
+
P(l, "mb")
|
|
112
140
|
] }) })
|
|
113
141
|
] });
|
|
114
142
|
};
|
|
115
143
|
export {
|
|
116
|
-
|
|
144
|
+
J as default
|
|
117
145
|
};
|
package/dist/index.js
CHANGED
|
@@ -7,12 +7,12 @@ import { default as x } from "./components/atoms/Button/Button.js";
|
|
|
7
7
|
import { default as i } from "./components/atoms/CenterModal/CenterModal.js";
|
|
8
8
|
import { default as I } from "./components/atoms/Checkbox/Checkbox.js";
|
|
9
9
|
import { default as C } from "./components/atoms/CountryInput/CountryInput.js";
|
|
10
|
-
import { default as
|
|
10
|
+
import { default as S } from "./components/atoms/CountryLabel/CountryLabel.js";
|
|
11
11
|
import { default as h } from "./components/atoms/CountrySelectInput/CountryDropdown.js";
|
|
12
12
|
import { default as D } from "./components/atoms/Divider/Divider.js";
|
|
13
|
-
import { default as
|
|
14
|
-
import { default as
|
|
15
|
-
import { default as
|
|
13
|
+
import { default as P } from "./components/atoms/IconButton/IconButton.js";
|
|
14
|
+
import { default as L } from "./components/atoms/ImageProfileInput/ImageProfileInput.js";
|
|
15
|
+
import { default as w } from "./components/atoms/ImageProfileInput/ImageProfileInput.validators.js";
|
|
16
16
|
import { default as v } from "./components/atoms/IndexedStep/IndexedStep.js";
|
|
17
17
|
import { default as z } from "./components/atoms/InfoCard/InfoCard.js";
|
|
18
18
|
import { default as O } from "./components/atoms/InformationDisclaimer/InformationDisclaimer.js";
|
|
@@ -33,95 +33,97 @@ import { default as uo } from "./components/atoms/UncontrolledSelector/Uncontrol
|
|
|
33
33
|
import { default as no } from "./components/atoms/UncontrolledTextInput/UncontrolledTextInput.js";
|
|
34
34
|
import { default as co } from "./components/atoms/UploadContainer/UploadContainer.js";
|
|
35
35
|
import { default as To } from "./components/atoms/Tooltip/Tooltip.js";
|
|
36
|
-
import { default as
|
|
37
|
-
import { default as Bo } from "./components/molecules/
|
|
38
|
-
import { default as Mo } from "./components/molecules/
|
|
39
|
-
import { default as yo } from "./components/molecules/
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as Fo } from "./components/molecules/
|
|
44
|
-
import { default as ko } from "./components/molecules/
|
|
45
|
-
import { default as Vo } from "./components/molecules/
|
|
46
|
-
import { default as qo } from "./components/molecules/
|
|
47
|
-
import { default as Go } from "./components/molecules/
|
|
48
|
-
import { default as Jo } from "./components/molecules/
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
36
|
+
import { default as go } from "./components/atoms/LoadingProgress/LoadingProgress.js";
|
|
37
|
+
import { default as Bo } from "./components/molecules/AlertModal/AlertModal.js";
|
|
38
|
+
import { default as Mo } from "./components/molecules/CalendarSelector/CalendarSelector.js";
|
|
39
|
+
import { default as yo } from "./components/molecules/DateInput/DateInput.js";
|
|
40
|
+
import { default as bo } from "./components/molecules/DialogModal/DialogModal.js";
|
|
41
|
+
import { default as Uo } from "./components/molecules/Dropdown/Dropdown.js";
|
|
42
|
+
import { default as Ao } from "./components/molecules/FileUpload/FileUpload.js";
|
|
43
|
+
import { default as Fo } from "./components/molecules/FloatingMenu/FloatingMenu.js";
|
|
44
|
+
import { default as ko } from "./components/molecules/IndexedStepper/IndexedStepper.js";
|
|
45
|
+
import { default as Vo } from "./components/molecules/InformationContainer/InformationContainer.js";
|
|
46
|
+
import { default as qo } from "./components/molecules/SearchModal/SearchModal.js";
|
|
47
|
+
import { default as Go } from "./components/molecules/Stepper/Stepper.js";
|
|
48
|
+
import { default as Jo } from "./components/molecules/Tabs/Tabs.js";
|
|
49
|
+
import { default as No } from "./components/molecules/UncontrolledDateInput/UncontrolledDateInput.js";
|
|
50
|
+
import { Organism as Ro } from "./components/organisms/index.js";
|
|
51
|
+
import { formatLocalizedDate as Xo } from "./utils/dates.js";
|
|
52
|
+
import { toBase64 as Zo, translateBytes as _o } from "./utils/files.js";
|
|
53
|
+
import { getImageUrl as ot } from "./utils/images.js";
|
|
54
|
+
import { ModalContainer as et, closeModal as rt, openCustomModal as at, openModal as ft } from "./utils/modal.js";
|
|
55
|
+
import { renderTabContent as lt } from "./utils/renderContentOptions.js";
|
|
56
|
+
import { capitalizeFirstLetter as mt, stringToColor as st } from "./utils/strings.js";
|
|
57
|
+
import { showToastAsync as xt, showToastLoading as nt, toast as it } from "./utils/toast.js";
|
|
58
|
+
import { ThemeProvider as It } from "./providers/ThemeProvider.js";
|
|
59
|
+
import { useTheme as Ct } from "./hooks/useTheme.js";
|
|
59
60
|
import "./contexts/themeContext.js";
|
|
60
|
-
import { defaultTheme as
|
|
61
|
+
import { defaultTheme as St } from "./themes/default.js";
|
|
61
62
|
export {
|
|
62
63
|
a as ActionButton,
|
|
63
|
-
|
|
64
|
+
Bo as AlertModal,
|
|
64
65
|
p as AsyncToast,
|
|
65
66
|
d as Avatar,
|
|
66
67
|
s as BoxContainer,
|
|
67
68
|
x as Button,
|
|
68
|
-
|
|
69
|
+
Mo as CalendarSelector,
|
|
69
70
|
i as CenterModal,
|
|
70
71
|
I as Checkbox,
|
|
71
72
|
h as CountryDropdown,
|
|
72
73
|
C as CountryInput,
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
S as CountryLabel,
|
|
75
|
+
yo as DateInput,
|
|
76
|
+
bo as DialogModal,
|
|
76
77
|
D as Divider,
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
78
|
+
Uo as Dropdown,
|
|
79
|
+
Ao as FileUpload,
|
|
80
|
+
Fo as FloatingMenu,
|
|
81
|
+
P as IconButton,
|
|
82
|
+
L as ImageProfileInput,
|
|
82
83
|
v as IndexedStep,
|
|
83
|
-
|
|
84
|
+
ko as IndexedStepper,
|
|
84
85
|
z as InfoCard,
|
|
85
|
-
|
|
86
|
+
Vo as InformationContainer,
|
|
86
87
|
O as InformationDisclaimer,
|
|
88
|
+
go as LoadingProgress,
|
|
87
89
|
j as LoadingSpinner,
|
|
88
|
-
|
|
89
|
-
|
|
90
|
+
et as ModalContainer,
|
|
91
|
+
Ro as Organism,
|
|
90
92
|
E as PasswordInput,
|
|
91
93
|
H as PhoneInput,
|
|
92
94
|
K as ProgressBar,
|
|
93
95
|
Q as SearchBar,
|
|
94
|
-
|
|
96
|
+
qo as SearchModal,
|
|
95
97
|
W as SectionButton,
|
|
96
98
|
Y as SelectInput,
|
|
97
99
|
_ as SidebarButton,
|
|
98
|
-
|
|
100
|
+
Go as Stepper,
|
|
99
101
|
oo as Tab,
|
|
100
|
-
|
|
102
|
+
Jo as Tabs,
|
|
101
103
|
eo as TextButton,
|
|
102
104
|
ao as TextInput,
|
|
103
105
|
po as TextStaticInput,
|
|
104
|
-
|
|
106
|
+
It as ThemeProvider,
|
|
105
107
|
mo as Toast,
|
|
106
108
|
To as Tooltip,
|
|
107
|
-
|
|
109
|
+
No as UncontrolledDateInput,
|
|
108
110
|
uo as UncontrolledSelector,
|
|
109
111
|
no as UncontrolledTextInput,
|
|
110
112
|
co as UploadContainer,
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
113
|
+
mt as capitalizeFirstLetter,
|
|
114
|
+
rt as closeModal,
|
|
115
|
+
St as defaultTheme,
|
|
116
|
+
Xo as formatLocalizedDate,
|
|
117
|
+
ot as getImageUrl,
|
|
118
|
+
at as openCustomModal,
|
|
119
|
+
ft as openModal,
|
|
120
|
+
lt as renderTabContent,
|
|
121
|
+
xt as showToastAsync,
|
|
122
|
+
nt as showToastLoading,
|
|
123
|
+
st as stringToColor,
|
|
124
|
+
Zo as toBase64,
|
|
125
|
+
it as toast,
|
|
126
|
+
_o as translateBytes,
|
|
127
|
+
Ct as useTheme,
|
|
128
|
+
w as yupImageProfileValidator
|
|
127
129
|
};
|
package/dist/lawgic-dev-kit.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-50:oklch(.971 .013 17.38);--color-yellow-50:oklch(.987 .026 102.212);--color-yellow-500:oklch(.795 .184 86.047);--color-green-50:oklch(.982 .018 155.826);--color-green-100:oklch(.962 .044 156.743);--color-green-800:oklch(.448 .119 151.328);--color-blue-900:oklch(.379 .146 265.522);--color-purple-500:oklch(.627 .265 303.9);--color-gray-50:oklch(.985 .002 247.839);--color-gray-900:oklch(.21 .034 264.665);--color-black:#000;--tracking-wider:.05em;--leading-normal:1.5;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-feature-settings:initial;font-variation-settings:initial;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}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;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-feature-settings:initial;font-variation-settings:initial;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:color-mix(in oklab,currentColor 50%,transparent)}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*,:after,:before,::backdrop{border-color:var(--color-gray-200,currentColor)}::file-selector-button{border-color:var(--color-gray-200,currentColor)}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.invisible{visibility:hidden}.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{top:0;right:0;bottom:0;left:0}.-top-14{top:-1.4rem}.top-0{top:0}.top-4{top:.4rem}.top-8{top:.8rem}.right-0{right:0}.right-4{right:.4rem}.right-8{right:.8rem}.bottom-0{bottom:0}.bottom-8{bottom:.8rem}.bottom-10{bottom:1rem}.bottom-\[28px\]{bottom:28px}.left-1\/2{left:50%}.left-8{left:.8rem}.left-10{left:1rem}.left-\[13px\]{left:13px}.z-10{z-index:10}.z-20{z-index:20}.z-50{z-index:50}.z-9999{z-index:9999}.col-span-1{grid-column:span 1/span 1}.col-span-2{grid-column:span 2/span 2}.container{width:100%}@media (width>=40rem){.container{max-width:40rem}}@media (width>=48rem){.container{max-width:48rem}}@media (width>=64rem){.container{max-width:64rem}}@media (width>=80rem){.container{max-width:80rem}}@media (width>=96rem){.container{max-width:96rem}}.mx-16{margin-inline:1.6rem}.mx-auto{margin-inline:auto}.my-8{margin-block:.8rem}.my-128{margin-block:12.8rem}.mt-1{margin-top:.1rem}.mt-2{margin-top:.2rem}.mt-3{margin-top:.3rem}.mt-4{margin-top:.4rem}.mt-6{margin-top:.6rem}.mt-8{margin-top:.8rem}.mt-10{margin-top:1rem}.mt-16{margin-top:1.6rem}.mt-\[0\.5rem\]{margin-top:.5rem}.mr-2{margin-right:.2rem}.mb-2{margin-bottom:.2rem}.mb-4{margin-bottom:.4rem}.mb-6{margin-bottom:.6rem}.mb-8{margin-bottom:.8rem}.mb-16{margin-bottom:1.6rem}.ml-8{margin-left:.8rem}.ml-auto{margin-left:auto}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.size-12{width:1.2rem;height:1.2rem}.size-16{width:1.6rem;height:1.6rem}.size-24{width:2.4rem;height:2.4rem}.size-\[40px\]{width:40px;height:40px}.\!h-auto{height:auto!important}.h-0{height:0}.h-1{height:.1rem}.h-2{height:.2rem}.h-3{height:.3rem}.h-4{height:.4rem}.h-8{height:.8rem}.h-12{height:1.2rem}.h-14{height:1.4rem}.h-16{height:1.6rem}.h-20{height:2rem}.h-32{height:3.2rem}.h-36{height:3.6rem}.h-40{height:4rem}.h-76{height:7.6rem}.h-\[40px\]{height:40px}.h-\[87px\]{height:87px}.h-\[400px\]{height:400px}.h-\[600px\]{height:600px}.h-auto{height:auto}.h-fit{height:fit-content}.h-full{height:100%}.h-screen{height:100vh}.max-h-1{max-height:.1rem}.max-h-12{max-height:1.2rem}.max-h-16{max-height:1.6rem}.max-h-200{max-height:20rem}.max-h-\[12px\]{max-height:12px}.max-h-\[15px\]{max-height:15px}.max-h-\[20px\]{max-height:20px}.max-h-\[28px\]{max-height:28px}.max-h-\[40px\]{max-height:40px}.max-h-\[46px\]{max-height:46px}.max-h-\[150px\]{max-height:150px}.min-h-1{min-height:.1rem}.min-h-12{min-height:1.2rem}.min-h-14{min-height:1.4rem}.min-h-16{min-height:1.6rem}.min-h-20{min-height:2rem}.min-h-24{min-height:2.4rem}.min-h-28{min-height:2.8rem}.min-h-36{min-height:3.6rem}.min-h-\[12px\]{min-height:12px}.min-h-\[15px\]{min-height:15px}.min-h-\[20px\]{min-height:20px}.min-h-\[28px\]{min-height:28px}.min-h-\[40px\]{min-height:40px}.min-h-\[46px\]{min-height:46px}.min-h-screen{min-height:100vh}.\!w-full{width:100%!important}.w-0{width:0}.w-1\/2{width:50%}.w-1\/3{width:33.3333%}.w-2{width:.2rem}.w-3{width:.3rem}.w-4{width:.4rem}.w-12{width:1.2rem}.w-14{width:1.4rem}.w-16{width:1.6rem}.w-20{width:2rem}.w-32{width:3.2rem}.w-40{width:4rem}.w-64{width:6.4rem}.w-72{width:7.2rem}.w-76{width:7.6rem}.w-80{width:8rem}.w-\[0px\]{width:0}.w-\[1\.5px\]{width:1.5px}.w-\[40px\]{width:40px}.w-\[180px\]{width:180px}.w-\[200px\]{width:200px}.w-\[300px\]{width:300px}.w-\[320px\]{width:320px}.w-\[500px\]{width:500px}.w-\[600px\]{width:600px}.w-\[800px\]{width:800px}.w-fit{width:fit-content}.w-full{width:100%}.max-w-1{max-width:.1rem}.max-w-2xl{max-width:65.6rem}.max-w-4xl{max-width:89.6rem}.max-w-12{max-width:1.2rem}.max-w-16{max-width:1.6rem}.max-w-120{max-width:12rem}.max-w-160{max-width:16rem}.max-w-\[12px\]{max-width:12px}.max-w-\[16px\]{max-width:16px}.max-w-\[28px\]{max-width:28px}.max-w-\[40px\]{max-width:40px}.max-w-\[46px\]{max-width:46px}.max-w-\[300px\]{max-width:300px}.max-w-lg{max-width:80rem}.max-w-md{max-width:64rem}.max-w-sm{max-width:48rem}.min-w-1{min-width:.1rem}.min-w-12{min-width:1.2rem}.min-w-14{min-width:1.4rem}.min-w-20{min-width:2rem}.min-w-24{min-width:2.4rem}.min-w-28{min-width:2.8rem}.min-w-36{min-width:3.6rem}.min-w-\[12px\]{min-width:12px}.min-w-\[16px\]{min-width:16px}.min-w-\[18rem\]{min-width:18rem}.min-w-\[28px\]{min-width:28px}.min-w-\[40px\]{min-width:40px}.min-w-\[46px\]{min-width:46px}.flex-1{flex:1}.flex-grow{flex-grow:1}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-0{--tw-translate-x:0px;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-4{--tw-translate-y:.4rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-45{rotate:45deg}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x)var(--tw-rotate-y)var(--tw-rotate-z)var(--tw-skew-x)var(--tw-skew-y)}.animate-spin{animation:var(--animate-spin)}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.resize{resize:both}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-row\!{flex-direction:row!important}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-evenly{justify-content:space-evenly}.justify-items-center{justify-items:center}.gap-0\.5{gap:.05rem}.gap-2{gap:.2rem}.gap-4{gap:.4rem}.gap-6{gap:.6rem}.gap-8{gap:.8rem}.gap-10{gap:1rem}.gap-12{gap:1.2rem}.gap-16{gap:1.6rem}.gap-20{gap:2rem}.gap-24{gap:2.4rem}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(.2rem*var(--tw-space-y-reverse));margin-block-end:calc(.2rem*calc(1 - var(--tw-space-y-reverse)))}:where(.-space-x-4>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(-.4rem *var(--tw-space-x-reverse));margin-inline-end:calc(-.4rem *calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(.2rem*var(--tw-space-x-reverse));margin-inline-end:calc(.2rem*calc(1 - var(--tw-space-x-reverse)))}.self-end{align-self:flex-end}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-3xl{border-radius:var(--radius-3xl)}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-l-full{border-top-left-radius:3.40282e38px;border-bottom-left-radius:3.40282e38px}.rounded-r-full{border-top-right-radius:3.40282e38px;border-bottom-right-radius:3.40282e38px}.border,.border-1{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-4{border-style:var(--tw-border-style);border-width:4px}.border-\[1\.4px\]{border-style:var(--tw-border-style);border-width:1.4px}.border-\[1\.5px\]{border-style:var(--tw-border-style);border-width:1.5px}.border-\[1px\]{border-style:var(--tw-border-style);border-width:1px}.border-r-0{border-right-style:var(--tw-border-style);border-right-width:0}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-b-\[1\.3px\]{border-bottom-style:var(--tw-border-style);border-bottom-width:1.3px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-none\!{--tw-border-style:none!important;border-style:none!important}.\!border-blue-500{border-color:#4570eb!important}.\!border-red-500{border-color:#eb4571!important}.border-aqua-500{border-color:#1da696}.border-blue-100{border-color:#dae2fb}.border-blue-200{border-color:#b5c6f7}.border-blue-400{border-color:#6a8def}.border-blue-500{border-color:#4570eb}.border-blue-500\!{border-color:#4570eb!important}.border-blue-600{border-color:#375abc}.border-blue-800{border-color:#1c2d5e}.border-gray-100{border-color:#f0f0f2}.border-gray-200{border-color:#c7c8ca}.border-gray-300{border-color:#abacaf}.border-gray-400{border-color:#8f9095}.border-gray-500{border-color:#72747a}.border-green-500{border-color:#16a85b}.border-red-500{border-color:#eb4571}.border-red-500\!{border-color:#eb4571!important}.border-transparent{border-color:#0000}.border-yellow-500{border-color:var(--color-yellow-500)}.border-t-blue-500{border-top-color:#4570eb}.border-r-blue-300{border-right-color:#8fa9f3}.border-b-blue-200{border-bottom-color:#b5c6f7}.border-b-blue-500{border-bottom-color:#4570eb}.border-b-gray-700{border-bottom-color:#3b3d45}.border-l-blue-400{border-left-color:#6a8def}.\!bg-aqua-100{background-color:#d4f5f1!important}.\!bg-blue-100{background-color:#dae2fb!important}.\!bg-gray-100{background-color:#f0f0f2!important}.\!bg-transparent{background-color:#0000!important}.bg-\[rgb\(243\,244\,246\)\]{background-color:#f3f4f6}.bg-aqua-100{background-color:#d4f5f1}.bg-aqua-500{background-color:#1da696}.bg-black{background-color:var(--color-black)}.bg-black\/50{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}.bg-blue-50{background-color:#f9fafe}.bg-blue-100{background-color:#dae2fb}.bg-blue-100\/50{background-color:#dae2fb80}.bg-blue-400{background-color:#6a8def}.bg-blue-500{background-color:#4570eb}.bg-blue-600{background-color:#375abc}.bg-blue-800{background-color:#1c2d5e}.bg-blue-900{background-color:var(--color-blue-900)}.bg-gray-50{background-color:var(--color-gray-50)}.bg-gray-50\/50{background-color:color-mix(in oklab,var(--color-gray-50)50%,transparent)}.bg-gray-100{background-color:#f0f0f2}.bg-gray-100\!{background-color:#f0f0f2!important}.bg-gray-200{background-color:#c7c8ca}.bg-gray-500{background-color:#72747a}.bg-green-50{background-color:var(--color-green-50)}.bg-green-100{background-color:var(--color-green-100)}.bg-green-500{background-color:#16a85b}.bg-light{background-color:#f9fbff}.bg-purple-500{background-color:var(--color-purple-500)}.bg-red-50{background-color:var(--color-red-50)}.bg-red-500{background-color:#eb4571}.bg-red-500\/20{background-color:#eb457133}.bg-transparent{background-color:#0000}.bg-white{background-color:#fff}.bg-yellow-50{background-color:var(--color-yellow-50)}.bg-yellow-500{background-color:var(--color-yellow-500)}.bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-aqua-500{--tw-gradient-from:#1da696;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-blue-500{--tw-gradient-from:#4570eb;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-\[rgb\(243\,244\,246\)\]{--tw-gradient-to:#f3f4f6;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.\!p-0,.p-0\!{padding:0!important}.p-2{padding:.2rem}.p-3{padding:.3rem}.p-4{padding:.4rem}.p-6{padding:.6rem}.p-8{padding:.8rem}.p-12{padding:1.2rem}.p-16{padding:1.6rem}.p-20{padding:2rem}.p-24{padding:2.4rem}.p-32{padding:3.2rem}.p-40{padding:4rem}.px-2{padding-inline:.2rem}.px-3{padding-inline:.3rem}.px-4{padding-inline:.4rem}.px-6{padding-inline:.6rem}.px-10{padding-inline:1rem}.px-12{padding-inline:1.2rem}.px-14{padding-inline:1.4rem}.px-16{padding-inline:1.6rem}.px-20{padding-inline:2rem}.px-24{padding-inline:2.4rem}.px-32{padding-inline:3.2rem}.px-\[12\.3px\]{padding-inline:12.3px}.py-1{padding-block:.1rem}.py-2{padding-block:.2rem}.py-3{padding-block:.3rem}.py-4{padding-block:.4rem}.py-5{padding-block:.5rem}.py-6{padding-block:.6rem}.py-7{padding-block:.7rem}.py-8{padding-block:.8rem}.py-10{padding-block:1rem}.py-10\!{padding-block:1rem!important}.py-16{padding-block:1.6rem}.py-24{padding-block:2.4rem}.pt-0{padding-top:0}.pt-16{padding-top:1.6rem}.pt-28{padding-top:2.8rem}.pr-\[10px\]{padding-right:10px}.pb-0\!{padding-bottom:0!important}.pb-16{padding-bottom:1.6rem}.text-center{text-align:center}.text-start{text-align:start}.indent-\[10000px\]{text-indent:10000px}.align-middle{vertical-align:middle}.font-mono{font-family:var(--font-mono)}.font-sans{font-family:var(--font-sans)}.text-header-1{font-size:2.8rem;font-weight:700;line-height:100%}@media (width>=48rem){.text-header-1{font-size:4rem}}.text-header-4{font-size:1.6rem;font-weight:700;line-height:100%}@media (width>=48rem){.text-header-4{font-size:1.8rem}}.text-2xl{font-size:2rem}.text-3xl{font-size:2.4rem}.text-base{font-size:1.4rem}.text-body-m{font-size:1.6rem}.text-body-s{font-size:1.4rem}.text-header-1{font-size:2.8rem}.text-header-4{font-size:1.6rem}.text-label{font-size:1.2rem}.text-lg{font-size:1.6rem}.text-lg\!{font-size:1.6rem!important}.text-md{font-size:1.3rem}.text-sm{font-size:1.2rem}.text-xl{font-size:1.8rem}.text-xs{font-size:1rem}.leading-none{--tw-leading:1;line-height:1}.leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}.body-l,.body-m,.body-s,.label{line-height:100%}.font-400{--tw-font-weight:400;font-weight:400}.font-500{--tw-font-weight:500;font-weight:500}.font-600{--tw-font-weight:600;font-weight:600}.font-700,.font-bold{--tw-font-weight:700;font-weight:700}.font-medium{--tw-font-weight:500;font-weight:500}.font-normal{--tw-font-weight:400;font-weight:400}.font-semibold{--tw-font-weight:600;font-weight:600}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.text-nowrap{text-wrap:nowrap}.\!text-gray-300{color:#abacaf!important}.\!text-red-500{color:#eb4571!important}.text-aqua-500{color:#1da696}.text-black{color:var(--color-black)}.text-blue-100{color:#dae2fb}.text-blue-200{color:#b5c6f7}.text-blue-400{color:#6a8def}.text-blue-500{color:#4570eb}.text-blue-500\!{color:#4570eb!important}.text-blue-600{color:#375abc}.text-blue-800{color:#1c2d5e}.text-error{color:#eb4571}.text-gray-300{color:#abacaf}.text-gray-400{color:#8f9095}.text-gray-500{color:#72747a}.text-gray-600{color:#57595f}.text-gray-700{color:#3b3d45}.text-gray-800{color:#1e212a}.text-gray-900{color:var(--color-gray-900)}.text-green-500{color:#16a85b}.text-green-800{color:var(--color-green-800)}.text-red-500{color:#eb4571}.text-red-500\!{color:#eb4571!important}.text-red-600{color:#b23456}.text-white{color:#fff}.text-yellow-500{color:var(--color-yellow-500)}.capitalize{text-transform:capitalize}.uppercase{text-transform:uppercase}.underline{text-decoration-line:underline}.\!caret-transparent{caret-color:#0000!important}.opacity-0{opacity:0}.opacity-50{opacity:.5}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px 0 var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -2px var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -1px var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.outline-hidden{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.outline-hidden{outline-offset:2px;outline:2px solid #0000}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-100{--tw-duration:.1s;transition-duration:.1s}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-linear{--tw-ease:linear;transition-timing-function:linear}.\!select-none{-webkit-user-select:none!important;user-select:none!important}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.group-focus-within\:border-blue-500:is(:where(.group):focus-within *){border-color:#4570eb}.group-focus-within\:text-blue-500:is(:where(.group):focus-within *){color:#4570eb}@media (hover:hover){.group-hover\:border-blue-300:is(:where(.group):hover *){border-color:#8fa9f3}.group-hover\:bg-aqua-100:is(:where(.group):hover *){background-color:#d4f5f1}.group-hover\:bg-blue-100:is(:where(.group):hover *){background-color:#dae2fb}.group-hover\:text-aqua-500:is(:where(.group):hover *){color:#1da696}.group-hover\:text-blue-300:is(:where(.group):hover *){color:#8fa9f3}.group-hover\:text-blue-500:is(:where(.group):hover *){color:#4570eb}}.group-disabled\:bg-gray-500:is(:where(.group):disabled *){background-color:#72747a}.placeholder\:font-600::placeholder{--tw-font-weight:600;font-weight:600}.placeholder\:text-gray-400::placeholder{color:#8f9095}@media (hover:hover){.hover\:\!cursor-pointer:hover{cursor:pointer!important}.hover\:border-aqua-600:hover{border-color:#167c70}.hover\:border-blue-400:hover{border-color:#6a8def}.hover\:border-blue-500:hover{border-color:#4570eb}.hover\:border-blue-600:hover{border-color:#375abc}.hover\:border-gray-600:hover{border-color:#57595f}.hover\:border-red-600:hover{border-color:#b23456}.hover\:bg-aqua-100:hover{background-color:#d4f5f1}.hover\:bg-aqua-100\/40:hover{background-color:#d4f5f166}.hover\:bg-aqua-100\/80:hover{background-color:#d4f5f1cc}.hover\:bg-aqua-200\/50:hover{background-color:#7de2d680}.hover\:bg-aqua-600:hover{background-color:#167c70}.hover\:bg-blue-100:hover{background-color:#dae2fb}.hover\:bg-blue-100\/40:hover{background-color:#dae2fb66}.hover\:bg-blue-100\/50:hover{background-color:#dae2fb80}.hover\:bg-blue-100\/80:hover{background-color:#dae2fbcc}.hover\:bg-blue-200:hover{background-color:#b5c6f7}.hover\:bg-blue-600:hover{background-color:#375abc}.hover\:bg-gray-50\/50:hover{background-color:color-mix(in oklab,var(--color-gray-50)50%,transparent)}.hover\:bg-gray-100:hover{background-color:#f0f0f2}.hover\:bg-gray-200:hover{background-color:#c7c8ca}.hover\:bg-gray-600:hover{background-color:#57595f}.hover\:bg-red-500\/30:hover{background-color:#eb45714d}.hover\:bg-red-600:hover{background-color:#b23456}.hover\:text-aqua-500:hover{color:#1da696}.hover\:text-aqua-600:hover{color:#167c70}.hover\:text-blue-500:hover{color:#4570eb}.hover\:text-blue-600:hover{color:#375abc}.hover\:text-gray-500:hover{color:#72747a}.hover\:text-gray-600:hover{color:#57595f}.hover\:text-gray-700:hover{color:#3b3d45}.hover\:text-red-600:hover{color:#b23456}.hover\:text-white:hover{color:#fff}.hover\:opacity-80:hover{opacity:.8}}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.active\:border-aqua-700:active{border-color:#0f534b}.active\:border-blue-700:active{border-color:#29438d}.active\:border-gray-700:active{border-color:#3b3d45}.active\:border-red-700:active{border-color:#8f2945}.active\:bg-aqua-100\/20:active{background-color:#d4f5f133}.active\:bg-aqua-100\/50:active{background-color:#d4f5f180}.active\:bg-aqua-200\/70:active{background-color:#7de2d6b3}.active\:bg-aqua-700:active{background-color:#0f534b}.active\:bg-blue-100\/20:active{background-color:#dae2fb33}.active\:bg-blue-100\/50:active{background-color:#dae2fb80}.active\:bg-blue-300\/80:active{background-color:#8fa9f3cc}.active\:bg-blue-700:active{background-color:#29438d}.active\:bg-gray-300:active{background-color:#abacaf}.active\:bg-gray-700:active{background-color:#3b3d45}.active\:bg-red-700:active{background-color:#8f2945}.active\:bg-red-700\/40:active{background-color:#8f294566}.active\:text-aqua-500:active{color:#1da696}.active\:text-aqua-700:active{color:#0f534b}.active\:text-blue-500:active{color:#4570eb}.active\:text-blue-700:active{color:#29438d}.active\:text-gray-700:active{color:#3b3d45}.active\:text-red-700:active{color:#8f2945}.active\:text-white:active{color:#fff}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-gray-100:disabled{background-color:#f0f0f2}.disabled\:text-gray-300:disabled{color:#abacaf}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:placeholder\:text-gray-300:disabled::placeholder{color:#abacaf}@media (width>=48rem){.md\:gap-24{gap:2.4rem}.md\:p-32{padding:3.2rem}.md\:px-0{padding-inline:0}.md\:pt-0{padding-top:0}.md\:pt-4{padding-top:.4rem}.md\:pb-0{padding-bottom:0}.md\:text-lg{font-size:1.6rem}.md\:text-xl{font-size:1.8rem}}@media (width>=64rem){.lg\:p-20{padding:2rem}}*{text-rendering:optimizeLegibility;-o-text-rendering:optimizeLegibility;-ms-text-rendering:optimizeLegibility;-moz-text-rendering:optimizeLegibility;-webkit-text-rendering:optimizeLegibility;-webkit-tap-highlight-color:transparent}button{cursor:pointer}html{color:#000;background-color:#fff;font-size:62.5%}* :focus{outline:none!important}body.no-animate *,body.no-animate :before,body.no-animate :after{transition:none!important;animation:none!important}button:focus{outline:none}input:-webkit-autofill{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:hover{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:focus{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:active{transitiondelay:9999s;transitionproperty:background-color,color}:focus{outline-color:#0000}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false;initial-value:rotateX(0)}@property --tw-rotate-y{syntax:"*";inherits:false;initial-value:rotateY(0)}@property --tw-rotate-z{syntax:"*";inherits:false;initial-value:rotateZ(0)}@property --tw-skew-x{syntax:"*";inherits:false;initial-value:skewX(0)}@property --tw-skew-y{syntax:"*";inherits:false;initial-value:skewY(0)}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}
|
|
1
|
+
/*! tailwindcss v4.0.17 | MIT License | https://tailwindcss.com */@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-50:oklch(.971 .013 17.38);--color-orange-500:oklch(.705 .213 47.604);--color-yellow-50:oklch(.987 .026 102.212);--color-yellow-500:oklch(.795 .184 86.047);--color-green-50:oklch(.982 .018 155.826);--color-green-100:oklch(.962 .044 156.743);--color-green-800:oklch(.448 .119 151.328);--color-purple-500:oklch(.627 .265 303.9);--color-gray-50:oklch(.985 .002 247.839);--color-gray-900:oklch(.21 .034 264.665);--color-black:#000;--tracking-wider:.05em;--leading-normal:1.5;--radius-md:.375rem;--radius-lg:.5rem;--radius-xl:.75rem;--radius-2xl:1rem;--radius-3xl:1.5rem;--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-spin:spin 1s linear infinite;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-feature-settings:initial;font-variation-settings:initial;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}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;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-feature-settings:initial;font-variation-settings:initial;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:color-mix(in oklab,currentColor 50%,transparent)}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}*,:after,:before,::backdrop{border-color:var(--color-gray-200,currentColor)}::file-selector-button{border-color:var(--color-gray-200,currentColor)}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.invisible{visibility:hidden}.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.sticky{position:sticky}.inset-0{top:0;right:0;bottom:0;left:0}.-top-14{top:-1.4rem}.top-0{top:0}.top-4{top:.4rem}.top-8{top:.8rem}.right-0{right:0}.right-4{right:.4rem}.right-8{right:.8rem}.bottom-0{bottom:0}.bottom-8{bottom:.8rem}.bottom-10{bottom:1rem}.bottom-\[28px\]{bottom:28px}.left-1\/2{left:50%}.left-8{left:.8rem}.left-10{left:1rem}.left-\[13px\]{left:13px}.z-10{z-index:10}.z-20{z-index:20}.z-50{z-index:50}.z-9999{z-index:9999}.col-span-1{grid-column:span 1/span 1}.col-span-2{grid-column:span 2/span 2}.container{width:100%}@media (width>=40rem){.container{max-width:40rem}}@media (width>=48rem){.container{max-width:48rem}}@media (width>=64rem){.container{max-width:64rem}}@media (width>=80rem){.container{max-width:80rem}}@media (width>=96rem){.container{max-width:96rem}}.mx-16{margin-inline:1.6rem}.mx-auto{margin-inline:auto}.my-8{margin-block:.8rem}.my-128{margin-block:12.8rem}.mt-1{margin-top:.1rem}.mt-2{margin-top:.2rem}.mt-3{margin-top:.3rem}.mt-4{margin-top:.4rem}.mt-6{margin-top:.6rem}.mt-8{margin-top:.8rem}.mt-10{margin-top:1rem}.mt-16{margin-top:1.6rem}.mt-\[0\.5rem\]{margin-top:.5rem}.mr-2{margin-right:.2rem}.mb-2{margin-bottom:.2rem}.mb-4{margin-bottom:.4rem}.mb-6{margin-bottom:.6rem}.mb-8{margin-bottom:.8rem}.mb-16{margin-bottom:1.6rem}.ml-8{margin-left:.8rem}.ml-auto{margin-left:auto}.flex{display:flex}.grid{display:grid}.hidden{display:none}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.table{display:table}.size-12{width:1.2rem;height:1.2rem}.size-16{width:1.6rem;height:1.6rem}.size-24{width:2.4rem;height:2.4rem}.size-\[40px\]{width:40px;height:40px}.\!h-auto{height:auto!important}.h-0{height:0}.h-1{height:.1rem}.h-2{height:.2rem}.h-3{height:.3rem}.h-4{height:.4rem}.h-8{height:.8rem}.h-12{height:1.2rem}.h-14{height:1.4rem}.h-16{height:1.6rem}.h-20{height:2rem}.h-32{height:3.2rem}.h-36{height:3.6rem}.h-40{height:4rem}.h-76{height:7.6rem}.h-\[40px\]{height:40px}.h-\[87px\]{height:87px}.h-\[400px\]{height:400px}.h-\[600px\]{height:600px}.h-auto{height:auto}.h-fit{height:fit-content}.h-full{height:100%}.h-screen{height:100vh}.max-h-1{max-height:.1rem}.max-h-12{max-height:1.2rem}.max-h-16{max-height:1.6rem}.max-h-200{max-height:20rem}.max-h-\[12px\]{max-height:12px}.max-h-\[15px\]{max-height:15px}.max-h-\[20px\]{max-height:20px}.max-h-\[28px\]{max-height:28px}.max-h-\[40px\]{max-height:40px}.max-h-\[46px\]{max-height:46px}.max-h-\[150px\]{max-height:150px}.min-h-1{min-height:.1rem}.min-h-12{min-height:1.2rem}.min-h-14{min-height:1.4rem}.min-h-16{min-height:1.6rem}.min-h-20{min-height:2rem}.min-h-24{min-height:2.4rem}.min-h-28{min-height:2.8rem}.min-h-36{min-height:3.6rem}.min-h-\[12px\]{min-height:12px}.min-h-\[15px\]{min-height:15px}.min-h-\[20px\]{min-height:20px}.min-h-\[28px\]{min-height:28px}.min-h-\[40px\]{min-height:40px}.min-h-\[46px\]{min-height:46px}.min-h-screen{min-height:100vh}.\!w-full{width:100%!important}.w-0{width:0}.w-1\/2{width:50%}.w-1\/3{width:33.3333%}.w-2{width:.2rem}.w-3{width:.3rem}.w-4{width:.4rem}.w-12{width:1.2rem}.w-14{width:1.4rem}.w-16{width:1.6rem}.w-20{width:2rem}.w-32{width:3.2rem}.w-40{width:4rem}.w-64{width:6.4rem}.w-72{width:7.2rem}.w-76{width:7.6rem}.w-80{width:8rem}.w-\[0px\]{width:0}.w-\[1\.5px\]{width:1.5px}.w-\[40px\]{width:40px}.w-\[180px\]{width:180px}.w-\[200px\]{width:200px}.w-\[300px\]{width:300px}.w-\[320px\]{width:320px}.w-\[500px\]{width:500px}.w-\[600px\]{width:600px}.w-\[800px\]{width:800px}.w-fit{width:fit-content}.w-full{width:100%}.max-w-1{max-width:.1rem}.max-w-2xl{max-width:65.6rem}.max-w-4xl{max-width:89.6rem}.max-w-12{max-width:1.2rem}.max-w-16{max-width:1.6rem}.max-w-120{max-width:12rem}.max-w-160{max-width:16rem}.max-w-\[12px\]{max-width:12px}.max-w-\[16px\]{max-width:16px}.max-w-\[28px\]{max-width:28px}.max-w-\[40px\]{max-width:40px}.max-w-\[46px\]{max-width:46px}.max-w-\[300px\]{max-width:300px}.max-w-lg{max-width:80rem}.max-w-md{max-width:64rem}.max-w-sm{max-width:48rem}.min-w-1{min-width:.1rem}.min-w-12{min-width:1.2rem}.min-w-14{min-width:1.4rem}.min-w-20{min-width:2rem}.min-w-24{min-width:2.4rem}.min-w-28{min-width:2.8rem}.min-w-36{min-width:3.6rem}.min-w-\[12px\]{min-width:12px}.min-w-\[16px\]{min-width:16px}.min-w-\[18rem\]{min-width:18rem}.min-w-\[28px\]{min-width:28px}.min-w-\[40px\]{min-width:40px}.min-w-\[46px\]{min-width:46px}.flex-1{flex:1}.flex-grow{flex-grow:1}.-translate-x-1\/2{--tw-translate-x: -50% ;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-x-0{--tw-translate-x:0px;translate:var(--tw-translate-x)var(--tw-translate-y)}.translate-y-4{--tw-translate-y:.4rem;translate:var(--tw-translate-x)var(--tw-translate-y)}.-rotate-90{rotate:-90deg}.rotate-45{rotate:45deg}.rotate-180{rotate:180deg}.transform{transform:var(--tw-rotate-x)var(--tw-rotate-y)var(--tw-rotate-z)var(--tw-skew-x)var(--tw-skew-y)}.animate-spin{animation:var(--animate-spin)}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.resize{resize:both}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-7{grid-template-columns:repeat(7,minmax(0,1fr))}.flex-col{flex-direction:column}.flex-row{flex-direction:row}.flex-row\!{flex-direction:row!important}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-evenly{justify-content:space-evenly}.justify-items-center{justify-items:center}.gap-0\.5{gap:.05rem}.gap-2{gap:.2rem}.gap-4{gap:.4rem}.gap-6{gap:.6rem}.gap-8{gap:.8rem}.gap-10{gap:1rem}.gap-12{gap:1.2rem}.gap-16{gap:1.6rem}.gap-20{gap:2rem}.gap-24{gap:2.4rem}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(.2rem*var(--tw-space-y-reverse));margin-block-end:calc(.2rem*calc(1 - var(--tw-space-y-reverse)))}:where(.-space-x-4>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(-.4rem *var(--tw-space-x-reverse));margin-inline-end:calc(-.4rem *calc(1 - var(--tw-space-x-reverse)))}:where(.space-x-2>:not(:last-child)){--tw-space-x-reverse:0;margin-inline-start:calc(.2rem*var(--tw-space-x-reverse));margin-inline-end:calc(.2rem*calc(1 - var(--tw-space-x-reverse)))}.self-end{align-self:flex-end}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-visible{overflow:visible}.overflow-y-auto{overflow-y:auto}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:var(--radius-2xl)}.rounded-3xl{border-radius:var(--radius-3xl)}.rounded-full{border-radius:3.40282e38px}.rounded-lg{border-radius:var(--radius-lg)}.rounded-md{border-radius:var(--radius-md)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-l-full{border-top-left-radius:3.40282e38px;border-bottom-left-radius:3.40282e38px}.rounded-r-full{border-top-right-radius:3.40282e38px;border-bottom-right-radius:3.40282e38px}.border,.border-1{border-style:var(--tw-border-style);border-width:1px}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-4{border-style:var(--tw-border-style);border-width:4px}.border-\[1\.4px\]{border-style:var(--tw-border-style);border-width:1.4px}.border-\[1\.5px\]{border-style:var(--tw-border-style);border-width:1.5px}.border-\[1px\]{border-style:var(--tw-border-style);border-width:1px}.border-r-0{border-right-style:var(--tw-border-style);border-right-width:0}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-b-\[1\.3px\]{border-bottom-style:var(--tw-border-style);border-bottom-width:1.3px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-none\!{--tw-border-style:none!important;border-style:none!important}.\!border-blue-500{border-color:#4570eb!important}.\!border-red-500{border-color:#eb4571!important}.border-aqua-500{border-color:#1da696}.border-blue-100{border-color:#ecf1fd}.border-blue-200{border-color:#cad6f9}.border-blue-400{border-color:#6a8def}.border-blue-500{border-color:#4570eb}.border-blue-500\!{border-color:#4570eb!important}.border-blue-600{border-color:#375abc}.border-blue-800{border-color:#1c2d5e}.border-gray-100{border-color:#f0f0f2}.border-gray-300{border-color:#abacaf}.border-gray-400{border-color:#8f9095}.border-gray-500{border-color:#72747a}.border-green-500{border-color:#16a85b}.border-red-500{border-color:#eb4571}.border-red-500\!{border-color:#eb4571!important}.border-transparent{border-color:#0000}.border-yellow-500{border-color:var(--color-yellow-500)}.border-t-blue-500{border-top-color:#4570eb}.border-r-blue-300{border-right-color:#8fa9f3}.border-b-blue-200{border-bottom-color:#cad6f9}.border-b-blue-500{border-bottom-color:#4570eb}.border-b-gray-700{border-bottom-color:#3b3d45}.border-l-blue-400{border-left-color:#6a8def}.\!bg-aqua-100{background-color:#d4f5f1!important}.\!bg-blue-100{background-color:#ecf1fd!important}.\!bg-gray-100{background-color:#f0f0f2!important}.\!bg-transparent{background-color:#0000!important}.bg-\[rgb\(243\,244\,246\)\]{background-color:#f3f4f6}.bg-aqua-100{background-color:#d4f5f1}.bg-aqua-500{background-color:#1da696}.bg-black{background-color:var(--color-black)}.bg-black\/50{background-color:color-mix(in oklab,var(--color-black)50%,transparent)}.bg-blue-50{background-color:#f9fafe}.bg-blue-100{background-color:#ecf1fd}.bg-blue-100\/50{background-color:#ecf1fd80}.bg-blue-400{background-color:#6a8def}.bg-blue-500{background-color:#4570eb}.bg-blue-600{background-color:#375abc}.bg-blue-800{background-color:#1c2d5e}.bg-blue-900{background-color:#0e162f}.bg-gray-50{background-color:var(--color-gray-50)}.bg-gray-50\/50{background-color:color-mix(in oklab,var(--color-gray-50)50%,transparent)}.bg-gray-100{background-color:#f0f0f2}.bg-gray-100\!{background-color:#f0f0f2!important}.bg-gray-200{background-color:#c7c8ca}.bg-gray-500{background-color:#72747a}.bg-green-50{background-color:var(--color-green-50)}.bg-green-100{background-color:var(--color-green-100)}.bg-green-500{background-color:#16a85b}.bg-light{background-color:#f9fbff}.bg-purple-500{background-color:var(--color-purple-500)}.bg-red-50{background-color:var(--color-red-50)}.bg-red-500{background-color:#eb4571}.bg-red-500\/20{background-color:#eb457133}.bg-transparent{background-color:#0000}.bg-white{background-color:#fff}.bg-yellow-50{background-color:var(--color-yellow-50)}.bg-yellow-500{background-color:var(--color-yellow-500)}.bg-gradient-to-b{--tw-gradient-position:to bottom in oklab;background-image:linear-gradient(var(--tw-gradient-stops))}.from-aqua-500{--tw-gradient-from:#1da696;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.from-blue-500{--tw-gradient-from:#4570eb;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.to-\[rgb\(243\,244\,246\)\]{--tw-gradient-to:#f3f4f6;--tw-gradient-stops:var(--tw-gradient-via-stops,var(--tw-gradient-position),var(--tw-gradient-from)var(--tw-gradient-from-position),var(--tw-gradient-to)var(--tw-gradient-to-position))}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.\!p-0,.p-0\!{padding:0!important}.p-2{padding:.2rem}.p-3{padding:.3rem}.p-4{padding:.4rem}.p-6{padding:.6rem}.p-8{padding:.8rem}.p-12{padding:1.2rem}.p-16{padding:1.6rem}.p-20{padding:2rem}.p-24{padding:2.4rem}.p-32{padding:3.2rem}.p-40{padding:4rem}.px-2{padding-inline:.2rem}.px-3{padding-inline:.3rem}.px-4{padding-inline:.4rem}.px-6{padding-inline:.6rem}.px-10{padding-inline:1rem}.px-12{padding-inline:1.2rem}.px-14{padding-inline:1.4rem}.px-16{padding-inline:1.6rem}.px-20{padding-inline:2rem}.px-24{padding-inline:2.4rem}.px-32{padding-inline:3.2rem}.px-\[12\.3px\]{padding-inline:12.3px}.py-1{padding-block:.1rem}.py-2{padding-block:.2rem}.py-3{padding-block:.3rem}.py-4{padding-block:.4rem}.py-5{padding-block:.5rem}.py-6{padding-block:.6rem}.py-7{padding-block:.7rem}.py-8{padding-block:.8rem}.py-10{padding-block:1rem}.py-10\!{padding-block:1rem!important}.py-16{padding-block:1.6rem}.py-24{padding-block:2.4rem}.pt-0{padding-top:0}.pt-16{padding-top:1.6rem}.pt-28{padding-top:2.8rem}.pr-\[10px\]{padding-right:10px}.pb-0\!{padding-bottom:0!important}.pb-16{padding-bottom:1.6rem}.text-center{text-align:center}.text-start{text-align:start}.indent-\[10000px\]{text-indent:10000px}.align-middle{vertical-align:middle}.font-mono{font-family:var(--font-mono)}.font-sans{font-family:var(--font-sans)}.text-header-1{font-size:2.8rem;font-weight:700;line-height:100%}@media (width>=48rem){.text-header-1{font-size:4rem}}.text-header-4{font-size:1.6rem;font-weight:700;line-height:100%}@media (width>=48rem){.text-header-4{font-size:1.8rem}}.text-2xl{font-size:2rem}.text-3xl{font-size:2.4rem}.text-base{font-size:1.4rem}.text-body-m{font-size:1.6rem}.text-body-s{font-size:1.4rem}.text-header-1{font-size:2.8rem}.text-header-4{font-size:1.6rem}.text-label{font-size:1.2rem}.text-lg{font-size:1.6rem}.text-lg\!{font-size:1.6rem!important}.text-md{font-size:1.3rem}.text-sm{font-size:1.2rem}.text-xl{font-size:1.8rem}.text-xs{font-size:1rem}.leading-none{--tw-leading:1;line-height:1}.leading-normal{--tw-leading:var(--leading-normal);line-height:var(--leading-normal)}.body-l,.body-m,.body-s,.label{line-height:100%}.font-400{--tw-font-weight:400;font-weight:400}.font-500{--tw-font-weight:500;font-weight:500}.font-600{--tw-font-weight:600;font-weight:600}.font-700,.font-bold{--tw-font-weight:700;font-weight:700}.font-medium{--tw-font-weight:500;font-weight:500}.font-normal{--tw-font-weight:400;font-weight:400}.font-semibold{--tw-font-weight:600;font-weight:600}.tracking-wider{--tw-tracking:var(--tracking-wider);letter-spacing:var(--tracking-wider)}.text-nowrap{text-wrap:nowrap}.\!text-gray-300{color:#abacaf!important}.\!text-red-500{color:#eb4571!important}.text-aqua-500{color:#1da696}.text-black{color:var(--color-black)}.text-blue-100{color:#ecf1fd}.text-blue-200{color:#cad6f9}.text-blue-400{color:#6a8def}.text-blue-500{color:#4570eb}.text-blue-500\!{color:#4570eb!important}.text-blue-600{color:#375abc}.text-blue-800{color:#1c2d5e}.text-error{color:#eb4571}.text-gray-300{color:#abacaf}.text-gray-400{color:#8f9095}.text-gray-500{color:#72747a}.text-gray-600{color:#57595f}.text-gray-700{color:#3b3d45}.text-gray-800{color:#1e212a}.text-gray-900{color:var(--color-gray-900)}.text-green-500{color:#16a85b}.text-green-800{color:var(--color-green-800)}.text-orange-500{color:var(--color-orange-500)}.text-purple-500{color:var(--color-purple-500)}.text-red-500{color:#eb4571}.text-red-500\!{color:#eb4571!important}.text-red-600{color:#b23456}.text-white{color:#fff}.text-yellow-500{color:var(--color-yellow-500)}.capitalize{text-transform:capitalize}.uppercase{text-transform:uppercase}.underline{text-decoration-line:underline}.\!caret-transparent{caret-color:#0000!important}.opacity-0{opacity:0}.opacity-50{opacity:.5}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px 0 var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -2px var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -1px var(--tw-shadow-color,#0000000f);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.outline-hidden{--tw-outline-style:none;outline-style:none}@media (forced-colors:active){.outline-hidden{outline-offset:2px;outline:2px solid #0000}}.outline{outline-style:var(--tw-outline-style);outline-width:1px}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-100{--tw-duration:.1s;transition-duration:.1s}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.duration-300{--tw-duration:.3s;transition-duration:.3s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-linear{--tw-ease:linear;transition-timing-function:linear}.\!select-none{-webkit-user-select:none!important;user-select:none!important}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.group-focus-within\:border-blue-500:is(:where(.group):focus-within *){border-color:#4570eb}.group-focus-within\:text-blue-500:is(:where(.group):focus-within *){color:#4570eb}@media (hover:hover){.group-hover\:border-blue-300:is(:where(.group):hover *){border-color:#8fa9f3}.group-hover\:bg-aqua-100:is(:where(.group):hover *){background-color:#d4f5f1}.group-hover\:bg-blue-100:is(:where(.group):hover *){background-color:#ecf1fd}.group-hover\:text-aqua-500:is(:where(.group):hover *){color:#1da696}.group-hover\:text-blue-300:is(:where(.group):hover *){color:#8fa9f3}.group-hover\:text-blue-500:is(:where(.group):hover *){color:#4570eb}}.group-disabled\:bg-gray-500:is(:where(.group):disabled *){background-color:#72747a}.placeholder\:font-600::placeholder{--tw-font-weight:600;font-weight:600}.placeholder\:text-gray-400::placeholder{color:#8f9095}@media (hover:hover){.hover\:\!cursor-pointer:hover{cursor:pointer!important}.hover\:border-aqua-600:hover{border-color:#167c70}.hover\:border-blue-400:hover{border-color:#6a8def}.hover\:border-blue-500:hover{border-color:#4570eb}.hover\:border-blue-600:hover{border-color:#375abc}.hover\:border-gray-600:hover{border-color:#57595f}.hover\:border-red-600:hover{border-color:#b23456}.hover\:bg-aqua-100:hover{background-color:#d4f5f1}.hover\:bg-aqua-100\/40:hover{background-color:#d4f5f166}.hover\:bg-aqua-100\/80:hover{background-color:#d4f5f1cc}.hover\:bg-aqua-200\/50:hover{background-color:#7de2d680}.hover\:bg-aqua-600:hover{background-color:#167c70}.hover\:bg-blue-100:hover{background-color:#ecf1fd}.hover\:bg-blue-100\/40:hover{background-color:#ecf1fd66}.hover\:bg-blue-100\/50:hover{background-color:#ecf1fd80}.hover\:bg-blue-100\/80:hover{background-color:#ecf1fdcc}.hover\:bg-blue-200:hover{background-color:#cad6f9}.hover\:bg-blue-600:hover{background-color:#375abc}.hover\:bg-gray-50\/50:hover{background-color:color-mix(in oklab,var(--color-gray-50)50%,transparent)}.hover\:bg-gray-100:hover{background-color:#f0f0f2}.hover\:bg-gray-200:hover{background-color:#c7c8ca}.hover\:bg-gray-600:hover{background-color:#57595f}.hover\:bg-red-500\/30:hover{background-color:#eb45714d}.hover\:bg-red-600:hover{background-color:#b23456}.hover\:text-aqua-500:hover{color:#1da696}.hover\:text-aqua-600:hover{color:#167c70}.hover\:text-blue-500:hover{color:#4570eb}.hover\:text-blue-600:hover{color:#375abc}.hover\:text-gray-500:hover{color:#72747a}.hover\:text-gray-600:hover{color:#57595f}.hover\:text-gray-700:hover{color:#3b3d45}.hover\:text-red-600:hover{color:#b23456}.hover\:text-white:hover{color:#fff}.hover\:opacity-80:hover{opacity:.8}}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.active\:border-aqua-700:active{border-color:#0f534b}.active\:border-blue-700:active{border-color:#29438d}.active\:border-gray-700:active{border-color:#3b3d45}.active\:border-red-700:active{border-color:#8f2945}.active\:bg-aqua-100\/20:active{background-color:#d4f5f133}.active\:bg-aqua-100\/50:active{background-color:#d4f5f180}.active\:bg-aqua-200\/70:active{background-color:#7de2d6b3}.active\:bg-aqua-700:active{background-color:#0f534b}.active\:bg-blue-100\/20:active{background-color:#ecf1fd33}.active\:bg-blue-100\/50:active{background-color:#ecf1fd80}.active\:bg-blue-300\/80:active{background-color:#8fa9f3cc}.active\:bg-blue-700:active{background-color:#29438d}.active\:bg-gray-300:active{background-color:#abacaf}.active\:bg-gray-700:active{background-color:#3b3d45}.active\:bg-red-700:active{background-color:#8f2945}.active\:bg-red-700\/40:active{background-color:#8f294566}.active\:text-aqua-500:active{color:#1da696}.active\:text-aqua-700:active{color:#0f534b}.active\:text-blue-500:active{color:#4570eb}.active\:text-blue-700:active{color:#29438d}.active\:text-gray-700:active{color:#3b3d45}.active\:text-red-700:active{color:#8f2945}.active\:text-white:active{color:#fff}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:bg-gray-100:disabled{background-color:#f0f0f2}.disabled\:text-gray-300:disabled{color:#abacaf}.disabled\:opacity-50:disabled{opacity:.5}.disabled\:placeholder\:text-gray-300:disabled::placeholder{color:#abacaf}@media (width>=48rem){.md\:gap-24{gap:2.4rem}.md\:p-32{padding:3.2rem}.md\:px-0{padding-inline:0}.md\:pt-0{padding-top:0}.md\:pt-4{padding-top:.4rem}.md\:pb-0{padding-bottom:0}.md\:text-lg{font-size:1.6rem}.md\:text-xl{font-size:1.8rem}}@media (width>=64rem){.lg\:p-20{padding:2rem}}*{text-rendering:optimizeLegibility;-o-text-rendering:optimizeLegibility;-ms-text-rendering:optimizeLegibility;-moz-text-rendering:optimizeLegibility;-webkit-text-rendering:optimizeLegibility;-webkit-tap-highlight-color:transparent}button{cursor:pointer}html{color:#000;background-color:#fff;font-size:62.5%}* :focus{outline:none!important}body.no-animate *,body.no-animate :before,body.no-animate :after{transition:none!important;animation:none!important}button:focus{outline:none}input:-webkit-autofill{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:hover{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:focus{transitiondelay:9999s;transitionproperty:background-color,color}input:-webkit-autofill:active{transitiondelay:9999s;transitionproperty:background-color,color}:focus{outline-color:#0000}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false;initial-value:rotateX(0)}@property --tw-rotate-y{syntax:"*";inherits:false;initial-value:rotateY(0)}@property --tw-rotate-z{syntax:"*";inherits:false;initial-value:rotateZ(0)}@property --tw-skew-x{syntax:"*";inherits:false;initial-value:skewX(0)}@property --tw-skew-y{syntax:"*";inherits:false;initial-value:skewY(0)}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-space-x-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-gradient-position{syntax:"*";inherits:false}@property --tw-gradient-from{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-via{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-to{syntax:"<color>";inherits:false;initial-value:#0000}@property --tw-gradient-stops{syntax:"*";inherits:false}@property --tw-gradient-via-stops{syntax:"*";inherits:false}@property --tw-gradient-from-position{syntax:"<length-percentage>";inherits:false;initial-value:0%}@property --tw-gradient-via-position{syntax:"<length-percentage>";inherits:false;initial-value:50%}@property --tw-gradient-to-position{syntax:"<length-percentage>";inherits:false;initial-value:100%}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-tracking{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@keyframes spin{to{transform:rotate(360deg)}}
|