xtreme-ui 0.0.12 → 0.0.14
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/base/Button/Button.js +51 -0
- package/dist/components/base/Button/button.module.scss.js +44 -0
- package/dist/components/base/Button/types.js +5 -0
- package/dist/components/base/Icon/Icon.js +19 -0
- package/dist/components/base/Icon/icon.module.scss.js +26 -0
- package/dist/components/base/Icon/types.js +5 -0
- package/dist/components/base/ProgressBar/ProgressBar.js +17 -0
- package/dist/components/base/ProgressBar/progressbar.module.scss.js +14 -0
- package/dist/components/base/Textfield/Textfield.js +65 -0
- package/dist/components/base/Textfield/textfield.module.scss.js +20 -0
- package/dist/components/layout/Navigation/Navigation.js +27 -0
- package/dist/components/layout/Navigation/navigation.module.scss.js +20 -0
- package/dist/components/layout/Sider/Sider.js +33 -0
- package/dist/components/layout/Sider/sider.module.scss.js +22 -0
- package/dist/index.js +35 -0
- package/dist/style.css +1 -1
- package/dist/styles/index.scss.js +5 -0
- package/dist/utils/function/mergeRefs.js +9 -0
- package/dist/utils/function/string.js +6 -0
- package/dist/utils/helper/domHelper.js +38 -0
- package/package.json +3 -3
- package/dist/index.es.js +0 -1042
- package/dist/index.umd.js +0 -27
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs as R, jsx as t } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef as w, useRef as C } from "react";
|
|
4
|
+
import j from "clsx";
|
|
5
|
+
import z from "lodash/throttle.js";
|
|
6
|
+
import { mergeRefs as I } from "../../../utils/function/mergeRefs.js";
|
|
7
|
+
import { Icon as L } from "../Icon/Icon.js";
|
|
8
|
+
import { ProgressBar as P } from "../ProgressBar/ProgressBar.js";
|
|
9
|
+
import e from "./button.module.scss.js";
|
|
10
|
+
import { EButtonTypes as p } from "./types.js";
|
|
11
|
+
const d = 100;
|
|
12
|
+
let y;
|
|
13
|
+
const $ = w((B, N) => {
|
|
14
|
+
const {
|
|
15
|
+
className: T,
|
|
16
|
+
label: o,
|
|
17
|
+
type: i = "primary",
|
|
18
|
+
size: c = "default",
|
|
19
|
+
disabled: b = !1,
|
|
20
|
+
loading: m = !1,
|
|
21
|
+
icon: r,
|
|
22
|
+
iconType: g,
|
|
23
|
+
iconPosition: a = "left",
|
|
24
|
+
onClick: s
|
|
25
|
+
} = B, l = C(null), h = z(() => {
|
|
26
|
+
var n;
|
|
27
|
+
clearTimeout(y), (n = l.current) == null || n.classList.add(e.clicked), y = window.setTimeout(() => {
|
|
28
|
+
var f;
|
|
29
|
+
(f = l.current) == null || f.classList.remove(e.clicked);
|
|
30
|
+
}, 600 + d);
|
|
31
|
+
}, d), k = (n) => {
|
|
32
|
+
s == null || s(n), i.includes(p.link) || h();
|
|
33
|
+
}, u = () => r ? /* @__PURE__ */ t(L, { className: e.icon, code: r, type: g, size: c }) : null, x = j(
|
|
34
|
+
e.button,
|
|
35
|
+
e[`${i}Type`],
|
|
36
|
+
e[`${c}Size`],
|
|
37
|
+
!o && e.iconOnly,
|
|
38
|
+
m && e.loading,
|
|
39
|
+
T
|
|
40
|
+
);
|
|
41
|
+
return !o && !r ? null : /* @__PURE__ */ R("button", { className: x, ref: I([l, N]), onClick: k, disabled: b, children: [
|
|
42
|
+
i.includes(p.link) && /* @__PURE__ */ t(P, { className: e.underline, intermediate: m }),
|
|
43
|
+
a === "left" && /* @__PURE__ */ t(u, {}),
|
|
44
|
+
o && /* @__PURE__ */ t("span", { className: e.label, children: o }),
|
|
45
|
+
a === "right" && /* @__PURE__ */ t(u, {})
|
|
46
|
+
] });
|
|
47
|
+
});
|
|
48
|
+
$.displayName = "Button";
|
|
49
|
+
export {
|
|
50
|
+
$ as Button
|
|
51
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e = "_button_6uqr8_1", n = "_label_6uqr8_17", r = "_icon_6uqr8_23", _ = "_underline_6uqr8_26", i = "_primaryType_6uqr8_49", o = "_primaryDangerType_6uqr8_49", c = "_secondaryType_6uqr8_54", l = "_secondaryDangerType_6uqr8_54", a = "_linkType_6uqr8_59", p = "_linkDangerType_6uqr8_59", y = "_miniSize_6uqr8_88", s = "_iconOnly_6uqr8_99", t = "_defaultSize_6uqr8_106", u = "_largeSize_6uqr8_124", d = "_clicked_6uqr8_157", q = "_ripple_6uqr8_1", T = "_loading_6uqr8_166", g = "_barberPole_6uqr8_1", b = "_spin_6uqr8_1", k = {
|
|
3
|
+
button: e,
|
|
4
|
+
label: n,
|
|
5
|
+
icon: r,
|
|
6
|
+
underline: _,
|
|
7
|
+
primaryType: i,
|
|
8
|
+
primaryDangerType: o,
|
|
9
|
+
secondaryType: c,
|
|
10
|
+
secondaryDangerType: l,
|
|
11
|
+
linkType: a,
|
|
12
|
+
linkDangerType: p,
|
|
13
|
+
miniSize: y,
|
|
14
|
+
iconOnly: s,
|
|
15
|
+
defaultSize: t,
|
|
16
|
+
largeSize: u,
|
|
17
|
+
clicked: d,
|
|
18
|
+
ripple: q,
|
|
19
|
+
loading: T,
|
|
20
|
+
barberPole: g,
|
|
21
|
+
spin: b
|
|
22
|
+
};
|
|
23
|
+
export {
|
|
24
|
+
g as barberPole,
|
|
25
|
+
e as button,
|
|
26
|
+
d as clicked,
|
|
27
|
+
k as default,
|
|
28
|
+
t as defaultSize,
|
|
29
|
+
r as icon,
|
|
30
|
+
s as iconOnly,
|
|
31
|
+
n as label,
|
|
32
|
+
u as largeSize,
|
|
33
|
+
p as linkDangerType,
|
|
34
|
+
a as linkType,
|
|
35
|
+
T as loading,
|
|
36
|
+
y as miniSize,
|
|
37
|
+
o as primaryDangerType,
|
|
38
|
+
i as primaryType,
|
|
39
|
+
q as ripple,
|
|
40
|
+
l as secondaryDangerType,
|
|
41
|
+
c as secondaryType,
|
|
42
|
+
b as spin,
|
|
43
|
+
_ as underline
|
|
44
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as p } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef as a } from "react";
|
|
4
|
+
import f from "clsx";
|
|
5
|
+
import { unicodeToString as l } from "../../../utils/function/string.js";
|
|
6
|
+
import e from "./icon.module.scss.js";
|
|
7
|
+
import { EIconSize as d } from "./types.js";
|
|
8
|
+
const x = a((i, n) => {
|
|
9
|
+
const { className: r, code: c, type: t = "light", size: o } = i, s = o ? `${typeof o == "number" ? o : d[o]}px` : void 0, m = f(
|
|
10
|
+
e.icon,
|
|
11
|
+
t && e[t],
|
|
12
|
+
r
|
|
13
|
+
);
|
|
14
|
+
return /* @__PURE__ */ p("span", { className: m, ref: n, style: { "--iconSize": s }, "data-content": l(c) });
|
|
15
|
+
});
|
|
16
|
+
x.displayName = "Icon";
|
|
17
|
+
export {
|
|
18
|
+
x as Icon
|
|
19
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const n = "_icon_awnbf_2", a = "_thin_awnbf_25", _ = "_light_awnbf_29", o = "_regular_awnbf_33", s = "_solid_awnbf_37", t = "_duotone_awnbf_41", r = "_sharpSolid_awnbf_52", i = "_sharpRegular_awnbf_56", h = "_sharpLight_awnbf_60", l = "_brand_awnbf_64", c = {
|
|
3
|
+
icon: n,
|
|
4
|
+
thin: a,
|
|
5
|
+
light: _,
|
|
6
|
+
regular: o,
|
|
7
|
+
solid: s,
|
|
8
|
+
duotone: t,
|
|
9
|
+
sharpSolid: r,
|
|
10
|
+
sharpRegular: i,
|
|
11
|
+
sharpLight: h,
|
|
12
|
+
brand: l
|
|
13
|
+
};
|
|
14
|
+
export {
|
|
15
|
+
l as brand,
|
|
16
|
+
c as default,
|
|
17
|
+
t as duotone,
|
|
18
|
+
n as icon,
|
|
19
|
+
_ as light,
|
|
20
|
+
o as regular,
|
|
21
|
+
h as sharpLight,
|
|
22
|
+
i as sharpRegular,
|
|
23
|
+
r as sharpSolid,
|
|
24
|
+
s as solid,
|
|
25
|
+
a as thin
|
|
26
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as e } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef as n } from "react";
|
|
4
|
+
import p from "clsx";
|
|
5
|
+
import s from "./progressbar.module.scss.js";
|
|
6
|
+
const c = n((o, t) => {
|
|
7
|
+
const { className: a, progress: m = 100, intermediate: r = !1 } = o, i = r ? 150 : Math.min(Math.max(m, 0), 100), l = p(
|
|
8
|
+
s.progressBar,
|
|
9
|
+
r && s.intermediate,
|
|
10
|
+
a
|
|
11
|
+
);
|
|
12
|
+
return /* @__PURE__ */ e("div", { className: l, ref: t, children: /* @__PURE__ */ e("span", { className: s.progress, style: { width: `${i}%` } }) });
|
|
13
|
+
});
|
|
14
|
+
c.displayName = "ProgressBar";
|
|
15
|
+
export {
|
|
16
|
+
c as ProgressBar
|
|
17
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e = "_progressBar_luf46_1", r = "_progress_luf46_1", s = "_intermediate_luf46_31", o = "_barberPole_luf46_1", t = {
|
|
3
|
+
progressBar: e,
|
|
4
|
+
progress: r,
|
|
5
|
+
intermediate: s,
|
|
6
|
+
barberPole: o
|
|
7
|
+
};
|
|
8
|
+
export {
|
|
9
|
+
o as barberPole,
|
|
10
|
+
t as default,
|
|
11
|
+
s as intermediate,
|
|
12
|
+
r as progress,
|
|
13
|
+
e as progressBar
|
|
14
|
+
};
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs as h, jsx as a } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef as N, useMemo as y } from "react";
|
|
4
|
+
import T from "clsx";
|
|
5
|
+
import { Icon as w } from "../Icon/Icon.js";
|
|
6
|
+
import e from "./textfield.module.scss.js";
|
|
7
|
+
const C = N((m, f) => {
|
|
8
|
+
const {
|
|
9
|
+
className: u,
|
|
10
|
+
type: t = "text",
|
|
11
|
+
textarea: r,
|
|
12
|
+
placeholder: p,
|
|
13
|
+
autoComplete: n = "off",
|
|
14
|
+
autoFocus: c,
|
|
15
|
+
icon: o,
|
|
16
|
+
iconType: d = "regular",
|
|
17
|
+
value: s,
|
|
18
|
+
onChange: i
|
|
19
|
+
} = m, l = y(() => {
|
|
20
|
+
if (r === !0)
|
|
21
|
+
return null;
|
|
22
|
+
if (o)
|
|
23
|
+
return o;
|
|
24
|
+
if (t === "number")
|
|
25
|
+
return "23";
|
|
26
|
+
if (t === "search")
|
|
27
|
+
return "f002";
|
|
28
|
+
if (t === "password")
|
|
29
|
+
return "f30d";
|
|
30
|
+
}, [r, o, t]), x = T(
|
|
31
|
+
e.textfield,
|
|
32
|
+
l && e.withIcon,
|
|
33
|
+
r && e.textarea,
|
|
34
|
+
s && e.hasValue,
|
|
35
|
+
u
|
|
36
|
+
);
|
|
37
|
+
return /* @__PURE__ */ h("div", { className: x, ref: f, children: [
|
|
38
|
+
!!l && !r && /* @__PURE__ */ a(w, { className: e.icon, code: l, type: d }),
|
|
39
|
+
r ? /* @__PURE__ */ a(
|
|
40
|
+
"textarea",
|
|
41
|
+
{
|
|
42
|
+
className: e.input,
|
|
43
|
+
autoFocus: c,
|
|
44
|
+
autoComplete: n,
|
|
45
|
+
value: s,
|
|
46
|
+
onChange: i
|
|
47
|
+
}
|
|
48
|
+
) : /* @__PURE__ */ a(
|
|
49
|
+
"input",
|
|
50
|
+
{
|
|
51
|
+
className: e.input,
|
|
52
|
+
type: t,
|
|
53
|
+
autoFocus: c,
|
|
54
|
+
autoComplete: n,
|
|
55
|
+
value: s,
|
|
56
|
+
onChange: i
|
|
57
|
+
}
|
|
58
|
+
),
|
|
59
|
+
/* @__PURE__ */ a("span", { className: e.placeholder, children: p })
|
|
60
|
+
] });
|
|
61
|
+
});
|
|
62
|
+
C.displayName = "Textfield";
|
|
63
|
+
export {
|
|
64
|
+
C as Textfield
|
|
65
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const t = "_textfield_7y99a_1", e = "_icon_7y99a_27", a = "_input_7y99a_36", _ = "_placeholder_7y99a_49", c = "_withIcon_7y99a_73", n = "_textarea_7y99a_83", o = "_hasValue_7y99a_92", l = {
|
|
3
|
+
textfield: t,
|
|
4
|
+
icon: e,
|
|
5
|
+
input: a,
|
|
6
|
+
placeholder: _,
|
|
7
|
+
withIcon: c,
|
|
8
|
+
textarea: n,
|
|
9
|
+
hasValue: o
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
l as default,
|
|
13
|
+
o as hasValue,
|
|
14
|
+
e as icon,
|
|
15
|
+
a as input,
|
|
16
|
+
_ as placeholder,
|
|
17
|
+
n as textarea,
|
|
18
|
+
t as textfield,
|
|
19
|
+
c as withIcon
|
|
20
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs as r, jsx as s } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef as n } from "react";
|
|
4
|
+
import c from "clsx";
|
|
5
|
+
import a from "./navigation.module.scss.js";
|
|
6
|
+
const m = n((i, o) => {
|
|
7
|
+
const { className: t, Routes: e } = i, l = c(
|
|
8
|
+
a.navigation,
|
|
9
|
+
t
|
|
10
|
+
);
|
|
11
|
+
return /* @__PURE__ */ r("section", { className: l, ref: o, role: "navigation", children: [
|
|
12
|
+
/* @__PURE__ */ s("div", { className: a.brand, children: "🎲 XtremeUI" }),
|
|
13
|
+
/* @__PURE__ */ s("div", { className: a.routeList, children: !!e && /* @__PURE__ */ s(
|
|
14
|
+
e,
|
|
15
|
+
{
|
|
16
|
+
className: a.route,
|
|
17
|
+
activeClassName: a.active,
|
|
18
|
+
iconClassName: a.icon,
|
|
19
|
+
labelClassName: a.label
|
|
20
|
+
}
|
|
21
|
+
) })
|
|
22
|
+
] });
|
|
23
|
+
});
|
|
24
|
+
m.displayName = "Navigation";
|
|
25
|
+
export {
|
|
26
|
+
m as Navigation
|
|
27
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const t = "_navigation_zrgjp_1", n = "_brand_zrgjp_9", o = "_routeList_zrgjp_18", _ = "_route_zrgjp_18", a = "_icon_zrgjp_59", e = "_label_zrgjp_65", r = "_active_zrgjp_77", i = {
|
|
3
|
+
navigation: t,
|
|
4
|
+
brand: n,
|
|
5
|
+
routeList: o,
|
|
6
|
+
route: _,
|
|
7
|
+
icon: a,
|
|
8
|
+
label: e,
|
|
9
|
+
active: r
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
r as active,
|
|
13
|
+
n as brand,
|
|
14
|
+
i as default,
|
|
15
|
+
a as icon,
|
|
16
|
+
e as label,
|
|
17
|
+
t as navigation,
|
|
18
|
+
_ as route,
|
|
19
|
+
o as routeList
|
|
20
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsxs as f, jsx as i } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef as h } from "react";
|
|
4
|
+
import S from "clsx";
|
|
5
|
+
import e from "./sider.module.scss.js";
|
|
6
|
+
const p = h((s, t) => {
|
|
7
|
+
const {
|
|
8
|
+
className: d,
|
|
9
|
+
children: n,
|
|
10
|
+
leftSider: o,
|
|
11
|
+
showMiniLeftSider: l = !0,
|
|
12
|
+
rightSider: c,
|
|
13
|
+
showMiniRightSider: a = !1,
|
|
14
|
+
open: r = "closed"
|
|
15
|
+
// setOpen,
|
|
16
|
+
} = s, m = S(
|
|
17
|
+
e.sider,
|
|
18
|
+
r === "left" && e.leftOpen,
|
|
19
|
+
l && e.miniLeftSider,
|
|
20
|
+
r === "right" && e.rightOpen,
|
|
21
|
+
a && e.miniRightSider,
|
|
22
|
+
d
|
|
23
|
+
);
|
|
24
|
+
return /* @__PURE__ */ f("section", { className: m, ref: t, role: "sider", children: [
|
|
25
|
+
/* @__PURE__ */ i("div", { className: e.leftSiderContainer, children: o }),
|
|
26
|
+
/* @__PURE__ */ i("div", { className: e.rightSiderContainer, children: c }),
|
|
27
|
+
/* @__PURE__ */ i("div", { className: e.content, children: n })
|
|
28
|
+
] });
|
|
29
|
+
});
|
|
30
|
+
p.displayName = "Sider";
|
|
31
|
+
export {
|
|
32
|
+
p as Sider
|
|
33
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const e = "_sider_9guyz_1", i = "_leftSiderContainer_9guyz_13", t = "_rightSiderContainer_9guyz_20", n = "_content_9guyz_27", r = "_miniLeftSider_9guyz_37", _ = "_miniRightSider_9guyz_44", o = "_leftOpen_9guyz_51", g = "_rightOpen_9guyz_57", d = {
|
|
3
|
+
sider: e,
|
|
4
|
+
leftSiderContainer: i,
|
|
5
|
+
rightSiderContainer: t,
|
|
6
|
+
content: n,
|
|
7
|
+
miniLeftSider: r,
|
|
8
|
+
miniRightSider: _,
|
|
9
|
+
leftOpen: o,
|
|
10
|
+
rightOpen: g
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
n as content,
|
|
14
|
+
d as default,
|
|
15
|
+
o as leftOpen,
|
|
16
|
+
i as leftSiderContainer,
|
|
17
|
+
r as miniLeftSider,
|
|
18
|
+
_ as miniRightSider,
|
|
19
|
+
g as rightOpen,
|
|
20
|
+
t as rightSiderContainer,
|
|
21
|
+
e as sider
|
|
22
|
+
};
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import "./styles/index.scss.js";
|
|
3
|
+
import { dom as t, elementObserver as s, getCssProperty as p, getCssPropertyPx as m, getCssPropertyVh as f, getCssPropertyVw as i, isClient as n, setCssProperty as x, waitForElement as g } from "./utils/helper/domHelper.js";
|
|
4
|
+
import { mergeRefs as C } from "./utils/function/mergeRefs.js";
|
|
5
|
+
import { safeStringFromCodePoint as a, unicodeToString as d } from "./utils/function/string.js";
|
|
6
|
+
import { Button as c } from "./components/base/Button/Button.js";
|
|
7
|
+
import { EButtonTypes as S } from "./components/base/Button/types.js";
|
|
8
|
+
import { Icon as E } from "./components/base/Icon/Icon.js";
|
|
9
|
+
import { EIconSize as v } from "./components/base/Icon/types.js";
|
|
10
|
+
import { ProgressBar as F } from "./components/base/ProgressBar/ProgressBar.js";
|
|
11
|
+
import { Textfield as V } from "./components/base/Textfield/Textfield.js";
|
|
12
|
+
import { Sider as h } from "./components/layout/Sider/Sider.js";
|
|
13
|
+
import { Navigation as N } from "./components/layout/Navigation/Navigation.js";
|
|
14
|
+
export {
|
|
15
|
+
c as Button,
|
|
16
|
+
S as EButtonTypes,
|
|
17
|
+
v as EIconSize,
|
|
18
|
+
E as Icon,
|
|
19
|
+
N as Navigation,
|
|
20
|
+
F as ProgressBar,
|
|
21
|
+
h as Sider,
|
|
22
|
+
V as Textfield,
|
|
23
|
+
t as dom,
|
|
24
|
+
s as elementObserver,
|
|
25
|
+
p as getCssProperty,
|
|
26
|
+
m as getCssPropertyPx,
|
|
27
|
+
f as getCssPropertyVh,
|
|
28
|
+
i as getCssPropertyVw,
|
|
29
|
+
n as isClient,
|
|
30
|
+
C as mergeRefs,
|
|
31
|
+
a as safeStringFromCodePoint,
|
|
32
|
+
x as setCssProperty,
|
|
33
|
+
d as unicodeToString,
|
|
34
|
+
g as waitForElement
|
|
35
|
+
};
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import"https://fonts.googleapis.com/css2?family=Montserrat&display=swap";@font-face{font-family:FontAwesome;font-style:normal;font-weight:100;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-thin-100.woff2) format("woff2")}@font-face{font-family:FontAwesome;font-style:normal;font-weight:300;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-light-300.woff2) format("woff2")}@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-regular-400.woff2) format("woff2")}@font-face{font-family:FontAwesome;font-style:normal;font-weight:900;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-solid-900.woff2) format("woff2")}@font-face{font-family:FontAwesomeDuotone;font-style:normal;font-weight:900;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-duotone-900.woff2) format("woff2")}@font-face{font-family:FontAwesomeSharp;font-style:normal;font-weight:300;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-sharp-light-300.woff2) format("woff2")}@font-face{font-family:FontAwesomeSharp;font-style:normal;font-weight:400;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-sharp-regular-400.woff2) format("woff2")}@font-face{font-family:FontAwesomeSharp;font-style:normal;font-weight:900;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-sharp-solid-900.woff2) format("woff2")}@font-face{font-family:FontAwesomeBrand;font-style:normal;font-weight:400;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-brands-400.woff2) format("woff2")}body{--colorAlertErrorRGB: 255 65 54;--colorAlertWarningRGB: 255 220 0;--colorAlertSuccessRGB: 46 204 64;--colorBorderPrimary: #ABB0BB;--colorContentPrimary: #383838;--colorContentSecondary: #666;--colorContentTertiary: #E6E6E6;--colorBackgroundPrimary: #FFF;--colorBackgroundSecondary: #F6F6F6;--colorBackgroundTertiary: #EEE;--colorShadow: rgb(100 100 100 / 40%);--gradientBrand: linear-gradient(320deg, rgb(var(--colorBrandPrimaryRgb)), rgb(var(--colorBrandSecondaryRgb)));--cubicBezierPrimary: cubic-bezier(.23, 1, .32, 1);--siderWidth: 300px;--siderWidthMini: 60px;scroll-behavior:smooth}body.red{--colorBrandPrimaryRgb: 249 34 75;--colorBrandSecondaryRgb: 255 68 68;--colorBrandAccentRgb: 255 56 83}body.pink{--colorBrandPrimaryRgb: 252 33 105;--colorBrandSecondaryRgb: 226 33 255;--colorBrandAccentRgb: 255 85 136}body.orange{--colorBrandPrimaryRgb: 255 127 34;--colorBrandSecondaryRgb: 255 65 65;--colorBrandAccentRgb: 255 108 103}body.blue{--colorBrandPrimaryRgb: 34 252 176;--colorBrandSecondaryRgb: 33 129 250;--colorBrandAccentRgb: 33 149 243}body.violet{--colorBrandPrimaryRgb: 63 0 230;--colorBrandSecondaryRgb: 150 44 255;--colorBrandAccentRgb: 127 81 255}body.black{--colorBrandPrimaryRgb: 22 20 28;--colorBrandSecondaryRgb: 9 8 11;--colorBrandAccentRgb: 40 39 44}body.dark{--colorContentPrimary: #A1A1A1;--colorContentSecondary: #636363;--colorContentTertiary: #383838;--colorBackgroundPrimary: #111;--colorBackgroundSecondary: #222;--colorBackgroundTertiary: #333}body ::selection{color:#fff;background:rgb(var(--colorBrandAccentRgb))}*{font-family:Montserrat,sans-serif;font-weight:500;box-sizing:border-box}._icon_awnbf_2{position:relative;width:var(--iconSize);height:var(--iconSize);font-size:var(--iconSize);display:flex;justify-content:center;align-items:center;font-variant:normal;line-height:1;text-rendering:auto;-webkit-user-select:none;user-select:none;z-index:1;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;transition:all .4s var(--cubicBezierPrimary)}._icon_awnbf_2:before{position:absolute;display:block;color:inherit;content:attr(data-content)}._icon_awnbf_2._thin_awnbf_25{font-family:FontAwesome;font-weight:100}._icon_awnbf_2._light_awnbf_29{font-family:FontAwesome;font-weight:300}._icon_awnbf_2._regular_awnbf_33{font-family:FontAwesome;font-weight:400}._icon_awnbf_2._solid_awnbf_37{font-family:FontAwesome;font-weight:900}._icon_awnbf_2._duotone_awnbf_41{font-family:FontAwesomeDuotone;font-weight:900}._icon_awnbf_2._duotone_awnbf_41:after{position:absolute;display:block;color:inherit;content:attr(data-content) attr(data-content);opacity:.3}._icon_awnbf_2._sharpSolid_awnbf_52{font-family:FontAwesomeSharp;font-weight:900}._icon_awnbf_2._sharpRegular_awnbf_56{font-family:FontAwesomeSharp;font-weight:400}._icon_awnbf_2._sharpLight_awnbf_60{font-family:FontAwesomeSharp;font-weight:300}._icon_awnbf_2._brand_awnbf_64{font-family:FontAwesomeBrand;font-weight:400}._progressBar_luf46_1{position:relative;width:100%;height:3px;display:flex;justify-content:flex-start;align-items:center;border-radius:9999px;overflow:hidden}._progressBar_luf46_1:before{content:"";position:absolute;left:0;width:100%;height:1px;border-radius:9999px;opacity:.3;background:var(--colorBorderPrimary);transition:all .5s var(--cubicBezierPrimary)}._progressBar_luf46_1>._progress_luf46_1{position:absolute;width:100%;height:3px;display:block;background:var(--gradientBrand);border-radius:9999px;transition:all .5s var(--cubicBezierPrimary)}._progressBar_luf46_1._intermediate_luf46_31{border-radius:9999px}._progressBar_luf46_1._intermediate_luf46_31:before{height:100%;background:rgb(var(--colorBrandAccentRgb))}._progressBar_luf46_1._intermediate_luf46_31>._progress_luf46_1{width:150%;background-image:repeating-linear-gradient(60deg,transparent,transparent .5rem,rgb(var(--colorBrandAccentRgb)) .5rem,rgb(var(--colorBrandAccentRgb)) 1.5rem);animation:_barberPole_luf46_1 .2s infinite linear}@keyframes _barberPole_luf46_1{0%{transform:translate(-1.75rem)}to{transform:translate(0)}}._button_6uqr8_1{--duration: .6s;--themeColor: var(--colorBrandAccentRgb);--maxRippleSize: 100px 40px;position:relative;display:flex;justify-content:center;align-items:center;border:none;box-shadow:0 0 0 0 rgb(var(--themeColor)/0%);border-radius:9999px;cursor:pointer;-webkit-user-select:none;user-select:none;overflow:hidden;transition:all var(--duration) var(--cubicBezierPrimary)}._button_6uqr8_1 ._label_6uqr8_17{margin:0;text-transform:uppercase;z-index:1;transition:all var(--duration) var(--cubicBezierPrimary)}._button_6uqr8_1 ._icon_6uqr8_23{transition:all var(--duration) var(--cubicBezierPrimary)}._button_6uqr8_1 ._underline_6uqr8_26{position:absolute;width:100%;left:0;bottom:0}._button_6uqr8_1 ._underline_6uqr8_26>span{width:20%!important}._button_6uqr8_1:before{content:"";position:absolute;display:block;width:100%;height:100%;background:rgb(var(--themeColor));filter:contrast(1.2) brightness(.8);clip-path:circle(0% at 50% 50%);border-radius:9999px;z-index:0;opacity:0;transition:all var(--duration) var(--cubicBezierPrimary)}._button_6uqr8_1._primaryType_6uqr8_49,._button_6uqr8_1._primaryDangerType_6uqr8_49{background:rgb(var(--themeColor));box-shadow:0 0 0 2px rgb(var(--themeColor)/40%);color:#fff}._button_6uqr8_1._secondaryType_6uqr8_54,._button_6uqr8_1._secondaryDangerType_6uqr8_54{background:var(--colorBackgroundTertiary);box-shadow:0 0 0 2px rgb(var(--colorBackgroundTertiary)/40%);color:rgb(var(--themeColor))}._button_6uqr8_1._linkType_6uqr8_59,._button_6uqr8_1._linkDangerType_6uqr8_59{background:none;box-shadow:none!important;border-radius:unset;color:var(--colorContentPrimary);overflow:unset}._button_6uqr8_1._linkType_6uqr8_59 ._label_6uqr8_17,._button_6uqr8_1._linkDangerType_6uqr8_59 ._label_6uqr8_17{letter-spacing:unset;text-transform:unset}._button_6uqr8_1._linkType_6uqr8_59:before,._button_6uqr8_1._linkDangerType_6uqr8_59:before{display:none}._button_6uqr8_1._linkType_6uqr8_59:hover,._button_6uqr8_1._linkDangerType_6uqr8_59:hover{color:rgb(var(--themeColor))}._button_6uqr8_1._linkType_6uqr8_59:hover ._label_6uqr8_17,._button_6uqr8_1._linkDangerType_6uqr8_59:hover ._label_6uqr8_17{filter:contrast(.8) brightness(1.2)}._button_6uqr8_1._linkType_6uqr8_59:active ._label_6uqr8_17,._button_6uqr8_1._linkDangerType_6uqr8_59:active ._label_6uqr8_17{filter:contrast(1.2) brightness(.8)}._button_6uqr8_1._primaryDangerType_6uqr8_49,._button_6uqr8_1._secondaryDangerType_6uqr8_54,._button_6uqr8_1._linkDangerType_6uqr8_59{--themeColor: var(--colorAlertErrorRGB)}._button_6uqr8_1._primaryDangerType_6uqr8_49 ._underline_6uqr8_26 span,._button_6uqr8_1._secondaryDangerType_6uqr8_54 ._underline_6uqr8_26 span,._button_6uqr8_1._linkDangerType_6uqr8_59 ._underline_6uqr8_26 span{background:rgb(var(--themeColor))}._button_6uqr8_1._miniSize_6uqr8_88{--maxRippleSize: 80px 40px;line-height:16px;padding:8px 16px;gap:8px}._button_6uqr8_1._miniSize_6uqr8_88 ._label_6uqr8_17{font-size:12px;font-variation-settings:"wdth" 75,"wght" 400;letter-spacing:2px}._button_6uqr8_1._miniSize_6uqr8_88._iconOnly_6uqr8_99{padding:0}._button_6uqr8_1._miniSize_6uqr8_88._iconOnly_6uqr8_99 ._icon_6uqr8_23{width:32px;height:32px}._button_6uqr8_1._defaultSize_6uqr8_106{--maxRippleSize: 100px 50px;line-height:20px;padding:12px 24px;gap:10px}._button_6uqr8_1._defaultSize_6uqr8_106 ._label_6uqr8_17{font-size:16px;font-variation-settings:"wdth" 75,"wght" 500;letter-spacing:2px}._button_6uqr8_1._defaultSize_6uqr8_106._iconOnly_6uqr8_99{padding:0}._button_6uqr8_1._defaultSize_6uqr8_106._iconOnly_6uqr8_99 ._icon_6uqr8_23{width:44px;height:44px}._button_6uqr8_1._largeSize_6uqr8_124{--maxRippleSize: 150px 75px;line-height:28px;padding:16px 32px;gap:14px}._button_6uqr8_1._largeSize_6uqr8_124 ._label_6uqr8_17{font-size:22px;font-variation-settings:"wdth" 75,"wght" 600;letter-spacing:4px}._button_6uqr8_1._largeSize_6uqr8_124._iconOnly_6uqr8_99{padding:0}._button_6uqr8_1._largeSize_6uqr8_124._iconOnly_6uqr8_99 ._icon_6uqr8_23{width:60px;height:60px}._button_6uqr8_1:hover{box-shadow:0 0 0 5px rgb(var(--themeColor)/50%);transition:all var(--duration) var(--cubicBezierPrimary);color:#fff}._button_6uqr8_1:hover ._underline_6uqr8_26 span{width:100%!important}._button_6uqr8_1:hover:before{clip-path:circle(100% at 50% 50%);opacity:1}._button_6uqr8_1:active{box-shadow:0 0 0 7px rgb(var(--themeColor)/50%)}._button_6uqr8_1._clicked_6uqr8_157{box-shadow:0 0 0 0 rgb(var(--themeColor)/0%);animation:_ripple_6uqr8_1 var(--duration) linear;color:#fff}._button_6uqr8_1._clicked_6uqr8_157:before{clip-path:circle(100% at 50% 50%);opacity:1}._button_6uqr8_1._loading_6uqr8_166{--loaderColor: rgb(var(--themeColor));pointer-events:none;background:rgb(var(--themeColor)/80%)}._button_6uqr8_1._loading_6uqr8_166._secondaryType_6uqr8_54,._button_6uqr8_1._loading_6uqr8_166._secondaryDangerType_6uqr8_54{--loaderColor: var(--colorBackgroundPrimary);background:var(--colorBackgroundTertiary)}._button_6uqr8_1._loading_6uqr8_166._linkType_6uqr8_59,._button_6uqr8_1._loading_6uqr8_166._linkDangerType_6uqr8_59{background:none}._button_6uqr8_1._loading_6uqr8_166._linkType_6uqr8_59 ._underline_6uqr8_26>span,._button_6uqr8_1._loading_6uqr8_166._linkDangerType_6uqr8_59 ._underline_6uqr8_26>span{width:150%!important}._button_6uqr8_1._loading_6uqr8_166._linkType_6uqr8_59:after,._button_6uqr8_1._loading_6uqr8_166._linkDangerType_6uqr8_59:after{display:none}._button_6uqr8_1._loading_6uqr8_166:after{content:"";position:absolute;display:block;width:150%;height:100%;z-index:0;border-radius:9999px;background-image:repeating-linear-gradient(60deg,transparent,transparent .75rem,var(--loaderColor) .75rem,var(--loaderColor) 1.5rem);animation:_barberPole_6uqr8_1 .25s infinite linear}._button_6uqr8_1._loading_6uqr8_166._iconOnly_6uqr8_99{background:transparent;box-shadow:0 0 0 0 rgb(var(--themeColor)/0%);overflow:unset}._button_6uqr8_1._loading_6uqr8_166._iconOnly_6uqr8_99._secondaryType_6uqr8_54,._button_6uqr8_1._loading_6uqr8_166._iconOnly_6uqr8_99._secondaryDangerType_6uqr8_54{color:#fff}._button_6uqr8_1._loading_6uqr8_166._iconOnly_6uqr8_99:before{clip-path:circle(45% at 50% 50%);opacity:1}._button_6uqr8_1._loading_6uqr8_166._iconOnly_6uqr8_99:after{width:100%;background:none;border:2px solid rgb(var(--themeColor));border-top-color:transparent;border-bottom-color:transparent;animation:_spin_6uqr8_1 .25s infinite linear}._button_6uqr8_1:disabled{background:rgb(var(--themeColor)/20%);color:rgb(var(--themeColor)/75%);pointer-events:none;filter:grayscale(1)}._button_6uqr8_1:disabled._secondaryType_6uqr8_54,._button_6uqr8_1:disabled._secondaryDangerType_6uqr8_54{background:rgb(var(--themeColor)/5%)}._button_6uqr8_1:disabled._linkType_6uqr8_59{background:none}._button_6uqr8_1:disabled._linkType_6uqr8_59 ._underline_6uqr8_26:before{width:0%}._button_6uqr8_1:disabled._linkType_6uqr8_59 ._underline_6uqr8_26 span{width:0%}@keyframes _ripple_6uqr8_1{0%{box-shadow:0 0 0 7px rgb(var(--themeColor)/50%)}to{box-shadow:0 0 var(--maxRippleSize) rgb(var(--themeColor)/0%)}}@keyframes _barberPole_6uqr8_1{0%{transform:translate(-1.75rem)}to{transform:translate(0)}}@keyframes _spin_6uqr8_1{0%{transform:rotate(0)}to{transform:rotate(180deg)}}._textfield_7y99a_1{--duration: .6s;position:relative;width:400px;display:flex;justify-content:center;align-items:center;border-radius:20px;box-shadow:0 0 0 1px rgb(var(--colorBrandAccentRgb)/50%);background:var(--colorBackgroundSecondary);color:rgb(var(--colorContentPrimary));transition:all var(--duration) var(--cubicBezierPrimary)}._textfield_7y99a_1:before{content:"";position:absolute;display:block;width:100%;height:100%;background:rgb(var(--colorBrandAccentRgb));clip-path:circle(0% at 20px 50%);border-radius:9999px;z-index:0;opacity:0;transition:all var(--duration) var(--cubicBezierPrimary)}._textfield_7y99a_1 ._icon_7y99a_27{position:absolute;left:0;width:40px;height:40px;color:rgb(var(--colorBrandAccentRgb)/100%);pointer-events:none;transition:all 0s}._textfield_7y99a_1 ._input_7y99a_36{width:100%;height:40px;outline:none;border:none;background:transparent;padding:10px 20px;font-size:16px;z-index:1;color:rgb(var(--colorContentPrimary));font-variation-settings:"wdth" 75,"wght" 400;transition:all var(--duration) var(--cubicBezierPrimary)}._textfield_7y99a_1 ._placeholder_7y99a_49{position:absolute;left:0;display:flex;align-items:center;color:var(--colorContentSecondary);transform:translate(14px);transform-origin:0 50%;line-height:20px;padding:0 8px;transition:all var(--duration) var(--cubicBezierPrimary)}._textfield_7y99a_1 ._placeholder_7y99a_49:before{content:"";position:absolute;left:0;display:block;width:100%;height:50%;background:var(--colorBackgroundPrimary);scale:0;z-index:-1;transition:all var(--duration) var(--cubicBezierPrimary)}._textfield_7y99a_1._withIcon_7y99a_73:before{clip-path:circle(15px at 20px 50%);opacity:.4}._textfield_7y99a_1._withIcon_7y99a_73 ._input_7y99a_36{padding:10px 20px 10px 44px}._textfield_7y99a_1._withIcon_7y99a_73 ._placeholder_7y99a_49{transform:translate(36px)}._textfield_7y99a_1._textarea_7y99a_83 ._input_7y99a_36{height:200px;padding:16px 20px;resize:none}._textfield_7y99a_1._textarea_7y99a_83 ._placeholder_7y99a_49{top:0;transform:translate(20px,16px)}._textfield_7y99a_1._hasValue_7y99a_92 ._placeholder_7y99a_49{transform:translate(24px,-28px);scale:.75;font-weight:900;color:rgb(var(--colorBrandAccentRgb)/100%)}._textfield_7y99a_1._hasValue_7y99a_92 ._placeholder_7y99a_49:before{scale:1}._textfield_7y99a_1._hasValue_7y99a_92._withIcon_7y99a_73 ._placeholder_7y99a_49{transform:translate(52px,-28px)}._textfield_7y99a_1._hasValue_7y99a_92._textarea_7y99a_83 ._placeholder_7y99a_49{transform:translate(24px,-14px)}._textfield_7y99a_1:focus-within{box-shadow:0 0 0 2px rgb(var(--colorBrandAccentRgb)/50%);background:var(--colorBackgroundPrimary)}._textfield_7y99a_1:focus-within ._placeholder_7y99a_49{transform:translate(24px,-28px);scale:.75;font-weight:900;color:rgb(var(--colorBrandAccentRgb)/100%)}._textfield_7y99a_1:focus-within ._placeholder_7y99a_49:before{scale:1}._textfield_7y99a_1:focus-within._withIcon_7y99a_73 ._placeholder_7y99a_49{transform:translate(52px,-28px)}._textfield_7y99a_1:focus-within._textarea_7y99a_83 ._placeholder_7y99a_49{transform:translate(24px,-14px)}._textfield_7y99a_1:focus-within._withIcon_7y99a_73:before{clip-path:circle(17px at 20px 50%);opacity:.8}._textfield_7y99a_1:focus-within._withIcon_7y99a_73 ._icon_7y99a_27{color:#fff;font-weight:900}._sider_9guyz_1{--duration: .6s;--paddingLeft: 0px;--paddingRight: 0px;--borderRadius: 36px;width:100%;height:100%;background:rgb(var(--colorBrandAccentRgb)/90%);padding:0 var(--paddingRight) 0 var(--paddingLeft);overflow:hidden;transition:padding var(--duration) ease}._sider_9guyz_1 ._leftSiderContainer_9guyz_13{position:fixed;left:0;width:var(--siderWidth);height:100%;z-index:0}._sider_9guyz_1 ._rightSiderContainer_9guyz_20{position:fixed;right:0;width:var(--siderWidth);height:100%;z-index:1}._sider_9guyz_1 ._content_9guyz_27{position:relative;width:100%;height:100%;background:var(--colorBackgroundPrimary);box-shadow:0 0 50px 2px #0000003d;border-radius:0;z-index:2;transition:all var(--duration) var(--cubicBezierPrimary)}._sider_9guyz_1._miniLeftSider_9guyz_37{--paddingLeft: var(--siderWidthMini)}._sider_9guyz_1._miniLeftSider_9guyz_37 ._content_9guyz_27{border-top-left-radius:var(--borderRadius);border-bottom-left-radius:var(--borderRadius)}._sider_9guyz_1._miniRightSider_9guyz_44{--paddingRight: var(--siderWidthMini)}._sider_9guyz_1._miniRightSider_9guyz_44 ._content_9guyz_27{border-top-right-radius:var(--borderRadius);border-bottom-right-radius:var(--borderRadius)}._sider_9guyz_1._leftOpen_9guyz_51 ._content_9guyz_27{border-radius:36px;transform:translate(calc(var(--siderWidth) - var(--paddingLeft)));transform-origin:left center;scale:.95}._sider_9guyz_1._rightOpen_9guyz_57 ._content_9guyz_27{border-radius:36px;transform:translate(calc((var(--siderWidth) - var(--paddingRight)) * -1));transform-origin:right center;scale:.95}._navigation_zrgjp_1{--duration: .4s;width:calc(var(--siderWidth) + 16px);height:100%;display:flex;flex-direction:column;padding:16px 0 28px}._navigation_zrgjp_1 ._brand_zrgjp_9{font-size:32px;color:#fff;padding:24px 8px;font-variation-settings:"wdth" 75,"wght" 400;text-transform:capitalize;-webkit-user-select:none;user-select:none;cursor:pointer}._navigation_zrgjp_1 ._routeList_zrgjp_18{width:100%;display:flex;flex-direction:column;flex:1;-webkit-user-select:none;user-select:none;cursor:pointer}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18{position:relative;display:flex;align-items:center;gap:2px;text-decoration:none;color:#fff;transition:all var(--duration) var(--cubicBezierPrimary)}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18:before{content:"";position:absolute;display:block;width:100%;height:100%;background:rgb(var(--colorBrandAccentRgb)/0%);filter:contrast(2) brightness(.75);z-index:0;transition:all var(--duration) var(--cubicBezierPrimary)}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18:after{content:"";position:absolute;display:block;width:100%;height:100%;background:rgb(var(--colorBrandAccentRgb));clip-path:circle(0% at calc(var(--siderWidthMini) / 2) 50%);filter:contrast(2) brightness(.75);z-index:0;opacity:.4;transition:all var(--duration) var(--cubicBezierPrimary)}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18 ._icon_zrgjp_59{width:var(--siderWidthMini);height:var(--siderWidthMini);font-size:calc(var(--siderWidthMini) - 40px);color:#fff}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18 ._label_zrgjp_65{font-size:16px;font-variation-settings:"wdth" 75,"wght" 400;text-transform:capitalize;z-index:1}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18:last-of-type{margin-top:auto}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18:hover:before{background:rgb(var(--colorBrandAccentRgb)/30%)}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18._active_zrgjp_77:after{clip-path:circle(var(--siderWidth) at calc(var(--siderWidthMini) / 2) 50%);opacity:1;transition:all var(--duration) ease-in-out}
|
|
1
|
+
@import"https://fonts.googleapis.com/css2?family=Montserrat&display=swap";@font-face{font-family:FontAwesome;font-style:normal;font-weight:100;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-thin-100.woff2) format("woff2")}@font-face{font-family:FontAwesome;font-style:normal;font-weight:300;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-light-300.woff2) format("woff2")}@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-regular-400.woff2) format("woff2")}@font-face{font-family:FontAwesome;font-style:normal;font-weight:900;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-solid-900.woff2) format("woff2")}@font-face{font-family:FontAwesomeDuotone;font-style:normal;font-weight:900;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-duotone-900.woff2) format("woff2")}@font-face{font-family:FontAwesomeSharp;font-style:normal;font-weight:300;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-sharp-light-300.woff2) format("woff2")}@font-face{font-family:FontAwesomeSharp;font-style:normal;font-weight:400;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-sharp-regular-400.woff2) format("woff2")}@font-face{font-family:FontAwesomeSharp;font-style:normal;font-weight:900;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-sharp-solid-900.woff2) format("woff2")}@font-face{font-family:FontAwesomeBrand;font-style:normal;font-weight:400;font-display:block;src:url(https://cdn.jsdelivr.net/gh/itzzjarvis/Assets/fonts/fontAwesome/fa-brands-400.woff2) format("woff2")}body{--colorAlertErrorRGB: 255 65 54;--colorAlertWarningRGB: 255 220 0;--colorAlertSuccessRGB: 46 204 64;--colorBorderPrimary: #ABB0BB;--colorContentPrimary: #383838;--colorContentSecondary: #666;--colorContentTertiary: #E6E6E6;--colorBackgroundPrimary: #FFF;--colorBackgroundSecondary: #F6F6F6;--colorBackgroundTertiary: #EEE;--colorShadow: rgb(100 100 100 / 40%);--gradientBrand: linear-gradient(320deg, rgb(var(--colorBrandPrimaryRgb)), rgb(var(--colorBrandSecondaryRgb)));--cubicBezierPrimary: cubic-bezier(.23, 1, .32, 1);--siderWidth: 300px;--siderWidthMini: 60px;scroll-behavior:smooth}body.red{--colorBrandPrimaryRgb: 249 34 75;--colorBrandSecondaryRgb: 255 68 68;--colorBrandAccentRgb: 255 56 83}body.pink{--colorBrandPrimaryRgb: 252 33 105;--colorBrandSecondaryRgb: 226 33 255;--colorBrandAccentRgb: 255 85 136}body.orange{--colorBrandPrimaryRgb: 255 127 34;--colorBrandSecondaryRgb: 255 65 65;--colorBrandAccentRgb: 255 108 103}body.blue{--colorBrandPrimaryRgb: 34 252 176;--colorBrandSecondaryRgb: 33 129 250;--colorBrandAccentRgb: 33 149 243}body.violet{--colorBrandPrimaryRgb: 63 0 230;--colorBrandSecondaryRgb: 150 44 255;--colorBrandAccentRgb: 127 81 255}body.black{--colorBrandPrimaryRgb: 22 20 28;--colorBrandSecondaryRgb: 9 8 11;--colorBrandAccentRgb: 40 39 44}body.dark{--colorContentPrimary: #A1A1A1;--colorContentSecondary: #636363;--colorContentTertiary: #383838;--colorBackgroundPrimary: #111;--colorBackgroundSecondary: #222;--colorBackgroundTertiary: #333}body ::selection{color:#fff;background:rgb(var(--colorBrandAccentRgb))}*{font-family:Montserrat,sans-serif;font-weight:500;box-sizing:border-box}._button_6uqr8_1{--duration: .6s;--themeColor: var(--colorBrandAccentRgb);--maxRippleSize: 100px 40px;position:relative;display:flex;justify-content:center;align-items:center;border:none;box-shadow:0 0 0 0 rgb(var(--themeColor)/0%);border-radius:9999px;cursor:pointer;-webkit-user-select:none;user-select:none;overflow:hidden;transition:all var(--duration) var(--cubicBezierPrimary)}._button_6uqr8_1 ._label_6uqr8_17{margin:0;text-transform:uppercase;z-index:1;transition:all var(--duration) var(--cubicBezierPrimary)}._button_6uqr8_1 ._icon_6uqr8_23{transition:all var(--duration) var(--cubicBezierPrimary)}._button_6uqr8_1 ._underline_6uqr8_26{position:absolute;width:100%;left:0;bottom:0}._button_6uqr8_1 ._underline_6uqr8_26>span{width:20%!important}._button_6uqr8_1:before{content:"";position:absolute;display:block;width:100%;height:100%;background:rgb(var(--themeColor));filter:contrast(1.2) brightness(.8);clip-path:circle(0% at 50% 50%);border-radius:9999px;z-index:0;opacity:0;transition:all var(--duration) var(--cubicBezierPrimary)}._button_6uqr8_1._primaryType_6uqr8_49,._button_6uqr8_1._primaryDangerType_6uqr8_49{background:rgb(var(--themeColor));box-shadow:0 0 0 2px rgb(var(--themeColor)/40%);color:#fff}._button_6uqr8_1._secondaryType_6uqr8_54,._button_6uqr8_1._secondaryDangerType_6uqr8_54{background:var(--colorBackgroundTertiary);box-shadow:0 0 0 2px rgb(var(--colorBackgroundTertiary)/40%);color:rgb(var(--themeColor))}._button_6uqr8_1._linkType_6uqr8_59,._button_6uqr8_1._linkDangerType_6uqr8_59{background:none;box-shadow:none!important;border-radius:unset;color:var(--colorContentPrimary);overflow:unset}._button_6uqr8_1._linkType_6uqr8_59 ._label_6uqr8_17,._button_6uqr8_1._linkDangerType_6uqr8_59 ._label_6uqr8_17{letter-spacing:unset;text-transform:unset}._button_6uqr8_1._linkType_6uqr8_59:before,._button_6uqr8_1._linkDangerType_6uqr8_59:before{display:none}._button_6uqr8_1._linkType_6uqr8_59:hover,._button_6uqr8_1._linkDangerType_6uqr8_59:hover{color:rgb(var(--themeColor))}._button_6uqr8_1._linkType_6uqr8_59:hover ._label_6uqr8_17,._button_6uqr8_1._linkDangerType_6uqr8_59:hover ._label_6uqr8_17{filter:contrast(.8) brightness(1.2)}._button_6uqr8_1._linkType_6uqr8_59:active ._label_6uqr8_17,._button_6uqr8_1._linkDangerType_6uqr8_59:active ._label_6uqr8_17{filter:contrast(1.2) brightness(.8)}._button_6uqr8_1._primaryDangerType_6uqr8_49,._button_6uqr8_1._secondaryDangerType_6uqr8_54,._button_6uqr8_1._linkDangerType_6uqr8_59{--themeColor: var(--colorAlertErrorRGB)}._button_6uqr8_1._primaryDangerType_6uqr8_49 ._underline_6uqr8_26 span,._button_6uqr8_1._secondaryDangerType_6uqr8_54 ._underline_6uqr8_26 span,._button_6uqr8_1._linkDangerType_6uqr8_59 ._underline_6uqr8_26 span{background:rgb(var(--themeColor))}._button_6uqr8_1._miniSize_6uqr8_88{--maxRippleSize: 80px 40px;line-height:16px;padding:8px 16px;gap:8px}._button_6uqr8_1._miniSize_6uqr8_88 ._label_6uqr8_17{font-size:12px;font-variation-settings:"wdth" 75,"wght" 400;letter-spacing:2px}._button_6uqr8_1._miniSize_6uqr8_88._iconOnly_6uqr8_99{padding:0}._button_6uqr8_1._miniSize_6uqr8_88._iconOnly_6uqr8_99 ._icon_6uqr8_23{width:32px;height:32px}._button_6uqr8_1._defaultSize_6uqr8_106{--maxRippleSize: 100px 50px;line-height:20px;padding:12px 24px;gap:10px}._button_6uqr8_1._defaultSize_6uqr8_106 ._label_6uqr8_17{font-size:16px;font-variation-settings:"wdth" 75,"wght" 500;letter-spacing:2px}._button_6uqr8_1._defaultSize_6uqr8_106._iconOnly_6uqr8_99{padding:0}._button_6uqr8_1._defaultSize_6uqr8_106._iconOnly_6uqr8_99 ._icon_6uqr8_23{width:44px;height:44px}._button_6uqr8_1._largeSize_6uqr8_124{--maxRippleSize: 150px 75px;line-height:28px;padding:16px 32px;gap:14px}._button_6uqr8_1._largeSize_6uqr8_124 ._label_6uqr8_17{font-size:22px;font-variation-settings:"wdth" 75,"wght" 600;letter-spacing:4px}._button_6uqr8_1._largeSize_6uqr8_124._iconOnly_6uqr8_99{padding:0}._button_6uqr8_1._largeSize_6uqr8_124._iconOnly_6uqr8_99 ._icon_6uqr8_23{width:60px;height:60px}._button_6uqr8_1:hover{box-shadow:0 0 0 5px rgb(var(--themeColor)/50%);transition:all var(--duration) var(--cubicBezierPrimary);color:#fff}._button_6uqr8_1:hover ._underline_6uqr8_26 span{width:100%!important}._button_6uqr8_1:hover:before{clip-path:circle(100% at 50% 50%);opacity:1}._button_6uqr8_1:active{box-shadow:0 0 0 7px rgb(var(--themeColor)/50%)}._button_6uqr8_1._clicked_6uqr8_157{box-shadow:0 0 0 0 rgb(var(--themeColor)/0%);animation:_ripple_6uqr8_1 var(--duration) linear;color:#fff}._button_6uqr8_1._clicked_6uqr8_157:before{clip-path:circle(100% at 50% 50%);opacity:1}._button_6uqr8_1._loading_6uqr8_166{--loaderColor: rgb(var(--themeColor));pointer-events:none;background:rgb(var(--themeColor)/80%)}._button_6uqr8_1._loading_6uqr8_166._secondaryType_6uqr8_54,._button_6uqr8_1._loading_6uqr8_166._secondaryDangerType_6uqr8_54{--loaderColor: var(--colorBackgroundPrimary);background:var(--colorBackgroundTertiary)}._button_6uqr8_1._loading_6uqr8_166._linkType_6uqr8_59,._button_6uqr8_1._loading_6uqr8_166._linkDangerType_6uqr8_59{background:none}._button_6uqr8_1._loading_6uqr8_166._linkType_6uqr8_59 ._underline_6uqr8_26>span,._button_6uqr8_1._loading_6uqr8_166._linkDangerType_6uqr8_59 ._underline_6uqr8_26>span{width:150%!important}._button_6uqr8_1._loading_6uqr8_166._linkType_6uqr8_59:after,._button_6uqr8_1._loading_6uqr8_166._linkDangerType_6uqr8_59:after{display:none}._button_6uqr8_1._loading_6uqr8_166:after{content:"";position:absolute;display:block;width:150%;height:100%;z-index:0;border-radius:9999px;background-image:repeating-linear-gradient(60deg,transparent,transparent .75rem,var(--loaderColor) .75rem,var(--loaderColor) 1.5rem);animation:_barberPole_6uqr8_1 .25s infinite linear}._button_6uqr8_1._loading_6uqr8_166._iconOnly_6uqr8_99{background:transparent;box-shadow:0 0 0 0 rgb(var(--themeColor)/0%);overflow:unset}._button_6uqr8_1._loading_6uqr8_166._iconOnly_6uqr8_99._secondaryType_6uqr8_54,._button_6uqr8_1._loading_6uqr8_166._iconOnly_6uqr8_99._secondaryDangerType_6uqr8_54{color:#fff}._button_6uqr8_1._loading_6uqr8_166._iconOnly_6uqr8_99:before{clip-path:circle(45% at 50% 50%);opacity:1}._button_6uqr8_1._loading_6uqr8_166._iconOnly_6uqr8_99:after{width:100%;background:none;border:2px solid rgb(var(--themeColor));border-top-color:transparent;border-bottom-color:transparent;animation:_spin_6uqr8_1 .25s infinite linear}._button_6uqr8_1:disabled{background:rgb(var(--themeColor)/20%);color:rgb(var(--themeColor)/75%);pointer-events:none;filter:grayscale(1)}._button_6uqr8_1:disabled._secondaryType_6uqr8_54,._button_6uqr8_1:disabled._secondaryDangerType_6uqr8_54{background:rgb(var(--themeColor)/5%)}._button_6uqr8_1:disabled._linkType_6uqr8_59{background:none}._button_6uqr8_1:disabled._linkType_6uqr8_59 ._underline_6uqr8_26:before{width:0%}._button_6uqr8_1:disabled._linkType_6uqr8_59 ._underline_6uqr8_26 span{width:0%}@keyframes _ripple_6uqr8_1{0%{box-shadow:0 0 0 7px rgb(var(--themeColor)/50%)}to{box-shadow:0 0 var(--maxRippleSize) rgb(var(--themeColor)/0%)}}@keyframes _barberPole_6uqr8_1{0%{transform:translate(-1.75rem)}to{transform:translate(0)}}@keyframes _spin_6uqr8_1{0%{transform:rotate(0)}to{transform:rotate(180deg)}}._icon_awnbf_2{position:relative;width:var(--iconSize);height:var(--iconSize);font-size:var(--iconSize);display:flex;justify-content:center;align-items:center;font-variant:normal;line-height:1;text-rendering:auto;-webkit-user-select:none;user-select:none;z-index:1;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;transition:all .4s var(--cubicBezierPrimary)}._icon_awnbf_2:before{position:absolute;display:block;color:inherit;content:attr(data-content)}._icon_awnbf_2._thin_awnbf_25{font-family:FontAwesome;font-weight:100}._icon_awnbf_2._light_awnbf_29{font-family:FontAwesome;font-weight:300}._icon_awnbf_2._regular_awnbf_33{font-family:FontAwesome;font-weight:400}._icon_awnbf_2._solid_awnbf_37{font-family:FontAwesome;font-weight:900}._icon_awnbf_2._duotone_awnbf_41{font-family:FontAwesomeDuotone;font-weight:900}._icon_awnbf_2._duotone_awnbf_41:after{position:absolute;display:block;color:inherit;content:attr(data-content) attr(data-content);opacity:.3}._icon_awnbf_2._sharpSolid_awnbf_52{font-family:FontAwesomeSharp;font-weight:900}._icon_awnbf_2._sharpRegular_awnbf_56{font-family:FontAwesomeSharp;font-weight:400}._icon_awnbf_2._sharpLight_awnbf_60{font-family:FontAwesomeSharp;font-weight:300}._icon_awnbf_2._brand_awnbf_64{font-family:FontAwesomeBrand;font-weight:400}._progressBar_luf46_1{position:relative;width:100%;height:3px;display:flex;justify-content:flex-start;align-items:center;border-radius:9999px;overflow:hidden}._progressBar_luf46_1:before{content:"";position:absolute;left:0;width:100%;height:1px;border-radius:9999px;opacity:.3;background:var(--colorBorderPrimary);transition:all .5s var(--cubicBezierPrimary)}._progressBar_luf46_1>._progress_luf46_1{position:absolute;width:100%;height:3px;display:block;background:var(--gradientBrand);border-radius:9999px;transition:all .5s var(--cubicBezierPrimary)}._progressBar_luf46_1._intermediate_luf46_31{border-radius:9999px}._progressBar_luf46_1._intermediate_luf46_31:before{height:100%;background:rgb(var(--colorBrandAccentRgb))}._progressBar_luf46_1._intermediate_luf46_31>._progress_luf46_1{width:150%;background-image:repeating-linear-gradient(60deg,transparent,transparent .5rem,rgb(var(--colorBrandAccentRgb)) .5rem,rgb(var(--colorBrandAccentRgb)) 1.5rem);animation:_barberPole_luf46_1 .2s infinite linear}@keyframes _barberPole_luf46_1{0%{transform:translate(-1.75rem)}to{transform:translate(0)}}._textfield_7y99a_1{--duration: .6s;position:relative;width:400px;display:flex;justify-content:center;align-items:center;border-radius:20px;box-shadow:0 0 0 1px rgb(var(--colorBrandAccentRgb)/50%);background:var(--colorBackgroundSecondary);color:rgb(var(--colorContentPrimary));transition:all var(--duration) var(--cubicBezierPrimary)}._textfield_7y99a_1:before{content:"";position:absolute;display:block;width:100%;height:100%;background:rgb(var(--colorBrandAccentRgb));clip-path:circle(0% at 20px 50%);border-radius:9999px;z-index:0;opacity:0;transition:all var(--duration) var(--cubicBezierPrimary)}._textfield_7y99a_1 ._icon_7y99a_27{position:absolute;left:0;width:40px;height:40px;color:rgb(var(--colorBrandAccentRgb)/100%);pointer-events:none;transition:all 0s}._textfield_7y99a_1 ._input_7y99a_36{width:100%;height:40px;outline:none;border:none;background:transparent;padding:10px 20px;font-size:16px;z-index:1;color:rgb(var(--colorContentPrimary));font-variation-settings:"wdth" 75,"wght" 400;transition:all var(--duration) var(--cubicBezierPrimary)}._textfield_7y99a_1 ._placeholder_7y99a_49{position:absolute;left:0;display:flex;align-items:center;color:var(--colorContentSecondary);transform:translate(14px);transform-origin:0 50%;line-height:20px;padding:0 8px;transition:all var(--duration) var(--cubicBezierPrimary)}._textfield_7y99a_1 ._placeholder_7y99a_49:before{content:"";position:absolute;left:0;display:block;width:100%;height:50%;background:var(--colorBackgroundPrimary);scale:0;z-index:-1;transition:all var(--duration) var(--cubicBezierPrimary)}._textfield_7y99a_1._withIcon_7y99a_73:before{clip-path:circle(15px at 20px 50%);opacity:.4}._textfield_7y99a_1._withIcon_7y99a_73 ._input_7y99a_36{padding:10px 20px 10px 44px}._textfield_7y99a_1._withIcon_7y99a_73 ._placeholder_7y99a_49{transform:translate(36px)}._textfield_7y99a_1._textarea_7y99a_83 ._input_7y99a_36{height:200px;padding:16px 20px;resize:none}._textfield_7y99a_1._textarea_7y99a_83 ._placeholder_7y99a_49{top:0;transform:translate(20px,16px)}._textfield_7y99a_1._hasValue_7y99a_92 ._placeholder_7y99a_49{transform:translate(24px,-28px);scale:.75;font-weight:900;color:rgb(var(--colorBrandAccentRgb)/100%)}._textfield_7y99a_1._hasValue_7y99a_92 ._placeholder_7y99a_49:before{scale:1}._textfield_7y99a_1._hasValue_7y99a_92._withIcon_7y99a_73 ._placeholder_7y99a_49{transform:translate(52px,-28px)}._textfield_7y99a_1._hasValue_7y99a_92._textarea_7y99a_83 ._placeholder_7y99a_49{transform:translate(24px,-14px)}._textfield_7y99a_1:focus-within{box-shadow:0 0 0 2px rgb(var(--colorBrandAccentRgb)/50%);background:var(--colorBackgroundPrimary)}._textfield_7y99a_1:focus-within ._placeholder_7y99a_49{transform:translate(24px,-28px);scale:.75;font-weight:900;color:rgb(var(--colorBrandAccentRgb)/100%)}._textfield_7y99a_1:focus-within ._placeholder_7y99a_49:before{scale:1}._textfield_7y99a_1:focus-within._withIcon_7y99a_73 ._placeholder_7y99a_49{transform:translate(52px,-28px)}._textfield_7y99a_1:focus-within._textarea_7y99a_83 ._placeholder_7y99a_49{transform:translate(24px,-14px)}._textfield_7y99a_1:focus-within._withIcon_7y99a_73:before{clip-path:circle(17px at 20px 50%);opacity:.8}._textfield_7y99a_1:focus-within._withIcon_7y99a_73 ._icon_7y99a_27{color:#fff;font-weight:900}._sider_9guyz_1{--duration: .6s;--paddingLeft: 0px;--paddingRight: 0px;--borderRadius: 36px;width:100%;height:100%;background:rgb(var(--colorBrandAccentRgb)/90%);padding:0 var(--paddingRight) 0 var(--paddingLeft);overflow:hidden;transition:padding var(--duration) ease}._sider_9guyz_1 ._leftSiderContainer_9guyz_13{position:fixed;left:0;width:var(--siderWidth);height:100%;z-index:0}._sider_9guyz_1 ._rightSiderContainer_9guyz_20{position:fixed;right:0;width:var(--siderWidth);height:100%;z-index:1}._sider_9guyz_1 ._content_9guyz_27{position:relative;width:100%;height:100%;background:var(--colorBackgroundPrimary);box-shadow:0 0 50px 2px #0000003d;border-radius:0;z-index:2;transition:all var(--duration) var(--cubicBezierPrimary)}._sider_9guyz_1._miniLeftSider_9guyz_37{--paddingLeft: var(--siderWidthMini)}._sider_9guyz_1._miniLeftSider_9guyz_37 ._content_9guyz_27{border-top-left-radius:var(--borderRadius);border-bottom-left-radius:var(--borderRadius)}._sider_9guyz_1._miniRightSider_9guyz_44{--paddingRight: var(--siderWidthMini)}._sider_9guyz_1._miniRightSider_9guyz_44 ._content_9guyz_27{border-top-right-radius:var(--borderRadius);border-bottom-right-radius:var(--borderRadius)}._sider_9guyz_1._leftOpen_9guyz_51 ._content_9guyz_27{border-radius:36px;transform:translate(calc(var(--siderWidth) - var(--paddingLeft)));transform-origin:left center;scale:.95}._sider_9guyz_1._rightOpen_9guyz_57 ._content_9guyz_27{border-radius:36px;transform:translate(calc((var(--siderWidth) - var(--paddingRight)) * -1));transform-origin:right center;scale:.95}._navigation_zrgjp_1{--duration: .4s;width:calc(var(--siderWidth) + 16px);height:100%;display:flex;flex-direction:column;padding:16px 0 28px}._navigation_zrgjp_1 ._brand_zrgjp_9{font-size:32px;color:#fff;padding:24px 8px;font-variation-settings:"wdth" 75,"wght" 400;text-transform:capitalize;-webkit-user-select:none;user-select:none;cursor:pointer}._navigation_zrgjp_1 ._routeList_zrgjp_18{width:100%;display:flex;flex-direction:column;flex:1;-webkit-user-select:none;user-select:none;cursor:pointer}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18{position:relative;display:flex;align-items:center;gap:2px;text-decoration:none;color:#fff;transition:all var(--duration) var(--cubicBezierPrimary)}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18:before{content:"";position:absolute;display:block;width:100%;height:100%;background:rgb(var(--colorBrandAccentRgb)/0%);filter:contrast(2) brightness(.75);z-index:0;transition:all var(--duration) var(--cubicBezierPrimary)}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18:after{content:"";position:absolute;display:block;width:100%;height:100%;background:rgb(var(--colorBrandAccentRgb));clip-path:circle(0% at calc(var(--siderWidthMini) / 2) 50%);filter:contrast(2) brightness(.75);z-index:0;opacity:.4;transition:all var(--duration) var(--cubicBezierPrimary)}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18 ._icon_zrgjp_59{width:var(--siderWidthMini);height:var(--siderWidthMini);font-size:calc(var(--siderWidthMini) - 40px);color:#fff}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18 ._label_zrgjp_65{font-size:16px;font-variation-settings:"wdth" 75,"wght" 400;text-transform:capitalize;z-index:1}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18:last-of-type{margin-top:auto}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18:hover:before{background:rgb(var(--colorBrandAccentRgb)/30%)}._navigation_zrgjp_1 ._routeList_zrgjp_18 ._route_zrgjp_18._active_zrgjp_77:after{clip-path:circle(var(--siderWidth) at calc(var(--siderWidthMini) / 2) 50%);opacity:1;transition:all var(--duration) ease-in-out}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
const s = typeof window < "u", r = s ? window : void 0, c = (n, e) => s ? getComputedStyle((e == null ? void 0 : e.current) || document.documentElement).getPropertyValue(n) : "", v = (n, e) => parseInt(c(n, e).replace(/px/g, "")), g = (n, e) => {
|
|
3
|
+
const t = parseInt(c(n, e).replace(/vh/g, ""));
|
|
4
|
+
return [((r == null ? void 0 : r.innerHeight) ?? 0) * t / 100, t];
|
|
5
|
+
}, h = (n, e) => {
|
|
6
|
+
const t = parseInt(c(n, e).replace(/vw/g, ""));
|
|
7
|
+
return [((r == null ? void 0 : r.innerWidth) ?? 0) * t / 100, t];
|
|
8
|
+
}, b = (n, e, t) => s ? ((t == null ? void 0 : t.current) || document.documentElement).style.setProperty(n, e) : "", w = (n) => new Promise((e) => {
|
|
9
|
+
let t = document.querySelector(n);
|
|
10
|
+
if (t)
|
|
11
|
+
return e(t);
|
|
12
|
+
const o = new MutationObserver(() => {
|
|
13
|
+
t = document.querySelector(n), t && (e(t), o.disconnect());
|
|
14
|
+
});
|
|
15
|
+
o.observe(document.body, { childList: !0, subtree: !0 });
|
|
16
|
+
}), P = (n, e) => {
|
|
17
|
+
var t;
|
|
18
|
+
(t = e == null ? void 0 : e.forEach) == null || t.call(e, (o) => {
|
|
19
|
+
let u;
|
|
20
|
+
new MutationObserver((i) => {
|
|
21
|
+
var a;
|
|
22
|
+
document.querySelector(o) && (u = document.querySelector(o)), (a = i == null ? void 0 : i.forEach) == null || a.call(i, (d) => {
|
|
23
|
+
d.type === "childList" && (Array.from(d.addedNodes).indexOf(u) > -1 && n(u, "added", d), Array.from(d.removedNodes).indexOf(u) > -1 && n(u, "removed", d));
|
|
24
|
+
});
|
|
25
|
+
}).observe(document.body, { childList: !0, subtree: !0 });
|
|
26
|
+
});
|
|
27
|
+
};
|
|
28
|
+
export {
|
|
29
|
+
r as dom,
|
|
30
|
+
P as elementObserver,
|
|
31
|
+
c as getCssProperty,
|
|
32
|
+
v as getCssPropertyPx,
|
|
33
|
+
g as getCssPropertyVh,
|
|
34
|
+
h as getCssPropertyVw,
|
|
35
|
+
s as isClient,
|
|
36
|
+
b as setCssProperty,
|
|
37
|
+
w as waitForElement
|
|
38
|
+
};
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xtreme-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Collection of reusable components that can be used in web projects",
|
|
6
|
-
"main": "dist/index.
|
|
7
|
-
"module": "dist/index.
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.js",
|
|
8
8
|
"types": "dist/index.d.ts",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"dev": "storybook dev -p 3001",
|