@baishuyun/ui-base 6.6.1 → 6.7.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/Select/{Select-CuAdbvvQ.js → Select-CAoozrW7.js} +193 -183
- package/dist/Select/index.js +1 -1
- package/dist/components/Select/__tests__/Select.optionDisabled.test.d.ts +1 -0
- package/dist/components/Select/interface.d.ts +0 -1
- package/dist/index.js +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -16,47 +16,47 @@ import A from "clsx";
|
|
|
16
16
|
import { useControllableValue as ie, useHover as j, useToggle as ae } from "ahooks";
|
|
17
17
|
import { AnimatePresence as oe, motion as M } from "motion/react";
|
|
18
18
|
import { FloatingPortal as se } from "@floating-ui/react";
|
|
19
|
-
import
|
|
19
|
+
import ce from "fuse.js";
|
|
20
20
|
//#region src/components/Select/constants.ts
|
|
21
|
-
var
|
|
21
|
+
var N = /* @__PURE__ */ function(e) {
|
|
22
22
|
return e.SINGLE = "single", e.MULTIPLE = "multiple", e;
|
|
23
|
-
}({}),
|
|
23
|
+
}({}), P = /* @__PURE__ */ function(e) {
|
|
24
24
|
return e[e.SINGLE = 0] = "SINGLE", e[e.MULTIPLE = 1] = "MULTIPLE", e[e.TREE = 2] = "TREE", e[e.TREE_TAGS = 3] = "TREE_TAGS", e[e.MEMBER = 4] = "MEMBER", e[e.DEPARTEMENT = 5] = "DEPARTEMENT", e;
|
|
25
|
-
}({}),
|
|
26
|
-
[
|
|
27
|
-
[
|
|
28
|
-
[
|
|
29
|
-
[
|
|
30
|
-
[
|
|
31
|
-
[
|
|
32
|
-
},
|
|
25
|
+
}({}), le = {
|
|
26
|
+
[P.SINGLE]: N.SINGLE,
|
|
27
|
+
[P.TREE]: N.SINGLE,
|
|
28
|
+
[P.MULTIPLE]: N.MULTIPLE,
|
|
29
|
+
[P.TREE_TAGS]: N.MULTIPLE,
|
|
30
|
+
[P.MEMBER]: N.MULTIPLE,
|
|
31
|
+
[P.DEPARTEMENT]: N.MULTIPLE
|
|
32
|
+
}, ue = {
|
|
33
33
|
label: "label",
|
|
34
34
|
value: "value",
|
|
35
35
|
children: "children"
|
|
36
|
-
},
|
|
36
|
+
}, de = x({
|
|
37
37
|
value: void 0,
|
|
38
38
|
setValue: g,
|
|
39
39
|
isOpen: !1,
|
|
40
40
|
setIsOpen: g
|
|
41
|
-
}),
|
|
41
|
+
}), fe = x({
|
|
42
42
|
fieldNames: {
|
|
43
43
|
label: "label",
|
|
44
44
|
value: "value",
|
|
45
45
|
children: "children"
|
|
46
46
|
},
|
|
47
47
|
disabled: !1
|
|
48
|
-
}),
|
|
49
|
-
let e = T(
|
|
48
|
+
}), pe = x({}), F = () => {
|
|
49
|
+
let e = T(de);
|
|
50
50
|
if (!e) throw Error("Select.* components must be used within a SelectStateContext provider");
|
|
51
51
|
return e;
|
|
52
|
-
},
|
|
53
|
-
let e = T(
|
|
52
|
+
}, I = () => {
|
|
53
|
+
let e = T(fe);
|
|
54
54
|
if (!e) throw Error("Select.* components must be used within a SelectConfigContext provider");
|
|
55
55
|
return e;
|
|
56
|
-
},
|
|
56
|
+
}, L = () => T(pe);
|
|
57
57
|
//#endregion
|
|
58
58
|
//#region src/components/Select/utils/fieldAccessor.ts
|
|
59
|
-
function
|
|
59
|
+
function R(e) {
|
|
60
60
|
let t = e;
|
|
61
61
|
return {
|
|
62
62
|
getLabel: (e) => e[t.label],
|
|
@@ -75,8 +75,8 @@ function z(e) {
|
|
|
75
75
|
}
|
|
76
76
|
//#endregion
|
|
77
77
|
//#region src/components/Select/SelectInput/SelectSingleInput/SelectSingleInput.tsx
|
|
78
|
-
var
|
|
79
|
-
let { value: t, inputValueStyle: n } = e, { fieldNames: r, otherInputPosition: i } =
|
|
78
|
+
var z = C((e) => {
|
|
79
|
+
let { value: t, inputValueStyle: n } = e, { fieldNames: r, otherInputPosition: i } = I(), { isSelectedOtherOption: a, otherOptionValue: o } = L(), s = R(r), c = f(t), l;
|
|
80
80
|
return l = a && o && i === "inline" ? o : e.labelRender && c ? e.labelRender(c) : c ? s.getLabel(c) : "", /* @__PURE__ */ v("div", {
|
|
81
81
|
className: A("bsy-select-input-container__input-value overflow-hidden"),
|
|
82
82
|
style: n,
|
|
@@ -86,38 +86,38 @@ var B = C((e) => {
|
|
|
86
86
|
})
|
|
87
87
|
});
|
|
88
88
|
});
|
|
89
|
-
|
|
89
|
+
z.displayName = "BsySelectSingleInput";
|
|
90
90
|
//#endregion
|
|
91
91
|
//#region src/components/Select/SelectInput/SelectMultipleInput/OptionTag/option-tag.module.scss
|
|
92
|
-
var
|
|
92
|
+
var B = {
|
|
93
93
|
"bsy-input-tag__container": "_bsy-input-tag__container_znvs6_1",
|
|
94
94
|
"bsy-input-tag__item": "_bsy-input-tag__item_znvs6_7",
|
|
95
95
|
"bsy-input-tag__item--disabled": "_bsy-input-tag__item--disabled_znvs6_20",
|
|
96
96
|
"bsy-input-tag__item-icon": "_bsy-input-tag__item-icon_znvs6_24"
|
|
97
|
-
},
|
|
97
|
+
}, V = S(({ children: e, style: t, disabled: n }, r) => /* @__PURE__ */ v("div", {
|
|
98
98
|
"data-bsy-input-tag": "true",
|
|
99
99
|
className: A({
|
|
100
|
-
[
|
|
101
|
-
[
|
|
100
|
+
[B["bsy-input-tag__item"]]: !0,
|
|
101
|
+
[B["bsy-input-tag__item--disabled"]]: n
|
|
102
102
|
}),
|
|
103
103
|
ref: r,
|
|
104
104
|
style: t,
|
|
105
105
|
children: e
|
|
106
106
|
}));
|
|
107
|
-
|
|
108
|
-
className: A(
|
|
107
|
+
V.Container = (e) => /* @__PURE__ */ v("div", {
|
|
108
|
+
className: A(B["bsy-input-tag__container"]),
|
|
109
109
|
children: e.children
|
|
110
|
-
}),
|
|
110
|
+
}), V.displayName = "BsyOptionTag";
|
|
111
111
|
//#endregion
|
|
112
112
|
//#region src/components/Select/SelectInput/SelectMultipleInput/select-multiple-input.module.scss
|
|
113
|
-
var
|
|
114
|
-
select_multiple_input__container:
|
|
115
|
-
select_multiple_input__measurement_layer:
|
|
116
|
-
select_multiple_input__close_btn:
|
|
113
|
+
var H = "_select_multiple_input__container_8pd2n_1", U = "_select_multiple_input__measurement_layer_8pd2n_6", W = "_select_multiple_input__close_btn_8pd2n_14", G = "_select_multiple_input__tag_content_8pd2n_24", K = {
|
|
114
|
+
select_multiple_input__container: H,
|
|
115
|
+
select_multiple_input__measurement_layer: U,
|
|
116
|
+
select_multiple_input__close_btn: W,
|
|
117
117
|
"select_multiple_input__close_btn--disabled": "_select_multiple_input__close_btn--disabled_8pd2n_21",
|
|
118
|
-
select_multiple_input__tag_content:
|
|
119
|
-
},
|
|
120
|
-
let { value: n, labelRender: r, tagStyle: i } = e, { setValue: a } =
|
|
118
|
+
select_multiple_input__tag_content: G
|
|
119
|
+
}, q = 4, J = C((e) => {
|
|
120
|
+
let { value: n, labelRender: r, tagStyle: i } = e, { setValue: a } = F(), { fieldNames: o, disabled: s } = I(), c = R(o), l = n?.length ?? 0, [u, d] = k(0), f = O(null), p = O(null);
|
|
121
121
|
ne(() => {
|
|
122
122
|
if (!f.current) return;
|
|
123
123
|
let e = new ResizeObserver((e) => {
|
|
@@ -130,7 +130,7 @@ var U = "_select_multiple_input__container_8pd2n_1", W = "_select_multiple_input
|
|
|
130
130
|
}
|
|
131
131
|
let a = p.current?.offsetWidth || 65, o = 0, s = 0;
|
|
132
132
|
for (let e = 0; e < i.length; e++) {
|
|
133
|
-
let t = i[e].clientWidth +
|
|
133
|
+
let t = i[e].clientWidth + q, n = e < l - 1 ? a : 0;
|
|
134
134
|
if (o + t + n <= r) o += t, s = e + 1;
|
|
135
135
|
else break;
|
|
136
136
|
}
|
|
@@ -143,25 +143,25 @@ var U = "_select_multiple_input__container_8pd2n_1", W = "_select_multiple_input
|
|
|
143
143
|
n.length
|
|
144
144
|
]);
|
|
145
145
|
let m = l - u, h = E(m), g = /* @__PURE__ */ v("div", {
|
|
146
|
-
className: `${
|
|
147
|
-
children: /* @__PURE__ */ y(
|
|
146
|
+
className: `${K.select_multiple_input__measurement_layer} measure-list`,
|
|
147
|
+
children: /* @__PURE__ */ y(V.Container, { children: [n?.map((e, n) => {
|
|
148
148
|
let a = (e) => /* @__PURE__ */ v("div", {
|
|
149
149
|
style: e,
|
|
150
|
-
className: A(
|
|
150
|
+
className: A(B["bsy-input-tag__item-icon"], "cursor-pointer"),
|
|
151
151
|
children: /* @__PURE__ */ v(t, {
|
|
152
152
|
name: "close",
|
|
153
153
|
style: { fontSize: 12 },
|
|
154
|
-
className:
|
|
154
|
+
className: K.select_multiple_input__close_btn
|
|
155
155
|
})
|
|
156
156
|
});
|
|
157
|
-
return /* @__PURE__ */ y(
|
|
157
|
+
return /* @__PURE__ */ y(V, {
|
|
158
158
|
style: i,
|
|
159
159
|
children: [r && r(e, a), !r && /* @__PURE__ */ y("div", {
|
|
160
|
-
className:
|
|
160
|
+
className: K.select_multiple_input__tag_content,
|
|
161
161
|
children: [/* @__PURE__ */ v("span", { children: c.getLabel(e) }), /* @__PURE__ */ v(a, {})]
|
|
162
162
|
})]
|
|
163
163
|
}, n);
|
|
164
|
-
}), u < l && h > 0 && /* @__PURE__ */ y(
|
|
164
|
+
}), u < l && h > 0 && /* @__PURE__ */ y(V, {
|
|
165
165
|
ref: p,
|
|
166
166
|
children: [`+ ${m}`, /* @__PURE__ */ v("span", {
|
|
167
167
|
className: "text-[#666]",
|
|
@@ -175,13 +175,13 @@ var U = "_select_multiple_input__container_8pd2n_1", W = "_select_multiple_input
|
|
|
175
175
|
};
|
|
176
176
|
return /* @__PURE__ */ y("div", {
|
|
177
177
|
ref: f,
|
|
178
|
-
className: A("bsy-select-input-container__input-value",
|
|
179
|
-
children: [g, /* @__PURE__ */ y(
|
|
178
|
+
className: A("bsy-select-input-container__input-value", K.select_multiple_input__container, "multiple"),
|
|
179
|
+
children: [g, /* @__PURE__ */ y(V.Container, { children: [n?.slice(0, u).map((e, n) => {
|
|
180
180
|
let a = (n) => /* @__PURE__ */ v("div", {
|
|
181
181
|
style: n,
|
|
182
|
-
className: A(
|
|
183
|
-
[
|
|
184
|
-
[
|
|
182
|
+
className: A(B["bsy-input-tag__item-icon"], {
|
|
183
|
+
[K.select_multiple_input__close_btn]: !s,
|
|
184
|
+
[K.select_multiple_input__close_btn + "--disabled"]: s
|
|
185
185
|
}),
|
|
186
186
|
onClick: (t) => {
|
|
187
187
|
t.stopPropagation(), _(e);
|
|
@@ -191,21 +191,21 @@ var U = "_select_multiple_input__container_8pd2n_1", W = "_select_multiple_input
|
|
|
191
191
|
style: { fontSize: 12 }
|
|
192
192
|
})
|
|
193
193
|
});
|
|
194
|
-
return /* @__PURE__ */ y(
|
|
194
|
+
return /* @__PURE__ */ y(V, {
|
|
195
195
|
style: {
|
|
196
196
|
...i,
|
|
197
197
|
flexShrink: u === 1 ? 1 : 0
|
|
198
198
|
},
|
|
199
199
|
disabled: s,
|
|
200
200
|
children: [r && r(e, a), !r && /* @__PURE__ */ y("div", {
|
|
201
|
-
className:
|
|
201
|
+
className: K.select_multiple_input__tag_content,
|
|
202
202
|
children: [/* @__PURE__ */ v("span", {
|
|
203
203
|
className: "truncate",
|
|
204
204
|
children: c.getLabel(e)
|
|
205
205
|
}), /* @__PURE__ */ v(a, {})]
|
|
206
206
|
})]
|
|
207
207
|
}, n);
|
|
208
|
-
}), u < l && h > 0 && /* @__PURE__ */ y(
|
|
208
|
+
}), u < l && h > 0 && /* @__PURE__ */ y(V, {
|
|
209
209
|
ref: p,
|
|
210
210
|
children: [`+ ${m} `, /* @__PURE__ */ v("span", {
|
|
211
211
|
className: "text-[#666]",
|
|
@@ -214,10 +214,10 @@ var U = "_select_multiple_input__container_8pd2n_1", W = "_select_multiple_input
|
|
|
214
214
|
})] })]
|
|
215
215
|
});
|
|
216
216
|
});
|
|
217
|
-
|
|
217
|
+
J.displayName = "BsySelectMultipleInput";
|
|
218
218
|
//#endregion
|
|
219
219
|
//#region src/components/Select/utils/tree.ts
|
|
220
|
-
var
|
|
220
|
+
var Y = (e, t) => {
|
|
221
221
|
let n = [], r = (e) => {
|
|
222
222
|
e.forEach((e) => {
|
|
223
223
|
let { [t.children]: i, ...a } = e;
|
|
@@ -225,12 +225,12 @@ var X = (e, t) => {
|
|
|
225
225
|
});
|
|
226
226
|
};
|
|
227
227
|
return r(e), n;
|
|
228
|
-
},
|
|
229
|
-
let b = O(null), x = j(o ? null : b), { isOpen: S, value: C, getCachedOptionByValue: w } =
|
|
228
|
+
}, me = ({ placeholder: e, mode: n, clearable: r, onClear: a, disabled: o = !1, labelRender: s, options: c = [], type: l, prefix: u, suffixIcon: d, ghost: f, inputValueStyle: m, tagStyle: g }) => {
|
|
229
|
+
let b = O(null), x = j(o ? null : b), { isOpen: S, value: C, getCachedOptionByValue: w } = F(), { fieldNames: T } = I(), E = D(() => {
|
|
230
230
|
if (h(C)) return [];
|
|
231
231
|
let e = p(C) ? C : [C];
|
|
232
|
-
if (l ===
|
|
233
|
-
let t =
|
|
232
|
+
if (l === P.TREE) {
|
|
233
|
+
let t = R(T), n = Y(c, T);
|
|
234
234
|
return e.map((e) => n.find((n) => t.getValue(n) === e) || w?.(e)).filter((e) => !!e);
|
|
235
235
|
}
|
|
236
236
|
return e.map((e) => c.find((t) => t[T.value] === e) || w?.(e)).filter((e) => !!e);
|
|
@@ -244,7 +244,7 @@ var X = (e, t) => {
|
|
|
244
244
|
return /* @__PURE__ */ v("div", {
|
|
245
245
|
className: A("bsy-select-input-container", {
|
|
246
246
|
disabled: o,
|
|
247
|
-
multiple: n ===
|
|
247
|
+
multiple: n === N.MULTIPLE,
|
|
248
248
|
active: S,
|
|
249
249
|
"ghost-style": f
|
|
250
250
|
}),
|
|
@@ -256,11 +256,11 @@ var X = (e, t) => {
|
|
|
256
256
|
className: "bsy-select-input-container-input-prefix",
|
|
257
257
|
children: u
|
|
258
258
|
}),
|
|
259
|
-
E?.length ? /* @__PURE__ */ y(_, { children: [n ===
|
|
259
|
+
E?.length ? /* @__PURE__ */ y(_, { children: [n === N.SINGLE && /* @__PURE__ */ v(z, {
|
|
260
260
|
value: E,
|
|
261
261
|
labelRender: s,
|
|
262
262
|
inputValueStyle: m
|
|
263
|
-
}), n ===
|
|
263
|
+
}), n === N.MULTIPLE && /* @__PURE__ */ v(J, {
|
|
264
264
|
value: E,
|
|
265
265
|
labelRender: s,
|
|
266
266
|
tagStyle: g
|
|
@@ -300,32 +300,35 @@ var X = (e, t) => {
|
|
|
300
300
|
})
|
|
301
301
|
});
|
|
302
302
|
};
|
|
303
|
-
|
|
303
|
+
me.displayName = "BsySelectInput";
|
|
304
304
|
//#endregion
|
|
305
305
|
//#region src/components/Select/OptionList/SingleOptionList/SingleOptionList.tsx
|
|
306
|
-
var
|
|
307
|
-
let { options: t, value: n, onSelect: r, searchValue: i = "", fieldNames: a, optionRender: o, optionStyle: c } = e, { otherInputPosition: l } =
|
|
306
|
+
var X = C((e) => {
|
|
307
|
+
let { options: t, value: n, onSelect: r, searchValue: i = "", fieldNames: a, optionRender: o, optionStyle: c } = e, { otherInputPosition: l } = I(), { otherOptionValue: u, setOtherOptionValue: d, onOtherInputChange: f, isSelectedOtherOption: p = !1 } = L(), m = O(null), h = R(a);
|
|
308
308
|
return /* @__PURE__ */ v("ul", {
|
|
309
309
|
role: "listbox",
|
|
310
310
|
children: t.map((e, t) => {
|
|
311
|
-
let a = h.getValue(e), g = h.getLabel(e), _ = e.systemField || !1, b = e.isOther === !0, x = b && l === "inline" && g.length > 6 ? g.slice(0, 6) + "..." : g,
|
|
311
|
+
let a = h.getValue(e), g = h.getLabel(e), _ = e.systemField || !1, b = e.isOther === !0, x = e.disabled === !0, S = b && l === "inline" && g.length > 6 ? g.slice(0, 6) + "..." : g, C = b ? p : a === n;
|
|
312
312
|
return /* @__PURE__ */ y("li", {
|
|
313
313
|
role: "option",
|
|
314
|
-
"aria-selected":
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
"
|
|
318
|
-
"text-[#
|
|
314
|
+
"aria-selected": C,
|
|
315
|
+
"aria-disabled": x,
|
|
316
|
+
className: A("rounded-[4px] py-[7px] px-[10px] min-h-[34px]", {
|
|
317
|
+
"cursor-pointer": !x,
|
|
318
|
+
"cursor-not-allowed text-[#999] bg-transparent": x,
|
|
319
|
+
"hover:bg-[#eff0f6]": !x && !C,
|
|
320
|
+
"text-[#4d609f]": !x && _ && !C,
|
|
321
|
+
"text-[#0265ff] bg-[#f0f6ff]": !x && C,
|
|
319
322
|
"flex items-center": b && l === "inline"
|
|
320
323
|
}),
|
|
321
324
|
style: c,
|
|
322
325
|
onClick: () => {
|
|
323
|
-
r(a, e);
|
|
326
|
+
x || r(a, e);
|
|
324
327
|
},
|
|
325
328
|
children: [/* @__PURE__ */ v("div", {
|
|
326
329
|
title: g,
|
|
327
|
-
children: o ? o(e, { index: t },
|
|
328
|
-
text:
|
|
330
|
+
children: o ? o(e, { index: t }, C) : /* @__PURE__ */ v(s, {
|
|
331
|
+
text: S,
|
|
329
332
|
highlight: i
|
|
330
333
|
})
|
|
331
334
|
}), b && l === "inline" && /* @__PURE__ */ v("div", {
|
|
@@ -335,15 +338,16 @@ var Z = C((e) => {
|
|
|
335
338
|
children: /* @__PURE__ */ v(re, {
|
|
336
339
|
ref: m,
|
|
337
340
|
value: u,
|
|
341
|
+
disabled: x,
|
|
338
342
|
onChange: (e) => {
|
|
339
343
|
let t = e.target.value;
|
|
340
344
|
d?.(t), f?.(t);
|
|
341
345
|
},
|
|
342
346
|
onPressEnter: () => {
|
|
343
|
-
u && r(a, e);
|
|
347
|
+
!x && u && r(a, e);
|
|
344
348
|
},
|
|
345
349
|
onBlur: () => {
|
|
346
|
-
u && r(a, e);
|
|
350
|
+
!x && u && r(a, e);
|
|
347
351
|
},
|
|
348
352
|
placeholder: "请输入内容"
|
|
349
353
|
})
|
|
@@ -352,11 +356,11 @@ var Z = C((e) => {
|
|
|
352
356
|
})
|
|
353
357
|
});
|
|
354
358
|
});
|
|
355
|
-
|
|
359
|
+
X.displayName = "BsySingleSelect";
|
|
356
360
|
//#endregion
|
|
357
361
|
//#region src/components/Select/OptionList/MultOptionList/MultOptionList.tsx
|
|
358
|
-
var
|
|
359
|
-
let { t } = n(), { options: r, searchValue: i = "", value: a, onSelect: o, fieldNames: c, optionRender: u } = e, d =
|
|
362
|
+
var Z = (e) => {
|
|
363
|
+
let { t } = n(), { options: r, searchValue: i = "", value: a, onSelect: o, fieldNames: c, optionRender: u } = e, d = R(c), f = a || [], p = r.filter((e) => !e.isOther), m = p.filter((e) => !e.disabled), h = m.map((e) => d.getValue(e)), g = m.length > 0 && m.every((e) => f.includes(d.getValue(e)));
|
|
360
364
|
return /* @__PURE__ */ v("div", {
|
|
361
365
|
className: "bsy-multiple-select",
|
|
362
366
|
children: /* @__PURE__ */ y("ul", {
|
|
@@ -364,11 +368,13 @@ var Q = (e) => {
|
|
|
364
368
|
children: [/* @__PURE__ */ v("li", {
|
|
365
369
|
className: A("flex items-center gap-[8px]", "cursor-pointer hover:bg-[#eff0f6] rounded-[4px] min-h-[34px]", "bsy-multiple-select-item"),
|
|
366
370
|
children: /* @__PURE__ */ v(l, {
|
|
367
|
-
checked:
|
|
371
|
+
checked: g,
|
|
372
|
+
disabled: m.length === 0,
|
|
368
373
|
onChange: () => {
|
|
369
|
-
|
|
374
|
+
let e = g ? f.filter((e) => !h.includes(e)) : [...f, ...h.filter((e) => !f.includes(e))];
|
|
375
|
+
o(e, p.filter((t) => e.includes(d.getValue(t))));
|
|
370
376
|
},
|
|
371
|
-
indeterminate:
|
|
377
|
+
indeterminate: m.some((e) => f.includes(d.getValue(e))) && !g,
|
|
372
378
|
style: { padding: "7px 10px" },
|
|
373
379
|
children: /* @__PURE__ */ v("span", {
|
|
374
380
|
className: "font-bold text-[#0265ff]",
|
|
@@ -381,14 +387,18 @@ var Q = (e) => {
|
|
|
381
387
|
o(e, p.filter((t) => e.includes(d.getValue(t))));
|
|
382
388
|
},
|
|
383
389
|
children: p.map((e, t) => {
|
|
384
|
-
let n = d.getValue(e), r = d.getLabel(e), a = f.includes(n), o = e.systemField || !1;
|
|
390
|
+
let n = d.getValue(e), r = d.getLabel(e), a = f.includes(n), o = e.systemField || !1, c = e.disabled === !0;
|
|
385
391
|
return /* @__PURE__ */ v("li", {
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
"
|
|
392
|
+
"aria-disabled": c,
|
|
393
|
+
className: A("flex items-center gap-[8px] min-h-[34px]", "rounded-[4px]", "bsy-multiple-select-item", {
|
|
394
|
+
"cursor-pointer": !c,
|
|
395
|
+
"cursor-not-allowed text-[#999] bg-transparent": c,
|
|
396
|
+
"hover:bg-[#eff0f6]": !c,
|
|
397
|
+
"text-[#4d609f]": !c && o && !a
|
|
389
398
|
}),
|
|
390
399
|
children: /* @__PURE__ */ v(l, {
|
|
391
400
|
value: n,
|
|
401
|
+
disabled: c,
|
|
392
402
|
style: { padding: "7px 10px" },
|
|
393
403
|
children: u ? u(e, { index: t }, a) : /* @__PURE__ */ v(s, {
|
|
394
404
|
text: r,
|
|
@@ -401,10 +411,10 @@ var Q = (e) => {
|
|
|
401
411
|
})
|
|
402
412
|
});
|
|
403
413
|
};
|
|
404
|
-
|
|
414
|
+
Z.displayName = "BsyMultipleSelect";
|
|
405
415
|
//#endregion
|
|
406
416
|
//#region src/components/Select/OptionList/TreeOptionList/TreeOptionList.tsx
|
|
407
|
-
var
|
|
417
|
+
var he = (e) => {
|
|
408
418
|
let { options: t, searchValue: n, value: r, onSelect: i, fieldNames: a } = e;
|
|
409
419
|
return /* @__PURE__ */ v("div", {
|
|
410
420
|
className: "bsy-tree-select",
|
|
@@ -423,13 +433,13 @@ var me = (e) => {
|
|
|
423
433
|
})
|
|
424
434
|
})
|
|
425
435
|
});
|
|
426
|
-
},
|
|
436
|
+
}, ge = (e, t) => {
|
|
427
437
|
let n = [], r = (e) => {
|
|
428
438
|
if (e) for (let i of e) n.push(i), r(i[t.children]);
|
|
429
439
|
};
|
|
430
440
|
return r(e), n;
|
|
431
|
-
},
|
|
432
|
-
let i = r[n.children] ?
|
|
441
|
+
}, Q = (e, t, n) => e.reduce((e, r) => {
|
|
442
|
+
let i = r[n.children] ? Q(r[n.children], t, n) : void 0;
|
|
433
443
|
if (t.has(r[n.value]) || i && i.length > 0) {
|
|
434
444
|
let a = t.has(r[n.value]) ? r[n.children] : i;
|
|
435
445
|
e.push({
|
|
@@ -438,12 +448,12 @@ var me = (e) => {
|
|
|
438
448
|
});
|
|
439
449
|
}
|
|
440
450
|
return e;
|
|
441
|
-
}, []),
|
|
442
|
-
let { options: t = [], searchValue: r = "", type: i, filterOption: a, optionRender: o, optionStyle: s, notFoundContent: c } = e, { t: l } = n(), { value: d, setIsOpen: f, setValue: p } =
|
|
451
|
+
}, []), $ = (e) => {
|
|
452
|
+
let { options: t = [], searchValue: r = "", type: i, filterOption: a, optionRender: o, optionStyle: s, notFoundContent: c } = e, { t: l } = n(), { value: d, setIsOpen: f, setValue: p } = F(), { fieldNames: h } = I(), g = D(() => i === P.TREE ? ge(t, h) : t, [
|
|
443
453
|
t,
|
|
444
454
|
h,
|
|
445
455
|
i
|
|
446
|
-
]), y = D(() => new
|
|
456
|
+
]), y = D(() => new ce(g, {
|
|
447
457
|
keys: [h.label],
|
|
448
458
|
ignoreLocation: !0,
|
|
449
459
|
threshold: .3
|
|
@@ -456,7 +466,7 @@ var me = (e) => {
|
|
|
456
466
|
}, [f, p]), C = () => {
|
|
457
467
|
if (!a || m(r)) return t;
|
|
458
468
|
let e = y.search(r), n = new Set(e.map((e) => e.item[h.value]));
|
|
459
|
-
return i ===
|
|
469
|
+
return i === P.TREE ? Q(t, n, h) : t.filter((e) => n.has(e[h.value]));
|
|
460
470
|
};
|
|
461
471
|
return /* @__PURE__ */ v(_, { children: (() => {
|
|
462
472
|
let e = {
|
|
@@ -466,21 +476,21 @@ var me = (e) => {
|
|
|
466
476
|
};
|
|
467
477
|
if (!m(r) && e.options.length === 0) return c === void 0 ? /* @__PURE__ */ v(u, { text: l("noDataFound") }) : c;
|
|
468
478
|
switch (i) {
|
|
469
|
-
case
|
|
479
|
+
case P.SINGLE: return /* @__PURE__ */ v(X, {
|
|
470
480
|
...e,
|
|
471
481
|
value: d,
|
|
472
482
|
fieldNames: h,
|
|
473
483
|
onSelect: b,
|
|
474
484
|
optionRender: o
|
|
475
485
|
});
|
|
476
|
-
case
|
|
486
|
+
case P.MULTIPLE: return /* @__PURE__ */ v(Z, {
|
|
477
487
|
...e,
|
|
478
488
|
value: d,
|
|
479
489
|
fieldNames: h,
|
|
480
490
|
onSelect: x,
|
|
481
491
|
optionRender: o
|
|
482
492
|
});
|
|
483
|
-
case
|
|
493
|
+
case P.TREE: return /* @__PURE__ */ v(he, {
|
|
484
494
|
...e,
|
|
485
495
|
value: d,
|
|
486
496
|
fieldNames: h,
|
|
@@ -490,9 +500,9 @@ var me = (e) => {
|
|
|
490
500
|
}
|
|
491
501
|
})() });
|
|
492
502
|
}, _e = (t) => {
|
|
493
|
-
let { options: r = [], type: i =
|
|
503
|
+
let { options: r = [], type: i = P.SINGLE, filterOption: a = !0, onSearch: s, showSearch: c, searchPlaceholder: l, onPopupScroll: d, notFoundContent: f } = t, { t: p } = n(), { searchValue: m = "", setSearchValue: h } = F(), g = E(m), _ = (e) => {
|
|
494
504
|
h?.(e), s?.(e);
|
|
495
|
-
}, x = () => t.fetching ? /* @__PURE__ */ v(u, { text: p("dataSearching") }) : r.length === 0 && !m ? f === void 0 ? /* @__PURE__ */ v(u, { text: p("noData") }) : f : /* @__PURE__ */ v(
|
|
505
|
+
}, x = () => t.fetching ? /* @__PURE__ */ v(u, { text: p("dataSearching") }) : r.length === 0 && !m ? f === void 0 ? /* @__PURE__ */ v(u, { text: p("noData") }) : f : /* @__PURE__ */ v($, {
|
|
496
506
|
searchValue: g,
|
|
497
507
|
options: r,
|
|
498
508
|
type: i,
|
|
@@ -523,49 +533,49 @@ _e.displayName = "BsySelectPanel";
|
|
|
523
533
|
//#endregion
|
|
524
534
|
//#region src/components/Select/Select.tsx
|
|
525
535
|
var ve = S((e, t) => {
|
|
526
|
-
let { options: i = [], type: o =
|
|
527
|
-
defaultValue: j ===
|
|
536
|
+
let { options: i = [], type: o = P.SINGLE, fieldNames: s, clearable: c = !0, disabled: l = !1, placeholder: u, labelRender: f, onOtherInputChange: p, onOpenChange: m, onPopupScroll: h, prefix: g, suffixIcon: _, ghost: b, inputValueStyle: x, tagStyle: S, zIndex: C = 1101, zIndexMask: T = 1100, otherInputPosition: E = "bottom", popupMinWidth: ne, getPopupContainer: re } = e, j = le[o], { t: ce } = n(), F = ee(), { onChange: I } = e, L = s || ue, [R, z] = ie(e, {
|
|
537
|
+
defaultValue: j === N.SINGLE ? void 0 : [],
|
|
528
538
|
defaultValuePropName: "defaultValue",
|
|
529
539
|
valuePropName: "value",
|
|
530
540
|
trigger: "__NO_CUSTOM_CHANGE__"
|
|
531
|
-
}), [
|
|
532
|
-
if (j ===
|
|
533
|
-
let e = i.every((e) => e[
|
|
534
|
-
return e && t ?
|
|
541
|
+
}), [B, V] = k(""), H = O(/* @__PURE__ */ new Map()), [U, W] = k(() => {
|
|
542
|
+
if (j === N.SINGLE) {
|
|
543
|
+
let e = i.every((e) => e[L.value] !== R), t = i.find((e) => e.isOther === !0);
|
|
544
|
+
return e && t ? R : void 0;
|
|
535
545
|
}
|
|
536
|
-
}),
|
|
537
|
-
if (
|
|
546
|
+
}), G = w((e, t) => {
|
|
547
|
+
if (z(e), t) {
|
|
538
548
|
let n = /* @__PURE__ */ new Map();
|
|
539
549
|
if (Array.isArray(e)) {
|
|
540
550
|
let r = Array.isArray(t) ? t : [];
|
|
541
551
|
e.forEach((e) => {
|
|
542
|
-
let t = r.find((t) => t?.[
|
|
552
|
+
let t = r.find((t) => t?.[L.value] === e);
|
|
543
553
|
e !== null && t && n.set(e, t);
|
|
544
554
|
});
|
|
545
555
|
} else e !== null && !Array.isArray(t) && n.set(e, t);
|
|
546
|
-
|
|
556
|
+
H.current = n;
|
|
547
557
|
}
|
|
548
|
-
|
|
558
|
+
I && I(e, t);
|
|
549
559
|
}, [
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
]), [
|
|
554
|
-
e !==
|
|
560
|
+
I,
|
|
561
|
+
z,
|
|
562
|
+
L
|
|
563
|
+
]), [K, { set: q }] = ae(!1), J = w((e) => {
|
|
564
|
+
e !== K && (q(e), m?.(e));
|
|
555
565
|
}, [
|
|
556
|
-
|
|
566
|
+
q,
|
|
557
567
|
m,
|
|
558
|
-
|
|
559
|
-
]), { isSelectedOtherOption:
|
|
560
|
-
if (j ===
|
|
568
|
+
K
|
|
569
|
+
]), { isSelectedOtherOption: Y, shouldShowOtherInput: X } = D(() => {
|
|
570
|
+
if (j === N.MULTIPLE) return {
|
|
561
571
|
isSelectedOtherOption: !1,
|
|
562
572
|
shouldShowOtherInput: !1
|
|
563
573
|
};
|
|
564
|
-
let e = i.find((e) => e[
|
|
574
|
+
let e = i.find((e) => e[L.value] === R);
|
|
565
575
|
return e ? {
|
|
566
576
|
isSelectedOtherOption: e.isOther === !0,
|
|
567
577
|
shouldShowOtherInput: e.isOther === !0
|
|
568
|
-
} : i.find((e) => e.isOther === !0) &&
|
|
578
|
+
} : i.find((e) => e.isOther === !0) && R ? {
|
|
569
579
|
isSelectedOtherOption: !0,
|
|
570
580
|
shouldShowOtherInput: !0
|
|
571
581
|
} : {
|
|
@@ -573,59 +583,59 @@ var ve = S((e, t) => {
|
|
|
573
583
|
shouldShowOtherInput: !1
|
|
574
584
|
};
|
|
575
585
|
}, [
|
|
576
|
-
z,
|
|
577
|
-
i,
|
|
578
586
|
R,
|
|
587
|
+
i,
|
|
588
|
+
L,
|
|
579
589
|
j
|
|
580
|
-
]),
|
|
581
|
-
if (
|
|
582
|
-
if (j ===
|
|
583
|
-
let e = i.every((e) => e[
|
|
584
|
-
if (e && t) return t[
|
|
590
|
+
]), Z = w(() => {
|
|
591
|
+
if (R) {
|
|
592
|
+
if (j === N.SINGLE) {
|
|
593
|
+
let e = i.every((e) => e[L.value] !== R), t = i.find((e) => e.isOther === !0);
|
|
594
|
+
if (e && t) return t[L.value];
|
|
585
595
|
}
|
|
586
|
-
return
|
|
587
|
-
} else return
|
|
596
|
+
return R;
|
|
597
|
+
} else return R;
|
|
588
598
|
}, [
|
|
589
|
-
z,
|
|
590
|
-
i,
|
|
591
599
|
R,
|
|
600
|
+
i,
|
|
601
|
+
L,
|
|
592
602
|
j
|
|
593
|
-
]),
|
|
594
|
-
value:
|
|
595
|
-
setValue:
|
|
596
|
-
isOpen:
|
|
597
|
-
setIsOpen:
|
|
598
|
-
getCachedOptionByValue: (e) =>
|
|
599
|
-
searchValue:
|
|
600
|
-
setSearchValue:
|
|
603
|
+
]), he = D(() => ({
|
|
604
|
+
value: Z(),
|
|
605
|
+
setValue: G,
|
|
606
|
+
isOpen: K,
|
|
607
|
+
setIsOpen: J,
|
|
608
|
+
getCachedOptionByValue: (e) => H.current.get(e),
|
|
609
|
+
searchValue: B,
|
|
610
|
+
setSearchValue: V
|
|
601
611
|
}), [
|
|
602
|
-
|
|
612
|
+
Z,
|
|
613
|
+
G,
|
|
603
614
|
K,
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
fieldNames: s || le,
|
|
615
|
+
J,
|
|
616
|
+
B
|
|
617
|
+
]), ge = D(() => ({
|
|
618
|
+
fieldNames: s || ue,
|
|
609
619
|
disabled: l,
|
|
610
620
|
otherInputPosition: E
|
|
611
621
|
}), [
|
|
612
622
|
s,
|
|
613
623
|
l,
|
|
614
624
|
E
|
|
615
|
-
]),
|
|
616
|
-
isSelectedOtherOption:
|
|
617
|
-
otherOptionValue:
|
|
618
|
-
setOtherOptionValue:
|
|
625
|
+
]), Q = D(() => ({
|
|
626
|
+
isSelectedOtherOption: Y,
|
|
627
|
+
otherOptionValue: U,
|
|
628
|
+
setOtherOptionValue: W,
|
|
619
629
|
onOtherInputChange: p
|
|
620
630
|
}), [
|
|
621
|
-
|
|
631
|
+
Y,
|
|
632
|
+
U,
|
|
622
633
|
W,
|
|
623
|
-
G,
|
|
624
634
|
p
|
|
625
|
-
]), { refs:
|
|
626
|
-
isOpen:
|
|
635
|
+
]), { refs: $, floatingStyles: ve, getReferenceProps: ye, getFloatingProps: be, referenceStyle: xe } = d({
|
|
636
|
+
isOpen: K,
|
|
627
637
|
close: () => {
|
|
628
|
-
|
|
638
|
+
J(!1);
|
|
629
639
|
},
|
|
630
640
|
showMask: e.showMask,
|
|
631
641
|
zIndex: C,
|
|
@@ -635,48 +645,48 @@ var ve = S((e, t) => {
|
|
|
635
645
|
x: 0,
|
|
636
646
|
y: 4
|
|
637
647
|
}
|
|
638
|
-
}), { portalRoot: Se, portalMountKey: Ce, handleExitComplete: we } = a(
|
|
639
|
-
|
|
648
|
+
}), { portalRoot: Se, portalMountKey: Ce, handleExitComplete: we } = a(K, re), Te = w(() => {
|
|
649
|
+
Y && (W(""), p?.("")), J(!1), H.current.clear(), G(j === N.SINGLE ? void 0 : []);
|
|
640
650
|
}, [
|
|
641
|
-
|
|
651
|
+
Y,
|
|
642
652
|
p,
|
|
643
|
-
|
|
653
|
+
G,
|
|
644
654
|
j,
|
|
645
|
-
|
|
655
|
+
J
|
|
646
656
|
]);
|
|
647
657
|
return te(t, () => ({
|
|
648
|
-
getOtherOptionValue: () =>
|
|
658
|
+
getOtherOptionValue: () => U,
|
|
649
659
|
setOtherOptionValue: (e) => {
|
|
650
|
-
|
|
660
|
+
W(e), p?.(e);
|
|
651
661
|
}
|
|
652
|
-
}), [
|
|
653
|
-
value:
|
|
654
|
-
children: /* @__PURE__ */ v(
|
|
655
|
-
value:
|
|
656
|
-
children: /* @__PURE__ */ v(
|
|
657
|
-
value:
|
|
662
|
+
}), [U, p]), /* @__PURE__ */ v(de.Provider, {
|
|
663
|
+
value: he,
|
|
664
|
+
children: /* @__PURE__ */ v(fe.Provider, {
|
|
665
|
+
value: ge,
|
|
666
|
+
children: /* @__PURE__ */ v(pe.Provider, {
|
|
667
|
+
value: Q,
|
|
658
668
|
children: /* @__PURE__ */ y("div", {
|
|
659
669
|
className: A("bsy-select-container text-sm", e.className),
|
|
660
670
|
style: e.style,
|
|
661
671
|
children: [
|
|
662
672
|
/* @__PURE__ */ v("div", {
|
|
663
|
-
ref:
|
|
673
|
+
ref: $.setReference,
|
|
664
674
|
className: A("bsy-select-input-event", e.inputClassName),
|
|
665
675
|
...ye(),
|
|
666
676
|
style: xe,
|
|
667
677
|
onClick: () => {
|
|
668
|
-
e.disabled ||
|
|
678
|
+
e.disabled || J(!0);
|
|
669
679
|
},
|
|
670
680
|
role: "combobox",
|
|
671
|
-
"aria-expanded":
|
|
681
|
+
"aria-expanded": K,
|
|
672
682
|
"aria-haspopup": "listbox",
|
|
673
|
-
"aria-controls":
|
|
683
|
+
"aria-controls": F,
|
|
674
684
|
"aria-disabled": l,
|
|
675
|
-
children: /* @__PURE__ */ v(
|
|
685
|
+
children: /* @__PURE__ */ v(me, {
|
|
676
686
|
mode: j,
|
|
677
687
|
clearable: c,
|
|
678
688
|
disabled: l,
|
|
679
|
-
placeholder: u ||
|
|
689
|
+
placeholder: u || ce("select"),
|
|
680
690
|
labelRender: f,
|
|
681
691
|
options: i,
|
|
682
692
|
type: o,
|
|
@@ -690,16 +700,16 @@ var ve = S((e, t) => {
|
|
|
690
700
|
}),
|
|
691
701
|
/* @__PURE__ */ y(se, {
|
|
692
702
|
root: Se,
|
|
693
|
-
children: [
|
|
703
|
+
children: [K && e.showMask ? /* @__PURE__ */ v("div", {
|
|
694
704
|
className: "bsy-select-mask",
|
|
695
705
|
style: { zIndex: T }
|
|
696
706
|
}) : null, /* @__PURE__ */ v(oe, {
|
|
697
707
|
onExitComplete: we,
|
|
698
|
-
children:
|
|
699
|
-
ref:
|
|
708
|
+
children: K ? /* @__PURE__ */ v(M.div, {
|
|
709
|
+
ref: $.setFloating,
|
|
700
710
|
style: ve,
|
|
701
711
|
...be(),
|
|
702
|
-
id:
|
|
712
|
+
id: F,
|
|
703
713
|
...r,
|
|
704
714
|
children: /* @__PURE__ */ v(_e, {
|
|
705
715
|
...e,
|
|
@@ -709,15 +719,15 @@ var ve = S((e, t) => {
|
|
|
709
719
|
}, "bsy-select-panel") : null
|
|
710
720
|
})]
|
|
711
721
|
}, Ce),
|
|
712
|
-
|
|
722
|
+
X && E === "bottom" ? e.otherOptionRender ? e.otherOptionRender(U, i) : /* @__PURE__ */ v("div", {
|
|
713
723
|
className: A("mt-[6px] w-full px-[10px] py-[7px] bg-white rounded-[4px]", "border border-[#e0e0e0]"),
|
|
714
724
|
children: /* @__PURE__ */ v("input", {
|
|
715
|
-
value:
|
|
725
|
+
value: U || "",
|
|
716
726
|
onChange: (e) => {
|
|
717
|
-
|
|
727
|
+
W(e.target.value), p?.(e.target.value);
|
|
718
728
|
},
|
|
719
729
|
className: "w-full outline-none border-none placeholder:text-[#999]",
|
|
720
|
-
placeholder:
|
|
730
|
+
placeholder: ce("context"),
|
|
721
731
|
"aria-label": "其他选项输入框",
|
|
722
732
|
role: "textbox"
|
|
723
733
|
})
|
|
@@ -730,4 +740,4 @@ var ve = S((e, t) => {
|
|
|
730
740
|
});
|
|
731
741
|
ve.displayName = "BsySelect";
|
|
732
742
|
//#endregion
|
|
733
|
-
export {
|
|
743
|
+
export { N as n, P as r, ve as t };
|
package/dist/Select/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import "../Icon/Icon-SQ5tu-yG.js";
|
|
|
3
3
|
import "../vendors/LocaleContext-CBcJzvUD.js";
|
|
4
4
|
import "../vendors/useLocale-DZ8XW2VL.js";
|
|
5
5
|
import "../vendors/useLatchedPopupPortalRoot-hwf14FJ5.js";
|
|
6
|
-
import { n as e, r as t, t as n } from "./Select-
|
|
6
|
+
import { n as e, r as t, t as n } from "./Select-CAoozrW7.js";
|
|
7
7
|
import "./SelectInputSearch-dfBUnTCY.js";
|
|
8
8
|
import "../vendors/Tree-DMC_MSw1.js";
|
|
9
9
|
import "../CheckBox/CheckBox-D7bCjlkU.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/index.js
CHANGED
|
@@ -19,7 +19,7 @@ import "./vendors/color-BQYy0Wgy.js";
|
|
|
19
19
|
import "./vendors/useLatchedPopupPortalRoot-hwf14FJ5.js";
|
|
20
20
|
import { t as m } from "./Segmented/Segmented-Ck2ZmfF7.js";
|
|
21
21
|
import { n as h, t as g } from "./Tooltip/Tooltip-DWWWYn1a.js";
|
|
22
|
-
import { t as _ } from "./Select/Select-
|
|
22
|
+
import { t as _ } from "./Select/Select-CAoozrW7.js";
|
|
23
23
|
import "./Select/SelectInputSearch-dfBUnTCY.js";
|
|
24
24
|
import { t as v } from "./vendors/Tree-DMC_MSw1.js";
|
|
25
25
|
import "./CheckBox/CheckBox-D7bCjlkU.js";
|
package/dist/style.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
._bsy-tooltip_bqmfs_1{font-size:14px}._bsy-tooltip__trigger_bqmfs_4{cursor:pointer;display:inline-block}._bsy-tooltip__content_bqmfs_8{--bsy-tooltip-z-index:9001;color:#fff;word-wrap:break-word;width:max-content;z-index:var(--bsy-tooltip-z-index);background-color:#525867;border-radius:4px;padding:6px 10px;font-size:14px}.bsy-calendar-event-card{border-left:3px solid var(--calendar-schedule-border,#1a73e8);cursor:pointer;box-sizing:border-box;color:var(--calendar-title-color,#121111);background-color:var(--calendar-schedule-bg,#e8f0fe);--offset:10px;border-radius:3px;padding:3px 8px;font-size:12px;transition:background-color .25s,border-left-color .25s;overflow:hidden}.bsy-calendar-event-card:hover{background-color:var(--calendar-schedule-hover,#d7e3fd)!important}.bsy-calendar-event-card--timed{position:absolute}.bsy-calendar-event-card--allday{border-radius:4px;flex-shrink:0;align-items:center;width:100%;height:22px;max-height:22px;padding:0 6px;display:flex}.bsy-calendar-event-card--allday.bsy-calendar-event-card--continues-left{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.bsy-calendar-event-card--allday.bsy-calendar-event-card--continues-right{border-top-right-radius:0;border-bottom-right-radius:0}.bsy-calendar-event-card--week-grid{align-items:center;gap:4px;height:22px;max-height:22px;padding:2px 7px;display:flex}.bsy-calendar-event-card__arrow{color:var(--calendar-title-color,#121111);flex-shrink:0;font-size:10px;line-height:1}.bsy-calendar-event-card__arrow--left{margin-right:0}.bsy-calendar-event-card__arrow--right{margin-left:0}.bsy-calendar-event-card__title{text-overflow:ellipsis;white-space:nowrap;font-size:12px;overflow:hidden}.bsy-calendar-event-card--week-grid .bsy-calendar-event-card__title{flex:1}.bsy-calendar-event-card__time{text-overflow:ellipsis;white-space:nowrap;margin-top:6px;overflow:hidden}.bsy-calendar-event-card--hovered{background-color:var(--calendar-schedule-hover,#d7e3fd)!important}.bsy-calendar-allday-section{border-bottom:1px solid var(--calendar-border-color,#e0e0e0);background:0 0;min-height:32px;display:flex}.bsy-calendar-allday-section__label{width:60px;min-width:60px;color:var(--calendar-specifically-color,#999);box-sizing:border-box;flex-direction:column;justify-content:flex-start;align-items:center;padding:6px 0;font-size:12px;display:flex}.bsy-calendar-allday-section__label-text{line-height:1.4}.bsy-calendar-allday-section__label-timezone{color:var(--calendar-specifically-color,#999);font-size:10px;line-height:1.4}.bsy-calendar-allday-section__content{flex-direction:column;flex:1;padding:6px 4px;display:flex;overflow:hidden}.bsy-calendar-allday-section__events{max-height:var(--max-height);flex-direction:column;gap:4px;padding-right:10px;display:flex;overflow:hidden}.bsy-calendar-allday-section__events--scroll{overflow-y:auto}.bsy-calendar-allday-section__toggle-btn{cursor:pointer;color:var(--calendar-more-record-color,#666);background:0 0;border:none;border-radius:4px;justify-content:center;align-self:flex-start;align-items:center;gap:4px;margin-top:4px;display:flex}.bsy-calendar-allday-section__toggle-btn:hover{color:var(--calendar-highlight-color,#0265ff)}.bsy-calendar-allday-section__toggle-icon{font-size:16px}.bsy-calendar-allday-section__toggle-text{font-size:12px}.bsy-calendar-current-time{z-index:15;pointer-events:none;width:100%;position:absolute;left:0;right:0}.bsy-calendar-current-time__dot{pointer-events:auto;cursor:pointer;z-index:1;background:#ff5631;border-radius:50%;width:8px;height:8px;position:absolute;top:50%;left:-6px;transform:translateY(calc(1px - 50%))}.bsy-calendar-current-time__line{background:#ff5631;width:100%;height:2px;position:absolute;left:0;right:0}.bsy-calendar-time-axis{z-index:10;border-right:1px solid var(--calendar-border-color,#e0e0e0);background:0 0;width:60px;min-width:60px;position:sticky;left:0}.bsy-calendar-time-axis__label{box-sizing:border-box;justify-content:center;align-items:flex-start;display:flex}.bsy-calendar-time-axis__label span{color:var(--calendar-title-color,#121111);font-size:11px;line-height:1;transform:translateY(-50%)}.bsy-calendar-time-axis__label:first-child span{visibility:hidden}.bsy-calendar-time-grid{position:absolute;inset:0}.bsy-calendar-time-grid__row{border-bottom:1px solid var(--calendar-border-color,#e0e0e0);box-sizing:border-box}.bsy-calendar-time-grid__row:last-child{border-bottom:none}.bsy-calendar-time-grid__row-action{z-index:1;padding-top:2px;position:absolute;right:4px}.bsy-calendar-time-grid__row-action-btn{cursor:pointer;opacity:0;pointer-events:none;background:0 0;border:0;border-radius:2px;justify-content:center;align-items:center;width:20px;height:20px;padding:0;transition:opacity .18s;display:flex}.bsy-calendar-time-grid__row-action-btn--visible,.bsy-calendar-time-grid__row-action-btn:focus-visible{opacity:1;pointer-events:auto}.bsy-calendar-time-grid__row-action-btn:hover,.bsy-calendar-time-grid__row-action-btn:focus-visible{background-color:var(--calendar-header-background,#eff0f6)}.bsy-calendar-time-grid__row-action-icon{height:16px;color:var(--calendar-title-color,#121111);font-size:16px}._footer_h6lng_1{box-sizing:border-box;flex:0 0 50px;justify-content:center;align-items:center;height:50px;padding:10px 16px;display:flex}._today_h6lng_11{appearance:none;color:var(--bsy-date-picker-color-primary);cursor:pointer;background:0 0;border:none;border-radius:4px;width:48px;height:30px;padding:5px 10px;font-size:14px;line-height:20px}._today_h6lng_11:hover{background:var(--bsy-date-picker-color-today-bg)}._bsy-date-picker_legiv_1{--bsy-date-picker-z-index:1100;--bsy-date-picker-color-primary:#0265ff;--bsy-date-picker-color-primary-hover:#0265ff4d;--bsy-date-picker-color-text-primary:#121111;--bsy-date-picker-color-text-figma:#121111;--bsy-date-picker-color-header:var(--bsy-date-picker-color-text-figma);--bsy-date-picker-color-header-hover:var(--bsy-date-picker-color-primary);--bsy-date-picker-color-text-secondary:#999;--bsy-date-picker-color-cell:var(--bsy-date-picker-color-text-figma);--bsy-date-picker-color-cell-tertiary:var(--bsy-date-picker-color-text-secondary);--bsy-date-picker-color-cell-selected-bg:var(--bsy-date-picker-color-primary);--bsy-date-picker-color-cell-selected:#fff;--bsy-date-picker-color-arrow:#666;--bsy-date-picker-color-divider:#e0e0e0;--bsy-date-picker-color-week-row-bg:#eff0f6;--bsy-date-picker-color-today-bg:#f0f6ff;--bsy-date-picker-color-surface:#fff;--bsy-date-picker-size-cell:32px;--bsy-date-picker-size-pill-width:50px;--bsy-date-picker-size-panel-width:280px;--bsy-date-picker-size-panel-height:363px;--bsy-date-picker-size-panel-body-height:312px;--bsy-date-picker-size-panel-inner-width:248px;--bsy-date-picker-size-panel-inner-height:280px;--bsy-date-picker-size-panel-content-width:256px;--bsy-date-picker-size-year-picker-height:252px;--bsy-date-picker-border-radius:10px;--bsy-date-picker-border-radius-pill:100px;--bsy-date-picker-shadow:0px 6px 16px 0px #0000000f;z-index:var(--bsy-date-picker-z-index)}._bsy-date-picker__content_legiv_33{width:var(--bsy-date-picker-size-panel-width);height:var(--bsy-date-picker-size-panel-height);background:var(--bsy-date-picker-color-surface);border-radius:var(--bsy-date-picker-border-radius);box-shadow:var(--bsy-date-picker-shadow);flex-direction:column;display:flex;overflow:hidden}._bsy-date-picker__divider_legiv_43{background:var(--bsy-date-picker-color-divider);flex:0 0 1px;height:1px;margin:0}._bsy-date-picker__panel-loading_legiv_49{flex:0 0 var(--bsy-date-picker-size-panel-body-height)}._bsy-segmented_1yc4d_1{background-color:var(--bsy-segmented-background,#f3f3f3);border-radius:4px;align-items:center;gap:2px;height:34px;padding:2px;display:inline-flex;position:relative}._bsy-segmented--block_1yc4d_12{width:100%;display:grid}._bsy-segmented__item_1yc4d_17{cursor:pointer;white-space:nowrap;border:1px solid #0000;border-radius:4px;justify-content:center;align-items:center;height:30px;padding:7px 10px;font-size:14px;transition:color .3s ease-in-out;display:flex;position:relative}._bsy-segmented__item--disabled_1yc4d_31{cursor:not-allowed;color:#00000040!important}._bsy-segmented__item--block_1yc4d_36{text-overflow:ellipsis;min-width:0;padding-left:0;padding-right:0;overflow:hidden}._bsy-segmented__item--active_1yc4d_44{color:var(--bsy-segmented-active-color,#0265ff)}._bsy-segmented__item--inactive_1yc4d_48{color:var(--bsy-segmented-color,#121211)}._bsy-segmented__item--inactive_1yc4d_48:not(._bsy-segmented__item--disabled_1yc4d_31):hover{background-color:var(--bsy-segmented-hover-background,#fff);border-color:var(--bsy-segmented-hover-border,#e0e0e0)}._bsy-segmented__slider_1yc4d_56{border:1px solid var(--bsy-segmented-slider-border,#e0e0e0);background-color:var(--bsy-segmented-slider-background,#fff);border-radius:4px;height:30px;position:absolute;top:2px}.bsy-calendar-today-btn{color:var(--calendar-title-color,#121111);cursor:pointer;background:0 0;border-radius:4px;padding:5px 12px;font-size:14px;transition:all .2s}.bsy-calendar-today-btn:hover{background-color:var(--calendar-header-background,#eff0f6)}.bsy-calendar-nav-btn{width:30px;height:30px;color:var(--calendar-title-color,#121111);cursor:pointer;background:0 0;border-radius:4px;justify-content:center;align-items:center;font-size:16px;transition:all .2s;display:flex}.bsy-calendar-nav-btn:hover{background:var(--calendar-header-background,#eff0f6)}.bsy-calendar-date-display{color:var(--calendar-title-color,#121111);cursor:pointer;border-radius:4px;align-items:center;gap:6px;padding:4px 8px;font-size:14px;font-weight:600;display:flex}.bsy-calendar-date-display:hover{background:var(--calendar-header-background,#eff0f6)}.bsy-calendar-date-display .bsy-calendar-date-arrow{color:var(--calendar-title-color,#121111);font-size:16px;transition:transform .2s ease-in-out;transform:rotate(0)}.bsy-calendar-date-display--active .bsy-calendar-date-arrow{transform:rotate(-180deg)}.bsy-calendar-date-display--active{background:var(--calendar-header-background,#eff0f6)}.bsy-calendar-date-display--disabled{cursor:default}.bsy-calendar-date-display--disabled:hover{background:0 0}.bsy-calendar-header-left{align-items:center;gap:6px;display:flex}.bsy-calendar-header{justify-content:space-between;align-items:center;padding:2px 10px;display:flex}.bsy-calendar-header__left,.bsy-calendar-header__right{align-items:center;display:flex}.bsy-calendar-day{flex-direction:column;flex:1;height:100%;min-height:0;display:flex;overflow:hidden}.bsy-calendar-day__scroll-container{flex:1;min-height:0;overflow:hidden auto}.bsy-calendar-day__content{min-width:100%;display:flex;position:relative}.bsy-calendar-day__main{flex:1;min-width:0;position:relative}.bsy-calendar-day__events{pointer-events:none;position:absolute;inset:0 4px}.bsy-calendar-day__events .bsy-calendar-event-card{pointer-events:auto}.bsy-week-allday-section{flex-direction:column;padding:6px 0 4px 2px;display:flex}.bsy-week-allday-section__main{display:flex}.bsy-week-allday-section__events-container{flex:1;overflow:hidden}.bsy-week-allday-section__events-container--scroll{overflow-y:auto}.bsy-week-allday-section__grid{grid-template-columns:repeat(7,1fr);gap:4px;padding:0 10px 0 0;display:grid}.bsy-week-allday-section__toggle-bar{grid-template-columns:repeat(7,1fr);margin-top:4px;padding-right:10px;display:grid}.bsy-week-allday-section__toggle-cell{min-width:0}.bsy-week-allday-section__toggle-btn{cursor:pointer;color:var(--calendar-more-record-color,#666);white-space:nowrap;background:0 0;border:none;border-radius:4px;justify-content:center;align-items:center;gap:4px;padding:2px 0;font-size:12px;display:flex}.bsy-week-allday-section__toggle-btn:hover{color:var(--calendar-highlight-color,#0265ff)}.bsy-week-allday-section__toggle-icon{font-size:14px}.bsy-week-allday-section__toggle-text{font-size:12px}.bsy-week-header{grid-template-columns:repeat(7,1fr);min-height:56px;display:grid}.bsy-week-header__day{color:var(--calendar-title-color,#121111);flex-direction:column;gap:6px;padding:7px 0 0;font-size:14px;display:flex}.bsy-week-header__day--today{color:var(--calendar-highlight-color,#0265ff)}.bsy-week-header__day--past{color:var(--calendar-over-title-color,#666)}.bsy-week-header__day-name,.bsy-week-header__day-number{line-height:normal}.bsy-week-header__day-number{font-weight:700}.bsy-calendar-week{flex-direction:column;flex:1;height:100%;min-height:0;display:flex;overflow:hidden}.bsy-calendar-week__header-section{border-bottom:1px solid var(--calendar-border-color,#e0e0e0);background:0 0;flex-shrink:0;display:flex}.bsy-calendar-week__timezone-label{width:60px;min-width:60px;color:var(--calendar-specifically-color,#999);flex-direction:column;align-items:center;padding-top:26px;padding-bottom:10px;font-size:12px;display:flex}.bsy-calendar-week__collapse-btn{cursor:pointer;color:var(--calendar-more-record-color,#666);background:0 0;border:none;border-radius:4px;justify-content:center;align-items:center;margin-top:auto;padding:4px;font-size:16px;display:flex}.bsy-calendar-week__collapse-btn:hover{color:var(--calendar-highlight-color,#0265ff);background-color:var(--calendar-header-background,#eff0f6)}.bsy-calendar-week__header-content{flex-direction:column;flex:1;display:flex}.bsy-calendar-week__scroll-container{flex:1;min-height:0;overflow:hidden auto}.bsy-calendar-week__body{display:flex;position:relative}.bsy-calendar-week__grid{flex:1;grid-template-columns:repeat(7,1fr);display:grid;position:relative}.bsy-calendar-week__day-column{border-right:1px solid var(--calendar-border-color,#e0e0e0);position:relative}.bsy-calendar-week__day-column:nth-child(7){border-right:none}.bsy-calendar-week__day-events{pointer-events:none;z-index:2;position:absolute;inset:2px 2px 0;overflow:hidden}.bsy-calendar-week__day-events .bsy-calendar-event-card{pointer-events:auto}.bsy-calendar-view-month-header{background-color:#0000;grid-template-columns:repeat(7,1fr);padding:0 10px;display:grid}.bsy-calendar-view-month-header__day{color:var(--calendar-title-color,#121111);padding:7px 0;font-size:14px}.bsy-calendar-view-month-header__day:not(:first-child){padding-left:10px}.bsy-calendar-view-month-cell{background-color:#0000;flex-direction:column;display:flex;position:relative;overflow:hidden}.bsy-calendar-view-month-cell:last-child{border-right:none}.bsy-calendar-view-month-cell:first-child .bsy-calendar-view-month-cell__header{padding-left:0}.bsy-calendar-view-month-cell--other-month{background-color:#0000}.bsy-calendar-view-month-cell--other-month .bsy-calendar-view-month-cell__date:not(.bsy-calendar-view-month-cell__date--today){color:var(--calendar-over-title-color,#666)}.bsy-calendar-view-month-cell__header{justify-content:space-between;align-items:center;min-height:34px;max-height:34px;padding-left:10px;display:flex}.bsy-calendar-view-month-cell__date{color:var(--calendar-title-color,#121111);justify-content:center;align-items:center;font-size:14px;font-weight:700;display:flex}.bsy-calendar-view-month-cell__date--today{text-align:center;background-color:var(--calendar-highlight-color,#0265ff);min-width:24px;color:var(--calendar-highlight-text-color,#fff);border-radius:12px;padding:0 4px;line-height:24px}.bsy-calendar-view-month-cell__more-btn{color:var(--calendar-title-color,#121111);cursor:pointer;margin-top:auto;margin-bottom:4px;padding:0 0 0 10px;font-size:12px}.bsy-calendar-view-month-cell__more-btn:hover{color:var(--calendar-highlight-color,#0265ff)}.bsy-calendar-view-month-cell__add-btn{cursor:pointer;opacity:0;background:0 0;border:0;border-radius:2px;justify-content:center;align-items:center;width:20px;height:20px;padding:0;transition:opacity .2s;display:flex}.bsy-calendar-view-month-cell:hover .bsy-calendar-view-month-cell__add-btn,.bsy-calendar-view-month-cell .bsy-calendar-view-month-cell__add-btn:focus-visible{opacity:1}.bsy-calendar-view-month-cell__add-btn:hover,.bsy-calendar-view-month-cell__add-btn:focus-visible{background-color:var(--calendar-header-background,#eff0f6)}.bsy-calendar-view-month-cell__add-btn-icon{height:16px;color:var(--calendar-title-color,#121111);font-size:16px}.bsy-calendar-view-month-cell-popover{flex-direction:column;width:220px;max-height:340px;display:flex}.bsy-calendar-view-month-cell-popover__header{justify-content:space-between;align-items:center;margin-bottom:16px;padding:0 10px;display:flex}.bsy-calendar-view-month-cell-popover__title{color:var(--calendar-title-color,#121111);font-size:16px;font-weight:700}.bsy-calendar-view-month-cell-popover__close{color:var(--calendar-title-color,#121111);cursor:pointer;background:0 0;border:0;padding:0;font-size:16px;line-height:1}.bsy-calendar-view-month-cell-popover__list{flex-direction:column;gap:4px;max-height:308px;padding:0 10px;display:flex;overflow-y:auto}.bsy-calendar-view-month-cell-popover__item{height:22px;position:relative}.bsy-calendar-view-week-event-layer{pointer-events:none;position:absolute;inset:0 10px;overflow:hidden}.bsy-calendar-view-week-event-layer .bsy-calendar-event-card{pointer-events:auto;position:absolute}.bsy-calendar-view-more-btn{pointer-events:auto;color:var(--calendar-more-record-color,#666);cursor:pointer;background:0 0;border:0;align-items:center;height:22px;padding:0 0 0 10px;font-family:inherit;font-size:12px;display:flex}.bsy-calendar-view-more-btn--first{padding-left:0}.bsy-calendar-view-more-btn:hover,.bsy-calendar-view-more-btn:focus-visible,.bsy-calendar-view-more-btn--active{color:var(--calendar-highlight-color,#0265ff)}.bsy-calendar-view-month{background-color:#0000;flex-direction:column;flex:1;height:100%;min-height:0;display:flex;overflow:hidden}.bsy-calendar-view-month__grid{border-top:1px solid var(--calendar-border-color,#e0e0e0);flex-direction:column;flex:1;min-height:0;display:flex;overflow-y:auto}.bsy-calendar-view-month__week{border-bottom:1px solid var(--calendar-border-color,#e0e0e0);flex:1;grid-template-columns:repeat(7,1fr);min-height:75px;padding:0 10px;display:grid;position:relative}.bsy-calendar-view-month__week:last-child,.bsy-calendar-view-month__week:last-child .bsy-calendar-view-month-cell{border-bottom:none}.bsy-calendar-view{height:100%;min-height:0;position:relative}.bsy-calendar-view__container{border:1px solid var(--calendar-border-color,#e0e0e0);background-color:var(--calendar-background-color,inherit);background-image:var(--calendar-background-image,none);background-position:var(--calendar-background-position,center center);background-size:var(--calendar-background-size,auto);background-repeat:var(--calendar-background-repeat,no-repeat);border-radius:4px;flex-direction:column;height:100%;min-height:0;display:flex;overflow:hidden}.bsy-calendar-view__body{flex-direction:column;flex:1;min-height:0;display:flex;overflow:hidden}._bsy-card_myftj_1{background:#fff;border-radius:10px;padding:10px 12px}._bsy-card__header_myftj_6{cursor:pointer;justify-content:space-between;align-items:center;line-height:normal;display:flex}._bsy-card__header_myftj_6:hover ._bsy-card__title_myftj_13{color:#0265ff}._bsy-card__title_myftj_13{color:#121211;-webkit-user-select:none;user-select:none;margin:0;font-size:14px;font-weight:700;transition:color .2s}._bsy-card__icon-container_myftj_24{cursor:pointer;color:#666;border-radius:4px;justify-content:center;align-items:center;width:20px;height:20px;transition:background-color .2s;display:flex}._bsy-card__icon-container_myftj_24:hover{color:#0265ff;background-color:#f0f6ff}._bsy-card__icon_myftj_24{font-size:16px;transition:transform .2s}._bsy-card__icon--expanded_myftj_43{transform:rotate(180deg)}._bsy-card__content_myftj_46{grid-template-rows:0fr;transition:grid-template-rows .3s cubic-bezier(.4,0,.2,1);display:grid;overflow:hidden}._bsy-card__content--expanded_myftj_52{grid-template-rows:1fr}._bsy-card__content--expanded_myftj_52 ._bsy-card__content-inner_myftj_55{padding-top:12px}._bsy-card__content-inner_myftj_55{transition:padding-top .3s cubic-bezier(.4,0,.2,1);overflow:hidden}._checkbox_vheru_1{border:1px solid;border-radius:2px;flex-shrink:0;justify-content:center;align-items:center;width:16px;height:16px;transition:all .2s;display:flex}._checkbox--checked_vheru_12{background-color:#0265ff;border-color:#0265ff}._checkbox--unchecked_vheru_16{background-color:#fff0;border-color:#9da2b2}._checkbox--unchecked_vheru_16:hover{border-color:#0265ff}._checkbox--indeterminate_vheru_23{background-color:#fff;border-color:#0265ff}._checkbox--disabled_vheru_27{background-color:#f5f5f5;border-color:#d9d9d9}._checkbox__inner_vheru_32{background-color:#0265ff;border-radius:1px;width:8px;height:8px}._checkbox__inner--disabled_vheru_38{background-color:#b8b8b8}._bsy-checkbox_1372g_1{cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;gap:.5rem;display:flex}._bsy-checkbox--full-width_1372g_8{width:100%}._bsy-checkbox__button_1372g_11{border:1px solid;border-radius:2px;flex-shrink:0;justify-content:center;align-items:center;width:1rem;height:1rem;transition:all .2s ease-in-out;display:flex}._bsy-checkbox__button--disabled_1372g_22{cursor:not-allowed;background-color:#f5f5f5;border-color:#d9d9d9}._bsy-checkbox__button--enabled_1372g_27{cursor:pointer}._bsy-checkbox__button--indeterminate_1372g_30{background-color:#fff;border-color:#0265ff}._bsy-checkbox__button--checked_1372g_34{background-color:#0265ff;border-color:#0265ff}._bsy-checkbox__button--unchecked_1372g_38{background-color:#0000;border-color:#9da2b2}._bsy-checkbox__button--unchecked_1372g_38:hover{border-color:#0265ff}._bsy-checkbox__button--left-label_1372g_45{order:2}._bsy-color-picker__floating_11t7y_1{z-index:10}._bsy-color-picker__content_11t7y_4{background-color:#fff;border-radius:8px;padding:16px;font-size:14px;box-shadow:0 25px 50px -12px #00000040}._bsy-color-picker__grid_11t7y_11{gap:16px;display:grid}._bsy-color-picker__preset-colors-title_11t7y_15{color:#91a1b7;margin-bottom:12px}._bsy-color-picker__preset-colors-grid_11t7y_19{grid-template-columns:repeat(6,1fr);gap:16px;display:grid}._bsy-color-picker__preset-colors-item_11t7y_24{aspect-ratio:1;cursor:pointer;z-index:1;border:1px solid #b5b5b533;border-radius:50%;justify-content:center;align-items:center;width:30px;display:flex;position:relative}._bsy-color-picker__preset-colors-item_11t7y_24:after{content:"";z-index:-1;border-radius:50%;transition:all .25s;position:absolute;inset:0}._bsy-color-picker__preset-colors-item_11t7y_24:hover:after{background:var(--hover-color);transform:scale(1.15)}._bsy-color-picker__custom-color-title_11t7y_48{color:#91a1b7;margin-bottom:12px}._bsy-color-picker__custom-color-btn_11t7y_52{cursor:pointer;color:#666;border:1px solid #e0e0e0;border-radius:50%;padding:6px;font-size:0;transition:all .25s;display:inline-block}._bsy-color-picker__custom-color-btn_11t7y_52:not(._preview_11t7y_62):hover,._bsy-color-picker__custom-color-btn_11t7y_52:not(._preview_11t7y_62)._bsy-color-picker__custom-color-btn--active_11t7y_62{color:#0265ff;border-color:#0265ff}._bsy-color-picker__custom-color-btn_11t7y_52._bsy-color-picker__custom-color-btn--preview_11t7y_66{border-color:#0000}._bsy-color-picker__custom-color-content_11t7y_69{gap:16px;display:flex}._bsy-color-picker__check-icon_11t7y_73{color:#fff;font-size:18px}.os-theme-bsy{box-sizing:border-box;--os-size:11px;--os-padding-perpendicular:2px;--os-padding-axis:2px;--os-track-border-radius:0;--os-track-bg:transparent;--os-track-bg-hover:transparent;--os-track-bg-active:transparent;--os-track-border:none;--os-track-border-hover:none;--os-track-border-active:none;--os-handle-border-radius:7px;--os-handle-bg:#c2c2c2;--os-handle-bg-hover:#b0b0b0;--os-handle-bg-active:#a8a8a8;--os-handle-border:none;--os-handle-border-hover:none;--os-handle-border-active:none;--os-handle-min-size:24px}._bsy-scrollbar_1mgws_1{width:100%;max-width:100%;min-height:0}.bsy-select-input-search-input{color:#121212;border:1px solid #e0e0e0;border-radius:4px;gap:8px;padding:6px 10px;font-size:14px;line-height:normal;display:flex}.bsy-select-input-search-input__container{flex:1}.bsy-select-input-search-input__icon{color:#666;font-size:16px}.bsy-select-input-search-input__icon:hover{color:#0265ff}.bsy-select-input-search-input input{border:none;outline:none;width:100%;min-height:20px;max-height:20px}.bsy-select-input-search-input input::placeholder{color:#999}._dropdown__trigger_1fafn_1{cursor:pointer}._dropdown__trigger--disabled_1fafn_4{cursor:not-allowed}._dropdown__panel_1fafn_7{background:var(--bsy-dropdown-color-bg,#fff);border-radius:4px;width:208px;min-width:120px;padding:4px 0;box-shadow:0 0 10px #00000014}._dropdown__search_1fafn_15{margin-bottom:4px;padding:0 4px}._dropdown__menu_1fafn_19{padding:0 4px}._dropdown__menu-item_1fafn_22{cursor:pointer;-webkit-user-select:none;user-select:none;color:var(--bsy-dropdown-color-text,#121211);border-radius:4px;align-items:center;gap:8px;padding:7px 10px;font-size:14px;transition:all .2s;display:flex}._dropdown__menu-item_1fafn_22:hover:not(._dropdown__menu-item--disabled_1fafn_34):not(._dropdown__menu-item--active_1fafn_34){background-color:var(--bsy-dropdown-item-hover-bg,#eff0f6)}._dropdown__menu-item--active_1fafn_34{background-color:var(--bsy-dropdown-item-active-bg,#f0f6ff);color:var(--bsy-dropdown-item-active-color,#0265ff)}._dropdown__menu-item--active_1fafn_34 ._dropdown__menu-item-icon_1fafn_41{color:var(--bsy-dropdown-item-active-color,#0265ff)}._dropdown__menu-item-icon_1fafn_41{color:var(--bsy-dropdown-color-icon,#6f829e);flex-shrink:0;justify-content:center;align-items:center;font-size:16px;display:flex}._dropdown__menu-item-icon_1fafn_41._system-field_1fafn_52{color:#4d609f}._dropdown__menu-item--disabled_1fafn_34{color:var(--bsy-dropdown-color-text-disabled,#999);cursor:not-allowed;background-color:#0000}._dropdown__menu-item--disabled_1fafn_34 ._dropdown__menu-item-icon_1fafn_41{color:var(--bsy-dropdown-color-text-disabled,#999)}._dropdown__menu-item-label_1fafn_63{flex:1;line-height:normal}._modal_1wkiy_1{transition:width .3s}._modal_1wkiy_1:focus{outline:none}._modal__title_1wkiy_7{border-bottom:1px solid #e0e0e0;justify-content:space-between;max-height:60px;padding:16px 20px;font-size:18px;font-weight:700;display:flex}._modal__title-text_1wkiy_16{font-size:18px;font-weight:700}._modal__actions_1wkiy_20,._modal__button_groups_1wkiy_24{gap:10px;display:flex}._modal__button_1wkiy_24{cursor:pointer;border-radius:4px;justify-content:center;align-items:center;width:26px;height:26px;transition:colors .2s;display:flex}._modal__button_1wkiy_24:hover{background-color:#eff0f6}._modal__button--fullscreen_1wkiy_41:hover{background-color:#fff}._modal__icon_1wkiy_44{color:#666;transition:color .2s}._modal__button_1wkiy_24:hover ._modal__icon_1wkiy_44{color:#121211}@keyframes bsy-modal-fade-down{0%{opacity:0;transform:translateY(-15%)}to{opacity:1;transform:translateZ(0)}}@keyframes bsy-modal-fade-up{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translateY(-15%)}}@keyframes bsy-modal-mask-fade-in{0%{opacity:0}to{opacity:1}}@keyframes bsy-modal-mask-fade-out{0%{opacity:1}to{opacity:0}}.bsy-modal-motion-enter,.bsy-modal-motion-appear{animation:.218s both bsy-modal-fade-down}.bsy-modal-motion-leave{animation:.218s both bsy-modal-fade-up}.bsy-modal-motion-leave .ant-modal-container{pointer-events:none}.bsy-modal-mask-motion-enter,.bsy-modal-mask-motion-appear{animation:.218s linear both bsy-modal-mask-fade-in}.bsy-modal-mask-motion-leave{animation:.218s linear both bsy-modal-mask-fade-out}._lexical-editor__toolbar-button_1y192_1{color:#666;border-radius:2px;padding:3px;display:inline-flex}._lexical-editor__toolbar-button-active_1y192_7,._lexical-editor__toolbar-button_1y192_1:hover{color:#121211;background-color:#e0e0e0}._picture-modal__container_qyj1h_1{display:flex}._picture-modal__sidebar_qyj1h_4{border-right:1px solid #e0e0e0;flex-basis:120px;position:relative}._picture-modal__menu-list_qyj1h_9{margin:0;padding:0;list-style:none}._picture-modal__menu-item_qyj1h_14{cursor:pointer;z-index:2;justify-content:space-between;align-items:center;padding:9px 20px;transition:color .3s;display:flex;position:relative}._picture-modal__slider_qyj1h_24{z-index:1;background-color:#f3f3f3;border-radius:4px;width:100%;height:40px;transition:transform .2s cubic-bezier(.4,0,.2,1);position:absolute;top:0;left:0}._picture-modal__content_qyj1h_35{flex:1;height:300px;padding:20px;position:relative}._picture-modal__content-wrapper_qyj1h_41{height:100%;overflow:hidden}._picture-modal__content-container_qyj1h_45{height:calc(100% * var(--menu-count,2))}._picture-modal__content-page_qyj1h_48{height:calc(100% / var(--menu-count,2))}._picture-modal__content-title_qyj1h_51{margin-bottom:10px;font-weight:700}._picture-modal__content-title_qyj1h_51:after{content:attr(data-title);color:#999;margin-left:10px;font-size:12px;font-weight:400}._picture-modal__upload-area_qyj1h_62{--upload-text-color:#999;text-align:center;cursor:pointer;border:1px dashed #e0e0e0;border-radius:4px;margin-top:10px;padding:7px;transition:border-color .2s}._picture-modal__upload-area_qyj1h_62:hover{--upload-text-color:#0269ff;color:#0269ff;border-color:#0269ff}._picture-modal__upload-area--dragging_qyj1h_77{--upload-text-color:#0269ff;color:#0269ff;background-color:#f0f8ff;border-color:#0269ff}._picture-modal__preview_qyj1h_83{border:1px solid #e0e0e0;border-radius:4px;align-items:center;gap:12px;margin-top:16px;padding:10px;display:flex}._picture-modal__preview-image_qyj1h_92{flex-shrink:0}._picture-modal__preview-image_qyj1h_92 img{object-fit:cover;border-radius:4px}._picture-modal__preview-info_qyj1h_99{flex:1;min-width:0}._picture-modal__preview-filename_qyj1h_103{word-break:break-all;margin-bottom:4px;font-size:14px;font-weight:500}._picture-modal__preview-size_qyj1h_109{color:#999;font-size:12px}._picture-modal__preview-delete_qyj1h_113{color:#666;cursor:pointer;align-self:center}._picture-modal__preview-delete_qyj1h_113:hover{color:#ff4d4f}._picture-modal__upload-text_qyj1h_121{color:var(--upload-text-color);margin-left:8px}._picture-modal__footer_qyj1h_125{border-top:1px solid #e0e0e0;justify-content:flex-end;gap:12px;padding:14px 20px;display:flex}._bsy-lexical__toolbar_n60av_1{background:#fafafa;border-bottom:1px solid #e0e0e0;align-items:center;padding:5px 6px;display:flex}._bsy-lexical__toolbar-group_n60av_9{align-items:center;gap:6px;display:flex}._bsy-lexical__toolbar-divider_n60av_15{background-color:#e0e0e0;width:1px;height:20px;margin:0 5px}._bsy-lexical-editor_19ssw_1{border:1px solid #e0e0e0;border-radius:4px;overflow:hidden}._bsy-lexical-editor__content-editable_19ssw_6{padding:6px 10px;overflow-y:auto}._bsy-lexical-editor__content-editable_19ssw_6:focus{outline:none}._imageWrapper_y06h3_1{border:1px solid #0000;border-radius:2px;transition:border-color .2s;display:inline-block;position:relative}._imageWrapper_y06h3_1._selected_y06h3_8{border-color:#0269ff;box-shadow:0 0 0 2px #0269ff80}._imageWrapper_y06h3_1._resizing_y06h3_12{-webkit-user-select:none;user-select:none}._imageWrapper_y06h3_1._resizing_y06h3_12 ._image_y06h3_1{pointer-events:none}._image_y06h3_1{cursor:pointer;max-width:100%;height:auto;transition:opacity .2s;display:block}._image_y06h3_1:hover{opacity:.9}._resizeHandle_y06h3_30{cursor:nw-resize;z-index:10;background:#0269ff;border:1px solid #fff;border-radius:50%;width:8px;height:8px;position:absolute}._resizeHandle_y06h3_30:hover{background:#40a9ff;transform:scale(1.2)}._resizeHandle_y06h3_30._topLeft_y06h3_44{cursor:nw-resize;top:-4px;left:-4px}._resizeHandle_y06h3_30._topRight_y06h3_49{cursor:ne-resize;top:-4px;right:-4px}._resizeHandle_y06h3_30._bottomLeft_y06h3_54{cursor:sw-resize;bottom:-4px;left:-4px}._resizeHandle_y06h3_30._bottomRight_y06h3_59{cursor:se-resize;bottom:-4px;right:-4px}._resizing_y06h3_12 *{-webkit-user-select:none!important;user-select:none!important}.editor-text-underline{text-decoration:underline}.editor-link{color:#0269ff;cursor:pointer}.editor-text-italic{font-style:italic}.editor-link:hover{text-decoration:underline}._modeTrigger_cbumr_1,._todayBtn_cbumr_1,._iconBtn_cbumr_1{cursor:pointer;border:1px solid #0000;border-radius:4px;transition:background-color .2s}._root_cbumr_8{align-items:center;gap:8px;height:100%;display:inline-flex}._modeTrigger_cbumr_1{box-sizing:border-box;height:30px;color:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));background:0 0;justify-content:center;align-items:center;gap:6px;padding:4px 6px;font-size:14px;font-weight:700;line-height:1;display:inline-flex}._modeTrigger_cbumr_1:hover ._modeTriggerArrow_cbumr_29,._modeTrigger_cbumr_1._isActive_cbumr_29 ._modeTriggerArrow_cbumr_29{color:var(--bsy-gantt-toolbar-icon-hover-color,var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff)))}._modeTrigger_cbumr_1._isActive_cbumr_29 ._modeTriggerArrow_cbumr_29{transform:rotate(180deg)}._modeTriggerLabel_cbumr_36{white-space:nowrap}._modeTriggerArrow_cbumr_29{color:var(--bsy-gantt-toolbar-icon-color,var(--bsy-gantt-color-text,#121111));justify-content:center;align-items:center;line-height:1;transition:transform .2s,color .2s;display:inline-flex}._todayBtn_cbumr_1{height:30px;color:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));background:0 0;padding:4px 12px;font-size:14px}._todayBtn_cbumr_1:hover{background-color:var(--bsy-gantt-toolbar-today-hover-bg,color-mix(in srgb, var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff)) 10%, transparent))}._divider_cbumr_60{background-color:var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));width:1px;height:16px;display:inline-block}._scrollBtns_cbumr_67{align-items:center;gap:4px;display:flex}._iconBtn_cbumr_1{width:30px;height:30px;color:var(--bsy-gantt-toolbar-icon-color,var(--bsy-gantt-color-text,#121111));background:0 0;justify-content:center;align-items:center;font-size:16px;display:flex}._iconBtn_cbumr_1:hover{color:var(--bsy-gantt-toolbar-icon-hover-color,var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff)))}._root_1ncav_1{background:var(--bsy-gantt-color-bg-container,#fff);border-left:1px solid var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));flex-direction:column;flex:1;min-width:0;height:100%;display:flex;overflow:hidden}._timelineHost_1ncav_12{flex:1;min-height:0;position:relative;overflow:hidden}._timelineContent_1ncav_19{background:var(--bsy-gantt-color-bg-container,#fff);width:100%;height:100%;position:relative;overflow:auto}._canvas_1ncav_27{min-height:100%;position:relative;overflow-x:clip}._weekendBg_1ncav_33{background:var(--bsy-gantt-color-bg-weekend,#fafafa);pointer-events:none;position:absolute;top:0}._colLine_1ncav_40{background:var(--bsy-gantt-color-split,var(--bsy-base-border-color,#e0e0e0));pointer-events:none;z-index:3;width:1px;position:absolute;top:0}._rowLine_1ncav_49{pointer-events:none;position:absolute;left:0;right:0}._rowHoverBg_1ncav_56{background:var(--bsy-gantt-color-bg-row-hover,#f4f6fc);pointer-events:none;z-index:1;position:absolute;left:0;right:0}._todayIndicator_1ncav_65{pointer-events:none;width:0;position:absolute;top:0;bottom:0}._todayIndicatorContentLine_1ncav_73{z-index:4}._todayIndicatorLine_1ncav_77{background:var(--bsy-gantt-color-today-line,color-mix(in srgb, var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff)) 20%, transparent));width:2px;position:absolute;top:0;bottom:0;left:-1px}._todayIndicatorHeaderDot_1ncav_86{z-index:3;background:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));pointer-events:none;border-radius:50%;width:6px;height:6px;position:absolute;bottom:0;transform:translate(-50%)}._calendar_1ncav_98{border-bottom:1px solid var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));height:68px;position:relative;overflow:hidden}._calendarTrack_1ncav_105{will-change:transform;height:100%;transform:translateX(calc(-1 * var(--gantt-scroll-left,0px)));position:relative}._calendarToolbar_1ncav_112{z-index:3;box-sizing:border-box;background-color:var(--bsy-gantt-toolbar-bg,var(--bsy-gantt-color-bg-container,#fff));border-radius:4px;align-items:center;height:32px;padding:0 8px 0 0;display:flex;position:absolute;top:0;right:0}._headerCell_1ncav_126{z-index:1;box-sizing:border-box;color:var(--bsy-gantt-color-text-secondary,#666);white-space:nowrap;text-overflow:ellipsis;align-items:center;padding:0 8px;line-height:1;display:flex;position:absolute;overflow:hidden}._headerCellTop_1ncav_140{border-bottom:1px solid var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));background:var(--bsy-gantt-color-bg-container,#fff);font-size:13px;top:0}._headerCellBottom_1ncav_147{justify-content:center;font-size:12px}._isActive_1ncav_152{color:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff))}._headerColLine_1ncav_156{background:var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));pointer-events:none;z-index:2;width:1px;position:absolute}._headerCellStickyText_1ncav_164{white-space:nowrap;will-change:transform;transform:translateX(max(0px, var(--gantt-scroll-left,0px) - var(--segment-left,0px)));align-items:center;display:inline-flex}._headerCellDatePrefix_1ncav_172{color:var(--bsy-gantt-color-text-secondary,#666);flex-shrink:0;display:inline-block}._offscreenRow_1ncav_178{z-index:7;pointer-events:none;position:absolute;left:0;right:0}._offscreenTrack_1ncav_186{align-items:center;height:100%;display:flex}._offscreenBtn_1ncav_192{width:24px;height:24px;color:var(--bsy-gantt-color-text-secondary,#666);background-color:var(--bsy-gantt-arrow-bg,#eff0f6);cursor:pointer;pointer-events:auto;border:none;border-radius:5px;justify-content:center;align-items:center;font-size:16px;transition:background-color .2s,color .2s;display:inline-flex}._offscreenBtn_1ncav_192:hover{background-color:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));color:#fff}._offscreenBtn_1ncav_192:focus-visible{outline:2px solid var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));outline-offset:2px}._offscreenBtnLeft_1ncav_216{position:sticky;left:4px}._offscreenBtnRight_1ncav_221{margin-left:auto;position:sticky;right:4px}._bar_1ncav_227{box-sizing:border-box;color:#fff;-webkit-user-select:none;user-select:none;z-index:5;background:#5170e833;border-radius:4px;outline:2px solid #0000;align-items:center;padding:0;transition:outline-color .25s,background-color .25s;display:flex;position:absolute;overflow:visible}._bar_1ncav_227:hover{outline-color:var(--bsy-gantt-bar-hover-border-color,transparent)}._bar_1ncav_227:hover ._barProgress_1ncav_245:after{opacity:1}._bar_1ncav_227:hover ._barResizeHandle_1ncav_248{opacity:1;pointer-events:auto}._bar_1ncav_227:active{cursor:move}._isReadonly_1ncav_258{opacity:.85}._isDragging_1ncav_262{opacity:.92;outline-color:var(--bsy-gantt-bar-hover-border-color,transparent);transform:none}._isDragging_1ncav_262 ._barProgress_1ncav_245:after,._isDragging_1ncav_262 ._barResizeHandle_1ncav_248{opacity:1}._isMicro_1ncav_274:hover,._isMicro_1ncav_274._isDragging_1ncav_262{--bsy-gantt-bar-actual-width:max(40px, calc(var(--bsy-gantt-bar-calc-width) + 12px));z-index:10}._barProgress_1ncav_245{background:var(--bsy-gantt-bar-fill-color,#5170e8);pointer-events:none;border-radius:4px 0 0 4px;position:absolute;top:0;bottom:0;left:0;overflow:hidden}._barProgress_1ncav_245:after{content:"";opacity:0;background:#0003;transition:opacity .18s;position:absolute;inset:0}._isFull_1ncav_299{border-radius:4px}._barLabel_1ncav_303{z-index:1;white-space:nowrap;text-overflow:ellipsis;padding:0 13px;font-size:12px;position:relative;overflow:hidden}._isHidden_1ncav_313{display:none}._isOutside_1ncav_317{max-width:none;color:var(--bsy-gantt-color-text,#121111);pointer-events:none;padding:0;position:absolute;top:50%;left:calc(100% + 4px);overflow:visible;transform:translateY(-50%)}._barResizeHandle_1ncav_248{opacity:0;pointer-events:none;cursor:ew-resize;z-index:2;background:0 0;border:none;height:100%;padding:0 8px;transition:opacity .18s;position:absolute;top:50%;transform:translateY(-50%)}._barResizeHandle_1ncav_248:before{content:"";background-color:#fff;width:5px;height:100%;display:block;-webkit-mask-position:50%;mask-position:50%;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}._barResizeHandleLeft_1ncav_355{left:-4px}._barResizeHandleLeft_1ncav_355:before{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"5\" height=\"12\" viewBox=\"0 0 5 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1.5 2V10H0V2H1.5Z\" fill=\"white\"/><path d=\"M5 0V12H3.5V0H5Z\" fill=\"white\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"5\" height=\"12\" viewBox=\"0 0 5 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1.5 2V10H0V2H1.5Z\" fill=\"white\"/><path d=\"M5 0V12H3.5V0H5Z\" fill=\"white\"/></svg>")}._barResizeHandleRight_1ncav_363{right:-4px}._barResizeHandleRight_1ncav_363:before{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"5\" height=\"12\" viewBox=\"0 0 5 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1.5 0V12H0V0H1.5Z\" fill=\"white\"/><path d=\"M5 2V10H3.5V2H5Z\" fill=\"white\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"5\" height=\"12\" viewBox=\"0 0 5 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1.5 0V12H0V0H1.5Z\" fill=\"white\"/><path d=\"M5 2V10H3.5V2H5Z\" fill=\"white\"/></svg>")}._root_8s9va_1{cursor:pointer;z-index:5;flex-direction:column;gap:3px;display:flex;position:absolute}._root_8s9va_1:hover ._arrow_8s9va_9{display:inline-flex}._label_8s9va_13{align-items:center;gap:4px;height:17px;display:flex}._arrow_8s9va_9{color:var(--bsy-gantt-color-text-secondary,#666);flex-shrink:0;font-size:16px;transition:transform .2s;display:none}._isCollapsed_8s9va_28{transform:rotate(-90deg)}._labelText_8s9va_32{color:var(--bsy-gantt-color-text,#121111);white-space:nowrap;font-size:12px;line-height:1.4}._track_8s9va_39{background:#00000014;border-radius:100px;height:4px;position:relative}._progress_8s9va_46{pointer-events:none;background:#c2c2c2;border-radius:100px;height:100%;position:absolute;top:0;left:0}._summaryTooltip_8s9va_56{color:#fff;flex-direction:column;gap:4px;padding:10px;font-size:12px;line-height:normal;display:flex}._summaryTooltipLine_8s9va_66{white-space:nowrap;margin:0}.custom-table{--cell-padding:6px 8px;--row-height:34px;position:relative}.custom-table::-webkit-scrollbar{width:8px;height:8px}.custom-table::-webkit-scrollbar-track{background:#f1f1f1}.custom-table::-webkit-scrollbar-thumb{background:#c1c1c1;border-radius:4px}.custom-table::-webkit-scrollbar-thumb:hover{background:#a8a8a8}.custom-table table{border-collapse:separate;border-spacing:0;width:100%;margin:0;padding:0;display:table}.custom-table .custom-table-wrapper{outline:none;width:100%;font-size:13px;overflow:hidden}.custom-table .custom-table-wrapper.os-enabled{overflow:auto}.custom-table .custom-table-wrapper.resizing{-webkit-user-select:none;user-select:none}.custom-table .custom-table-wrapper.resizing .custom-table-header-cell{cursor:col-resize}.custom-table .custom-table-wrapper.bsy-row-height-high{--row-height:106px}.custom-table .custom-table-wrapper.bsy-row-height-middle{--row-height:68px}.custom-table .custom-table-wrapper.bsy-row-height-low{--row-height:34px}.custom-table .custom-table-wrapper.bsy-row-height-auto{--row-height:auto}.custom-table .custom-table-wrapper.bsy-row-height-auto .cell-content{white-space:normal;height:auto}.custom-table .custom-table-header-cell{background:var(--bsy-table-color-bg-header,#f5f7fa);color:var(--bsy-table-color-text-heading,#000);padding:var(--cell-padding);border-bottom:1px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));cursor:pointer;height:34px;font-weight:500;transition:background-color .2s;position:relative}.custom-table .custom-table-header-cell:after{content:"";background:var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));width:1px;position:absolute;inset:0 0 0 auto}.custom-table .custom-table-header-cell.first{border-top-left-radius:4px}.custom-table .custom-table-header-cell.last{border-top-right-radius:4px}.custom-table .custom-table-header-cell .resize-handle{cursor:col-resize;z-index:1;background:0 0;width:4px;transition:background-color .2s;position:absolute;inset-block:0;inset-inline-end:0}.custom-table .custom-table-header-cell .header-line-clamp-3{text-overflow:ellipsis;-webkit-line-clamp:3;line-clamp:3;-webkit-box-orient:vertical;min-width:0;display:-webkit-box;overflow:hidden}.custom-table .custom-table-header-cell.spacer-cell{background:#fafafa}.custom-table .header-cell-content{justify-content:space-between;align-items:center;display:flex}.custom-table .header-cell-title{flex:1}.custom-table .sort-indicator{align-items:center;block-size:14px;inline-size:14px;display:inline-flex}.custom-table .sort-icon{vertical-align:middle;block-size:0;inline-size:0;transition:transform .2s;display:inline-block}.custom-table .sort-icon.sort-icon-default{opacity:.3;border-inline:4px solid #0000}.custom-table .sort-icon.sort-icon-asc{border:solid #0000;border-width:0 4px 5px;border-bottom-color:#666}.custom-table .sort-icon.sort-icon-desc{border:4px solid #0000;border-top:5px solid #666;border-bottom-width:0}.custom-table .custom-table-body{position:relative}.custom-table .custom-table-row{border-bottom:1px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0))}.custom-table .custom-table-row:last-child{border-bottom:none}.custom-table .custom-table-row:hover .custom-table-cell{background:var(--bsy-table-color-bg-row-hover,#f4f6fc)}.custom-table .custom-table-cell{background:var(--bsy-table-color-bg-container,#fff);color:var(--bsy-table-color-text,#000);border-bottom:1px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));height:var(--row-height);transition:background-color .2s;position:relative}.custom-table .custom-table-cell:after{content:"";background:var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));width:1px;position:absolute;inset:0 0 0 auto}.custom-table .custom-table-cell.fixed{background:var(--bsy-table-color-bg-container,#fff)}.custom-table .custom-table-cell .cell-content{text-overflow:ellipsis;white-space:nowrap;height:calc(var(--row-height) - 3px);padding:var(--cell-padding);overflow:hidden}.custom-table .custom-table-cell .cell-content.left{text-align:left}.custom-table .custom-table-cell .cell-content.center{text-align:center}.custom-table .custom-table-cell .cell-content.right{text-align:right}.custom-table .custom-table-empty-row td{text-align:center;color:#666;padding:40px 16px;font-size:14px}.custom-table .custom-table-empty-overlay{pointer-events:none;z-index:3;place-items:center;display:grid;position:absolute;overflow:hidden}.custom-table .custom-table-empty-overlay-inner{pointer-events:auto}.custom-table .spacer-cell{border-right:none;border-bottom:1px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));background:0 0}.custom-table .custom-table-footer:before{content:"";inset-inline:0;background:var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));z-index:10;height:1px;position:absolute;top:-1px}.custom-table .custom-table-footer tr{border-top:1px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0))}.custom-table .custom-table-footer tfoot{background:var(--bsy-table-color-bg-container,#fff)}.custom-table .custom-table-footer tfoot .custom-table-footer-cell{color:#666;font-size:13px;position:relative}.custom-table .custom-table-footer tfoot .custom-table-footer-cell:after{content:"";background:var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));width:1px;position:absolute;inset:0 0 0 auto}.custom-table .custom-table-footer tfoot .custom-table-footer-cell .cell-content{padding:var(--cell-padding);height:32px}.custom-table .custom-table-footer tfoot .custom-table-footer-cell.fixed-left,.custom-table .custom-table-footer tfoot .custom-table-footer-cell.fixed-right{background:var(--bsy-table-color-bg-container,#fff)}.custom-table .custom-table-footer tfoot .custom-table-footer-cell:hover{background:var(--bsy-base-bgcolor-f3,#eff0f6)}.custom-table .custom-table-resize-handle{inset-block:0;z-index:21;background:var(--bsy-base-color,#0265ff);width:1px;display:none;position:absolute;left:-1px}.custom-table .fixed-shadow-mask{pointer-events:none;z-index:12;position:absolute;inset-block:0;overflow:hidden}.custom-table .fixed-shadow-mask.left{border-right:2px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));left:1px}.custom-table .fixed-shadow-mask.right{border-left:2px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));right:1px}.custom-table.has-y-scroll .fixed-shadow-mask.right{right:0}.custom-table tr .first .icon-tip-warning{display:none}.custom-table tr.verify-error .first .icon-tip-warning,.custom-table tr.field-error .first .icon-tip-warning{color:var(--bsy-base-error-color,#ff5631);font-size:16px;display:flex}.custom-table tr.verify-error .first .bsy-checkbox-wrapper,.custom-table tr.field-error .first .bsy-checkbox-wrapper{display:none}.custom-table tr.verify-error td,.custom-table tr.field-error .custom-table-cell{background:var(--bsy-base-error-hover-bgcolor,#fff5f3)}.custom-table td.error-info{outline:2px solid var(--bsy-base-error-color,#ff5631);outline-offset:-2px}.custom-table td.error-info .content-edit{border-color:#0000}.custom-table .updating{background:#00ff0014}.custom-table tr.updating .custom-table-cell,.custom-table tr.updating td{--bsy-table-color-bg-container:#00ff0014;background:#00ff0014}.custom-table tr.updating .first .BsyCheckBox,.custom-table tr.updating .first .bsy-checkbox-wrapper{pointer-events:none;display:none}.custom-table tr.updating .first .BsySLoading{display:flex}.custom-table .table-row-hover td,.custom-table .table-row-hover .custom-table-cell{background:var(--bsy-table-color-bg-row-hover,#f4f6fc);cursor:default}._root_1p401_1{border:1px solid var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));border-radius:4px;flex-direction:column;height:100%;display:flex;position:relative;overflow:hidden}._body_1p401_11{flex:1;min-height:0;display:flex;position:relative;overflow:hidden}._chartSlot_1p401_19{flex:1;min-width:0;overflow:hidden}._resizeIndicator_1p401_25{cursor:col-resize;z-index:20;width:10px;height:100%;position:absolute;top:0;transform:translate(-50%)}._resizeIndicatorBar_1p401_35{background-color:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));pointer-events:none;width:3px;height:100%;margin-left:-1.5px;position:absolute;top:0;left:50%}._root_1rdh6_1{background-color:var(--bsy-gantt-color-bg-container,#fff);flex-direction:column;flex-shrink:0;height:100%;display:flex;position:relative;overflow:hidden}._root_1rdh6_1 .custom-table{height:100%}._root_1rdh6_1 .custom-table-wrapper{scrollbar-width:none;height:100%;border:none!important}._root_1rdh6_1 .custom-table-wrapper::-webkit-scrollbar{display:none}._root_1rdh6_1 .custom-table>.os-scrollbar-horizontal{z-index:13}._emptyOverlay_1rdh6_25{pointer-events:none;z-index:1;justify-content:center;align-items:center;display:flex;position:absolute;bottom:0;left:0;right:0}._emptyOverlayInner_1rdh6_37{pointer-events:auto}@keyframes _scale-in_46spj_1{0%{opacity:.5;transform:scale(.8)}to{opacity:1;transform:scale(1)}}._bsy-inputTag_46spj_11{color:#121211;background-color:#fff;border:1px solid #e0e0e0;border-radius:4px;height:34px;padding:0 4px;font-size:14px;transition:all .3s cubic-bezier(.4,0,.2,1);display:flex}._bsy-inputTag__container_46spj_22{flex-grow:0;height:32px;overflow:hidden}._bsy-inputTag__inputContainer_46spj_27{flex-shrink:0;align-items:center;min-width:80px;max-width:80px;height:32px;margin-left:4px;font-size:14px;display:inline-flex}._bsy-inputTag__inputContainer--zeroMargin_46spj_37{margin:0}._bsy-inputTag__input_46spj_27{background-color:#0000;border:1px dashed #e0e0e0;border-radius:4px;outline:none;width:100%;height:23px;padding:0 6px}._bsy-radio_q02xg_1{cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;gap:10px;display:flex}._bsy-radio--disabled_q02xg_8{cursor:not-allowed}._bsy-radio--full-width_q02xg_11{width:100%}._bsy-radio__input_q02xg_14{cursor:pointer;box-sizing:border-box;background-color:#fff;border:1px solid #9da2b2;border-radius:50%;flex-shrink:0;width:16px;height:16px;transition:all .25s;position:relative}._bsy-radio__input_q02xg_14:after{content:"";background-color:#fff;border-radius:50%;width:6px;height:6px;transition:all .25s ease-out;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(0)}._bsy-radio__input--checked_q02xg_38{background-color:#0265ff;border-color:#0265ff}._bsy-radio__input--checked_q02xg_38:after{transform:translate(-50%,-50%)scale(1)}._bsy-radio__input--disabled_q02xg_45{cursor:not-allowed;background-color:#f5f5f5;border-color:#d9d9d9}._bsy-radio__input--disabled_q02xg_45:after{background-color:#f5f5f5}._bsy-radio__input--disabled_q02xg_45._bsy-radio__input--checked_q02xg_38{background-color:#00000040;border-color:#d9d9d9}._bsy-radio__input--disabled_q02xg_45._bsy-radio__input--checked_q02xg_38:after{background-color:#fff}._bsy-radio__label_q02xg_60{flex:1;font-size:14px;line-height:normal}._bsy-radio__label--left_q02xg_65{order:-1}._bsy-radio--disabled_q02xg_8 ._bsy-radio__label_q02xg_60{color:#00000040}._bsy-radio_q02xg_1:not(._bsy-radio--disabled_q02xg_8):hover ._bsy-radio__input_q02xg_14:not(._bsy-radio__input--disabled_q02xg_45){border-color:#0265ff}._bsy-radio-group_q02xg_75{display:inline-flex}._bsy-radio-group--none_q02xg_78{flex-direction:column}._bsy-radio-group--vertical_q02xg_81{flex-direction:column;gap:8px}._bsy-radio-group--horizontal_q02xg_85{flex-flow:wrap;gap:8px 16px}._bsy-tree-node__title_1of4m_1{flex:1;min-width:0}._bsy-tree-node__children_1of4m_5{min-width:0}._bsy-tree_x86u3_1{min-width:0;overflow-x:hidden}._bsy-input-tag__container_znvs6_1{flex-wrap:nowrap;gap:4px;display:flex;overflow:hidden}._bsy-input-tag__item_znvs6_7{color:#121111;background-color:#eee;border-radius:2px;flex-grow:0;flex-shrink:0;align-items:center;max-height:26px;padding:3px 6px;line-height:normal;display:inline-flex;overflow:hidden}._bsy-input-tag__item--disabled_znvs6_20{color:#adadad;background-color:#e7e7e7}._bsy-input-tag__item-icon_znvs6_24{flex-shrink:0;justify-content:center;align-self:center;align-items:center;width:12px;height:12px;margin-left:4px;display:inline-flex}._select_multiple_input__container_8pd2n_1{align-items:center;display:flex;overflow:hidden}._select_multiple_input__measurement_layer_8pd2n_6{opacity:0;pointer-events:none;z-index:-1;position:fixed;top:0;left:0}._select_multiple_input__close_btn_8pd2n_14{color:#666;cursor:pointer}._select_multiple_input__close_btn_8pd2n_14:hover{color:#0265ff}._select_multiple_input__close_btn--disabled_8pd2n_21{cursor:not-allowed}._select_multiple_input__tag_content_8pd2n_24{width:100%;display:inline-flex}.bsy-select-input-container{--border-color:#e0e0e0;--bg-color:#fff;--input-text-color:#121212;--input-placholder-color:#999;-webkit-user-select:none;user-select:none;border:1px solid var(--border-color);background:var(--bg-color);border-radius:4px;min-height:34px;max-height:34px;line-height:1.4;transition:border .25s}.bsy-select-input-container:not([class*=disabled]):hover,.bsy-select-input-container:not([class*=disabled])[class*=active]{cursor:pointer;border:1px solid #0265ff}.bsy-select-input-container[class*=disabled]{cursor:not-allowed;--bg-color:#f0f0f0;--border-color:transparent;--input-text-color:#c2c2c2;--input-placholder-color:#c2c2c2}.bsy-select-input-container-input{height:32px;display:flex}.bsy-select-input-container-input-prefix{padding:8px 6px 8px 10px}.bsy-select-input-container-input-prefix+div{padding-left:0}.bsy-select-input-container__input-value{flex:1;padding:7px 10px;line-height:normal;display:flex}.bsy-select-input-container__input-value[class*=multiple]{padding:3px}.bsy-select-input-container__input-value-text{text-overflow:ellipsis;white-space:nowrap;color:var(--input-text-color);overflow:hidden}.bsy-select-input-container__icon{justify-content:center;align-items:center;padding-right:10px;display:flex}.bsy-select-input-container__icon .icon{font-size:16px;transition:transform .25s}.bsy-select-input-container__icon .icon[class*=active]{transform:rotate(180deg)}.bsy-select-input-container__input-value-placeholder{color:var(--input-placholder-color);flex:1;padding:7px 10px;font-size:14px}.bsy-select-input-container[class*=ghost-style]{background:0 0!important;border-color:#0000!important}.bsy-select-mask{background-color:#0000;position:fixed;inset:0}.bsy-select-panel{color:#121211;background-color:#fff;border-radius:4px;padding:4px;font-size:14px;line-height:normal;box-shadow:0 6px 16px #0000000f}._bsy-tab_1oc43_1{cursor:pointer;-webkit-user-select:none;user-select:none;color:var(--text-color,#121111);flex-shrink:0;transition:color .2s,background-color .2s;display:inline-block}._bsy-tab_1oc43_1._badge-card_1oc43_9{background-color:#f0f0f0;border-radius:4px;margin-right:11px;padding:6px 7px 6px 16px;font-size:14px;transition:none;position:relative}._bsy-tab_1oc43_1._badge-card_1oc43_9._active_1oc43_18{color:#fff;background:var(--theme-color);font-weight:700}._bsy-tab_1oc43_1._badge-card_1oc43_9._active_1oc43_18:after{background:var(--theme-color)}._bsy-tab_1oc43_1._badge-card_1oc43_9:not(._active_1oc43_18):not(._disabled_1oc43_26):hover,._bsy-tab_1oc43_1._badge-card_1oc43_9:not(._active_1oc43_18):not(._disabled_1oc43_26):hover:after{background-color:#e0e0e0}._bsy-tab_1oc43_1._badge-card_1oc43_9:after{content:"";aspect-ratio:1;z-index:-1;background-color:#f0f0f0;border-radius:4px;position:absolute;top:0;bottom:0;right:0;transform:translate(calc(50% - 2px))rotate(45deg)scale(.707)}._bsy-tab_1oc43_1._line_1oc43_44{padding:8px 0 7px}._bsy-tab_1oc43_1._line_1oc43_44:not(._disabled_1oc43_26):not(._active_1oc43_18):hover,._bsy-tab_1oc43_1._line_1oc43_44._active_1oc43_18{color:var(--theme-color)}._bsy-tab_1oc43_1._line_1oc43_44._active_1oc43_18{font-weight:700}._bsy-tab_1oc43_1._card_1oc43_53{color:#121211;background-color:#f0f0f0;padding:8px 16px;position:relative}._bsy-tab_1oc43_1._card_1oc43_53:not(._disabled_1oc43_26):not(._active_1oc43_18):hover{background-color:#e0e0e0}._bsy-tab_1oc43_1._card_1oc43_53._active_1oc43_18{color:var(--theme-color);background-color:#fff;font-weight:700}._bsy-tab_1oc43_1._card_1oc43_53._active_1oc43_18 span{z-index:1;position:relative}._bsy-tab_1oc43_1._card_1oc43_53._active_1oc43_18:after{content:"";background:linear-gradient(180deg, var(--theme-bg-color) 0%, #fff 100%);z-index:0;position:absolute;inset:0}._bsy-tab_1oc43_1._filled-card_1oc43_78{background-color:#f0f0f0;border-radius:4px 4px 0 0;padding:7px 16px}._bsy-tab_1oc43_1._filled-card_1oc43_78:not(._disabled_1oc43_26):not(._active_1oc43_18):hover{background-color:#e0e0e0}._bsy-tab_1oc43_1._filled-card_1oc43_78._active_1oc43_18{color:#fff;background:var(--theme-color);font-weight:700}._bsy-tabs-select__trigger_5a1wn_1{cursor:pointer;border:1px solid #e0e0e0;border-radius:4px;align-items:center;gap:10px;padding:10px;transition:border-color .3s;display:flex}._bsy-tabs-select__trigger_5a1wn_1:hover,._bsy-tabs-select__trigger_5a1wn_1._active_5a1wn_11{border-color:#0265ff}._bsy-tabs-select__trigger_5a1wn_1:hover ._bsy-tabs-select__trigger-icon_5a1wn_14,._bsy-tabs-select__trigger_5a1wn_1._active_5a1wn_11 ._bsy-tabs-select__trigger-icon_5a1wn_14{color:#0265ff}._bsy-tabs-select__trigger-input_5a1wn_17{flex:1;overflow:hidden}._bsy-tabs-select__panel_5a1wn_21{color:#121211;background-color:#fff;border-radius:4px;flex-direction:column;padding:10px;font-size:14px;line-height:normal;display:flex;box-shadow:0 6px 16px #0000000f}._bsy-tabs-select__panel-item_5a1wn_32{cursor:pointer;border-radius:4px;padding:13px 10px}._bsy-tabs-select__panel-item_5a1wn_32._active_5a1wn_11,._bsy-tabs-select__panel-item_5a1wn_32:hover{background-color:#f0f6ff}._bsy-tabs-select__trigger-icon_5a1wn_14{justify-content:center;align-items:center;display:flex}._bsy-tabs-select__trigger-icon_5a1wn_14 ._icon_5a1wn_45{transition:transform .25s}._bsy-tabs-select__trigger-icon_5a1wn_14 ._icon_5a1wn_45[class*=active]{transform:rotate(180deg)}*,:before,:after,::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border:0 solid #e5e7eb}:before,:after{--tw-content:""}html,:host{-webkit-text-size-adjust:100%;tab-size:4;font-feature-settings:normal;font-variation-settings:normal;-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}body{line-height:inherit;margin:0}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:normal;font-variation-settings:normal;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}button,input,optgroup,select,textarea{font-feature-settings:inherit;font-variation-settings:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:#0000;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{margin:0;padding:0;list-style:none}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.\!container{width:100%!important}.container{width:100%}@media (width>=640px){.\!container{max-width:640px!important}.container{max-width:640px}}@media (width>=768px){.\!container{max-width:768px!important}.container{max-width:768px}}@media (width>=1024px){.\!container{max-width:1024px!important}.container{max-width:1024px}}@media (width>=1280px){.\!container{max-width:1280px!important}.container{max-width:1280px}}@media (width>=1536px){.\!container{max-width:1536px!important}.container{max-width:1536px}}.\!visible{visibility:visible!important}.visible{visibility:visible}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.bottom-0{bottom:0}.bottom-\[-30px\]{bottom:-30px}.left-0{left:0}.left-\[80px\]{left:80px}.right-0{right:0}.top-0{top:0}.z-10{z-index:10}.ml-2{margin-left:.5rem}.ml-auto{margin-left:auto}.mt-\[40px\]{margin-top:40px}.mt-\[6px\]{margin-top:6px}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.\!grid{display:grid!important}.grid{display:grid}.hidden{display:none}.h-0\.5{height:.125rem}.h-4{height:1rem}.h-\[26px\]{height:26px}.h-full{height:100%}.max-h-\[36px\]{max-height:36px}.min-h-\[100px\]{min-height:100px}.min-h-\[34px\]{min-height:34px}.w-4{width:1rem}.w-8{width:2rem}.w-\[80px\]{width:80px}.w-full{width:100%}.flex-1{flex:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;user-select:none}.resize{resize:both}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-\[10px\]{gap:10px}.gap-\[15px\]{gap:15px}.gap-\[8px\]{gap:8px}.gap-x-\[10px\]{column-gap:10px}.gap-x-\[20px\]{column-gap:20px}.gap-x-\[26px\]{column-gap:26px}.gap-x-\[6px\]{column-gap:6px}.gap-y-\[10px\]{row-gap:10px}.overflow-hidden{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.rounded-\[2px\]{border-radius:2px}.rounded-\[4px\]{border-radius:4px}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-t-\[1px\]{border-top-width:1px}.border-solid{border-style:solid}.border-none{border-style:none}.border-\[\#e0e0e0\]{--tw-border-opacity:1;border-color:rgb(224 224 224/var(--tw-border-opacity,1))}.bg-\[\#0265ff\]{--tw-bg-opacity:1;background-color:rgb(2 101 255/var(--tw-bg-opacity,1))}.bg-\[\#eee\]{--tw-bg-opacity:1;background-color:rgb(238 238 238/var(--tw-bg-opacity,1))}.bg-\[\#f0f0f0\]{--tw-bg-opacity:1;background-color:rgb(240 240 240/var(--tw-bg-opacity,1))}.bg-\[\#f0f6ff\]{--tw-bg-opacity:1;background-color:rgb(240 246 255/var(--tw-bg-opacity,1))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.px-3{padding-left:.75rem;padding-right:.75rem}.px-\[10px\]{padding-left:10px;padding-right:10px}.px-\[20px\]{padding-left:20px;padding-right:20px}.px-\[6px\]{padding-left:6px;padding-right:6px}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-\[14px\]{padding-top:14px;padding-bottom:14px}.py-\[3px\]{padding-top:3px;padding-bottom:3px}.py-\[7px\]{padding-top:7px;padding-bottom:7px}.pb-\[2px\]{padding-bottom:2px}.pb-\[60px\]{padding-bottom:60px}.pl-8{padding-left:2rem}.pr-8{padding-right:2rem}.pt-\[40px\]{padding-top:40px}.pt-\[4px\]{padding-top:4px}.text-center{text-align:center}.text-sm{font-size:.875rem;line-height:1.25rem}.font-bold{font-weight:700}.italic{font-style:italic}.ordinal{--tw-ordinal:ordinal;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.text-\[\#0265ff\]{--tw-text-opacity:1;color:rgb(2 101 255/var(--tw-text-opacity,1))}.text-\[\#4d609f\]{--tw-text-opacity:1;color:rgb(77 96 159/var(--tw-text-opacity,1))}.text-\[\#666\]{--tw-text-opacity:1;color:rgb(102 102 102/var(--tw-text-opacity,1))}.text-\[\#73819c\]{--tw-text-opacity:1;color:rgb(115 129 156/var(--tw-text-opacity,1))}.text-\[\#999\]{--tw-text-opacity:1;color:rgb(153 153 153/var(--tw-text-opacity,1))}.text-\[\#c2c2c2\]{--tw-text-opacity:1;color:rgb(194 194 194/var(--tw-text-opacity,1))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity,1))}.text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.underline{text-decoration-line:underline}.opacity-60{opacity:.6}.outline-none{outline-offset:2px;outline:2px solid #0000}.blur{--tw-blur:blur(8px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter,backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-all{transition-property:all;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-property:transform;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-300{transition-duration:.3s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.placeholder\:text-\[\#999\]::placeholder{--tw-text-opacity:1;color:rgb(153 153 153/var(--tw-text-opacity,1))}.hover\:bg-\[\#e0e0e0\]:hover{--tw-bg-opacity:1;background-color:rgb(224 224 224/var(--tw-bg-opacity,1))}.hover\:bg-\[\#eff0f6\]:hover{--tw-bg-opacity:1;background-color:rgb(239 240 246/var(--tw-bg-opacity,1))}.hover\:text-\[\#0265ff\]:hover{--tw-text-opacity:1;color:rgb(2 101 255/var(--tw-text-opacity,1))}.hover\:text-gray-200:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity,1))}._date-picker-panel_1lgwq_2{flex:0 0 var(--bsy-date-picker-size-panel-body-height);width:var(--bsy-date-picker-size-panel-width);height:var(--bsy-date-picker-size-panel-body-height);box-sizing:border-box;padding:16px}._date-picker-panel_1lgwq_2 .bsy-date-picker-panel{width:var(--bsy-date-picker-size-panel-inner-width);height:var(--bsy-date-picker-size-year-picker-height);background:var(--bsy-date-picker-color-surface);border:0;outline:none}._date-picker-panel_1lgwq_2 .bsy-date-picker-date-panel,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel,._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel,._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel{width:var(--bsy-date-picker-size-panel-inner-width);height:var(--bsy-date-picker-size-year-picker-height)}._date-picker-panel_1lgwq_2 .bsy-date-picker-header{height:20px;color:var(--bsy-date-picker-color-header);justify-content:space-between;align-items:center;padding:0;font-size:14px;font-weight:400;line-height:20px;display:flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-header button{appearance:none;width:auto;height:20px;color:inherit;cursor:pointer;font:inherit;background:0 0;border:0;border-radius:4px;justify-content:center;align-items:center;padding:0;line-height:20px;display:inline-flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-header-view{white-space:nowrap;flex-wrap:nowrap;flex:none;order:1;justify-content:flex-start;align-items:center;gap:6px;width:max-content;min-width:max-content;height:20px;font-weight:400;line-height:20px;display:inline-flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-prev-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-next-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-prev-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-next-btn{width:20px;color:var(--bsy-date-picker-color-arrow);flex:none;font-size:16px;transition:color .2s,background .2s}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-prev-btn:hover,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-next-btn:hover,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-prev-btn:hover,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-next-btn:hover{color:var(--bsy-date-picker-color-header-hover);background:var(--bsy-date-picker-color-week-row-bg)}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-prev-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-prev-btn{order:2;margin-left:auto}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-next-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-next-btn{order:3;margin-left:12px}._date-picker-panel_1lgwq_2 .bsy-date-picker-header-view .bsy-date-picker-year-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header-view .bsy-date-picker-decade-btn{width:auto;min-width:max-content;height:20px;color:var(--bsy-date-picker-color-header);white-space:nowrap;word-break:keep-all;flex:none;padding:0;font-size:14px;line-height:20px;transition:color .2s}._date-picker-panel_1lgwq_2 .bsy-date-picker-header-view .bsy-date-picker-year-btn:hover,._date-picker-panel_1lgwq_2 .bsy-date-picker-header-view .bsy-date-picker-decade-btn:hover{color:var(--bsy-date-picker-color-header-hover)}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-label{height:20px;color:var(--bsy-date-picker-color-header);white-space:nowrap;align-items:center;font-size:14px;line-height:20px;display:inline-flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-label:hover{color:var(--bsy-date-picker-color-header-hover)}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-month-label-arrow-btn{width:20px;height:20px;color:var(--bsy-date-picker-color-arrow);cursor:pointer;background:0 0;border:0;border-radius:4px;flex:0 0 20px;justify-content:center;align-items:center;padding:0;display:inline-flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-month-label-arrow-btn:hover{background:var(--bsy-date-picker-color-week-row-bg);color:var(--bsy-date-picker-color-header-hover)}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-label-arrow{color:inherit;justify-content:center;align-items:center;line-height:1;display:inline-flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-body{padding:0}._date-picker-panel_1lgwq_2 .bsy-date-picker-content{border-collapse:separate;table-layout:fixed;width:100%}._date-picker-panel_1lgwq_2 .bsy-date-picker-content th,._date-picker-panel_1lgwq_2 .bsy-date-picker-content td{box-sizing:border-box}._date-picker-panel_1lgwq_2 .bsy-date-picker-content th{width:var(--bsy-date-picker-size-cell);height:var(--bsy-date-picker-size-cell);color:var(--bsy-date-picker-color-text-secondary);font-size:12px;font-weight:400;line-height:var(--bsy-date-picker-size-cell);text-align:center;padding:0}._date-picker-panel_1lgwq_2 .bsy-date-picker-cell{width:var(--bsy-date-picker-size-cell);height:var(--bsy-date-picker-size-cell);color:var(--bsy-date-picker-color-cell-tertiary);text-align:center;cursor:pointer;padding:0}._date-picker-panel_1lgwq_2 .bsy-date-picker-cell-in-view{color:var(--bsy-date-picker-color-cell)}._date-picker-panel_1lgwq_2 .bsy-date-picker-cell-inner{z-index:1;width:var(--bsy-date-picker-size-cell);height:var(--bsy-date-picker-size-cell);box-sizing:border-box;color:inherit;border:1px solid #0000;border-radius:50%;justify-content:center;align-items:center;padding:0;font-size:12px;font-weight:400;line-height:16px;transition:background .2s,border-color .2s,color .2s;display:inline-flex;position:relative}._date-picker-panel_1lgwq_2 .bsy-date-picker-cell:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-primary-hover)}._date-picker-panel_1lgwq_2 .bsy-date-picker-cell-selected .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-cell-selected-bg);color:var(--bsy-date-picker-color-cell-selected)}._date-picker-panel_1lgwq_2 .bsy-date-picker-date-panel .bsy-date-picker-content,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content{width:var(--bsy-date-picker-size-panel-content-width);border-spacing:4px;margin:-4px 0 0 -4px}._date-picker-panel_1lgwq_2 .bsy-date-picker-date-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected) .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected) .bsy-date-picker-cell-inner{border-color:var(--bsy-date-picker-color-primary);background:0 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-date-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-primary-hover)}._date-picker-panel_1lgwq_2 .bsy-date-picker-date-panel .bsy-date-picker-cell-selected .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell-selected .bsy-date-picker-cell-inner{border-color:#0000}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:0 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content th:first-child,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content td:first-child{display:none}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content{width:var(--bsy-date-picker-size-panel-inner-width);border-spacing:0 4px;margin:-4px 0 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content th:not(:first-child),._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content td:not(:first-child),._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell{width:calc(var(--bsy-date-picker-size-panel-inner-width) / 7)}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:0 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:hover .bsy-date-picker-cell,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row:hover .bsy-date-picker-cell,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row-selected .bsy-date-picker-cell{background:var(--bsy-date-picker-color-week-row-bg)}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:has(.bsy-date-picker-cell-selected) .bsy-date-picker-cell{background:var(--bsy-date-picker-color-week-row-bg)}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:hover .bsy-date-picker-cell:nth-child(2),._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row:hover .bsy-date-picker-cell:nth-child(2),._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row-selected .bsy-date-picker-cell:nth-child(2){border-radius:var(--bsy-date-picker-border-radius-pill) 0 0 var(--bsy-date-picker-border-radius-pill)}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:has(.bsy-date-picker-cell-selected) .bsy-date-picker-cell:nth-child(2){border-radius:var(--bsy-date-picker-border-radius-pill) 0 0 var(--bsy-date-picker-border-radius-pill)}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:hover .bsy-date-picker-cell:last-child,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row:hover .bsy-date-picker-cell:last-child,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row-selected .bsy-date-picker-cell:last-child{border-radius:0 var(--bsy-date-picker-border-radius-pill) var(--bsy-date-picker-border-radius-pill) 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:has(.bsy-date-picker-cell-selected) .bsy-date-picker-cell:last-child{border-radius:0 var(--bsy-date-picker-border-radius-pill) var(--bsy-date-picker-border-radius-pill) 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row-selected .bsy-date-picker-cell-today .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-cell-selected-bg);color:var(--bsy-date-picker-color-cell-selected);border-color:#0000}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:has(.bsy-date-picker-cell-selected) .bsy-date-picker-cell-today .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-cell-selected-bg);color:var(--bsy-date-picker-color-cell-selected);border-color:#0000}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row-selected .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-cell-selected-bg);color:var(--bsy-date-picker-color-cell-selected);border-color:#0000}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-content,._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-content tbody{width:var(--bsy-date-picker-size-panel-inner-width);flex-direction:column;gap:41px;display:flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-content tr{width:var(--bsy-date-picker-size-panel-inner-width);justify-content:space-between;display:flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-content,._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-content tbody{width:var(--bsy-date-picker-size-panel-inner-width);height:var(--bsy-date-picker-size-year-picker-height);flex-direction:column;justify-content:space-between;display:flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-content tr{width:var(--bsy-date-picker-size-panel-inner-width);gap:16px;display:flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-cell,._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-cell{width:var(--bsy-date-picker-size-pill-width);height:var(--bsy-date-picker-size-cell);padding:0}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-cell-inner{width:var(--bsy-date-picker-size-pill-width);height:var(--bsy-date-picker-size-cell);border-radius:var(--bsy-date-picker-border-radius-pill);white-space:nowrap;word-break:keep-all;font-variant-numeric:tabular-nums;padding:0}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected) .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected) .bsy-date-picker-cell-inner{color:var(--bsy-date-picker-color-cell);background:0 0;border-color:#0000}._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-cell:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-cell:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-primary-hover)}._date-picker-panel_1lgwq_2>.bsy-date-picker-header{margin-bottom:8px}
|
|
1
|
+
._bsy-tooltip_bqmfs_1{font-size:14px}._bsy-tooltip__trigger_bqmfs_4{cursor:pointer;display:inline-block}._bsy-tooltip__content_bqmfs_8{--bsy-tooltip-z-index:9001;color:#fff;word-wrap:break-word;width:max-content;z-index:var(--bsy-tooltip-z-index);background-color:#525867;border-radius:4px;padding:6px 10px;font-size:14px}.bsy-calendar-event-card{border-left:3px solid var(--calendar-schedule-border,#1a73e8);cursor:pointer;box-sizing:border-box;color:var(--calendar-title-color,#121111);background-color:var(--calendar-schedule-bg,#e8f0fe);--offset:10px;border-radius:3px;padding:3px 8px;font-size:12px;transition:background-color .25s,border-left-color .25s;overflow:hidden}.bsy-calendar-event-card:hover{background-color:var(--calendar-schedule-hover,#d7e3fd)!important}.bsy-calendar-event-card--timed{position:absolute}.bsy-calendar-event-card--allday{border-radius:4px;flex-shrink:0;align-items:center;width:100%;height:22px;max-height:22px;padding:0 6px;display:flex}.bsy-calendar-event-card--allday.bsy-calendar-event-card--continues-left{border-left:none;border-top-left-radius:0;border-bottom-left-radius:0}.bsy-calendar-event-card--allday.bsy-calendar-event-card--continues-right{border-top-right-radius:0;border-bottom-right-radius:0}.bsy-calendar-event-card--week-grid{align-items:center;gap:4px;height:22px;max-height:22px;padding:2px 7px;display:flex}.bsy-calendar-event-card__arrow{color:var(--calendar-title-color,#121111);flex-shrink:0;font-size:10px;line-height:1}.bsy-calendar-event-card__arrow--left{margin-right:0}.bsy-calendar-event-card__arrow--right{margin-left:0}.bsy-calendar-event-card__title{text-overflow:ellipsis;white-space:nowrap;font-size:12px;overflow:hidden}.bsy-calendar-event-card--week-grid .bsy-calendar-event-card__title{flex:1}.bsy-calendar-event-card__time{text-overflow:ellipsis;white-space:nowrap;margin-top:6px;overflow:hidden}.bsy-calendar-event-card--hovered{background-color:var(--calendar-schedule-hover,#d7e3fd)!important}.bsy-calendar-allday-section{border-bottom:1px solid var(--calendar-border-color,#e0e0e0);background:0 0;min-height:32px;display:flex}.bsy-calendar-allday-section__label{width:60px;min-width:60px;color:var(--calendar-specifically-color,#999);box-sizing:border-box;flex-direction:column;justify-content:flex-start;align-items:center;padding:6px 0;font-size:12px;display:flex}.bsy-calendar-allday-section__label-text{line-height:1.4}.bsy-calendar-allday-section__label-timezone{color:var(--calendar-specifically-color,#999);font-size:10px;line-height:1.4}.bsy-calendar-allday-section__content{flex-direction:column;flex:1;padding:6px 4px;display:flex;overflow:hidden}.bsy-calendar-allday-section__events{max-height:var(--max-height);flex-direction:column;gap:4px;padding-right:10px;display:flex;overflow:hidden}.bsy-calendar-allday-section__events--scroll{overflow-y:auto}.bsy-calendar-allday-section__toggle-btn{cursor:pointer;color:var(--calendar-more-record-color,#666);background:0 0;border:none;border-radius:4px;justify-content:center;align-self:flex-start;align-items:center;gap:4px;margin-top:4px;display:flex}.bsy-calendar-allday-section__toggle-btn:hover{color:var(--calendar-highlight-color,#0265ff)}.bsy-calendar-allday-section__toggle-icon{font-size:16px}.bsy-calendar-allday-section__toggle-text{font-size:12px}.bsy-calendar-current-time{z-index:15;pointer-events:none;width:100%;position:absolute;left:0;right:0}.bsy-calendar-current-time__dot{pointer-events:auto;cursor:pointer;z-index:1;background:#ff5631;border-radius:50%;width:8px;height:8px;position:absolute;top:50%;left:-6px;transform:translateY(calc(1px - 50%))}.bsy-calendar-current-time__line{background:#ff5631;width:100%;height:2px;position:absolute;left:0;right:0}.bsy-calendar-time-axis{z-index:10;border-right:1px solid var(--calendar-border-color,#e0e0e0);background:0 0;width:60px;min-width:60px;position:sticky;left:0}.bsy-calendar-time-axis__label{box-sizing:border-box;justify-content:center;align-items:flex-start;display:flex}.bsy-calendar-time-axis__label span{color:var(--calendar-title-color,#121111);font-size:11px;line-height:1;transform:translateY(-50%)}.bsy-calendar-time-axis__label:first-child span{visibility:hidden}.bsy-calendar-time-grid{position:absolute;inset:0}.bsy-calendar-time-grid__row{border-bottom:1px solid var(--calendar-border-color,#e0e0e0);box-sizing:border-box}.bsy-calendar-time-grid__row:last-child{border-bottom:none}.bsy-calendar-time-grid__row-action{z-index:1;padding-top:2px;position:absolute;right:4px}.bsy-calendar-time-grid__row-action-btn{cursor:pointer;opacity:0;pointer-events:none;background:0 0;border:0;border-radius:2px;justify-content:center;align-items:center;width:20px;height:20px;padding:0;transition:opacity .18s;display:flex}.bsy-calendar-time-grid__row-action-btn--visible,.bsy-calendar-time-grid__row-action-btn:focus-visible{opacity:1;pointer-events:auto}.bsy-calendar-time-grid__row-action-btn:hover,.bsy-calendar-time-grid__row-action-btn:focus-visible{background-color:var(--calendar-header-background,#eff0f6)}.bsy-calendar-time-grid__row-action-icon{height:16px;color:var(--calendar-title-color,#121111);font-size:16px}._footer_h6lng_1{box-sizing:border-box;flex:0 0 50px;justify-content:center;align-items:center;height:50px;padding:10px 16px;display:flex}._today_h6lng_11{appearance:none;color:var(--bsy-date-picker-color-primary);cursor:pointer;background:0 0;border:none;border-radius:4px;width:48px;height:30px;padding:5px 10px;font-size:14px;line-height:20px}._today_h6lng_11:hover{background:var(--bsy-date-picker-color-today-bg)}._bsy-date-picker_legiv_1{--bsy-date-picker-z-index:1100;--bsy-date-picker-color-primary:#0265ff;--bsy-date-picker-color-primary-hover:#0265ff4d;--bsy-date-picker-color-text-primary:#121111;--bsy-date-picker-color-text-figma:#121111;--bsy-date-picker-color-header:var(--bsy-date-picker-color-text-figma);--bsy-date-picker-color-header-hover:var(--bsy-date-picker-color-primary);--bsy-date-picker-color-text-secondary:#999;--bsy-date-picker-color-cell:var(--bsy-date-picker-color-text-figma);--bsy-date-picker-color-cell-tertiary:var(--bsy-date-picker-color-text-secondary);--bsy-date-picker-color-cell-selected-bg:var(--bsy-date-picker-color-primary);--bsy-date-picker-color-cell-selected:#fff;--bsy-date-picker-color-arrow:#666;--bsy-date-picker-color-divider:#e0e0e0;--bsy-date-picker-color-week-row-bg:#eff0f6;--bsy-date-picker-color-today-bg:#f0f6ff;--bsy-date-picker-color-surface:#fff;--bsy-date-picker-size-cell:32px;--bsy-date-picker-size-pill-width:50px;--bsy-date-picker-size-panel-width:280px;--bsy-date-picker-size-panel-height:363px;--bsy-date-picker-size-panel-body-height:312px;--bsy-date-picker-size-panel-inner-width:248px;--bsy-date-picker-size-panel-inner-height:280px;--bsy-date-picker-size-panel-content-width:256px;--bsy-date-picker-size-year-picker-height:252px;--bsy-date-picker-border-radius:10px;--bsy-date-picker-border-radius-pill:100px;--bsy-date-picker-shadow:0px 6px 16px 0px #0000000f;z-index:var(--bsy-date-picker-z-index)}._bsy-date-picker__content_legiv_33{width:var(--bsy-date-picker-size-panel-width);height:var(--bsy-date-picker-size-panel-height);background:var(--bsy-date-picker-color-surface);border-radius:var(--bsy-date-picker-border-radius);box-shadow:var(--bsy-date-picker-shadow);flex-direction:column;display:flex;overflow:hidden}._bsy-date-picker__divider_legiv_43{background:var(--bsy-date-picker-color-divider);flex:0 0 1px;height:1px;margin:0}._bsy-date-picker__panel-loading_legiv_49{flex:0 0 var(--bsy-date-picker-size-panel-body-height)}._bsy-segmented_1yc4d_1{background-color:var(--bsy-segmented-background,#f3f3f3);border-radius:4px;align-items:center;gap:2px;height:34px;padding:2px;display:inline-flex;position:relative}._bsy-segmented--block_1yc4d_12{width:100%;display:grid}._bsy-segmented__item_1yc4d_17{cursor:pointer;white-space:nowrap;border:1px solid #0000;border-radius:4px;justify-content:center;align-items:center;height:30px;padding:7px 10px;font-size:14px;transition:color .3s ease-in-out;display:flex;position:relative}._bsy-segmented__item--disabled_1yc4d_31{cursor:not-allowed;color:#00000040!important}._bsy-segmented__item--block_1yc4d_36{text-overflow:ellipsis;min-width:0;padding-left:0;padding-right:0;overflow:hidden}._bsy-segmented__item--active_1yc4d_44{color:var(--bsy-segmented-active-color,#0265ff)}._bsy-segmented__item--inactive_1yc4d_48{color:var(--bsy-segmented-color,#121211)}._bsy-segmented__item--inactive_1yc4d_48:not(._bsy-segmented__item--disabled_1yc4d_31):hover{background-color:var(--bsy-segmented-hover-background,#fff);border-color:var(--bsy-segmented-hover-border,#e0e0e0)}._bsy-segmented__slider_1yc4d_56{border:1px solid var(--bsy-segmented-slider-border,#e0e0e0);background-color:var(--bsy-segmented-slider-background,#fff);border-radius:4px;height:30px;position:absolute;top:2px}.bsy-calendar-today-btn{color:var(--calendar-title-color,#121111);cursor:pointer;background:0 0;border-radius:4px;padding:5px 12px;font-size:14px;transition:all .2s}.bsy-calendar-today-btn:hover{background-color:var(--calendar-header-background,#eff0f6)}.bsy-calendar-nav-btn{width:30px;height:30px;color:var(--calendar-title-color,#121111);cursor:pointer;background:0 0;border-radius:4px;justify-content:center;align-items:center;font-size:16px;transition:all .2s;display:flex}.bsy-calendar-nav-btn:hover{background:var(--calendar-header-background,#eff0f6)}.bsy-calendar-date-display{color:var(--calendar-title-color,#121111);cursor:pointer;border-radius:4px;align-items:center;gap:6px;padding:4px 8px;font-size:14px;font-weight:600;display:flex}.bsy-calendar-date-display:hover{background:var(--calendar-header-background,#eff0f6)}.bsy-calendar-date-display .bsy-calendar-date-arrow{color:var(--calendar-title-color,#121111);font-size:16px;transition:transform .2s ease-in-out;transform:rotate(0)}.bsy-calendar-date-display--active .bsy-calendar-date-arrow{transform:rotate(-180deg)}.bsy-calendar-date-display--active{background:var(--calendar-header-background,#eff0f6)}.bsy-calendar-date-display--disabled{cursor:default}.bsy-calendar-date-display--disabled:hover{background:0 0}.bsy-calendar-header-left{align-items:center;gap:6px;display:flex}.bsy-calendar-header{justify-content:space-between;align-items:center;padding:2px 10px;display:flex}.bsy-calendar-header__left,.bsy-calendar-header__right{align-items:center;display:flex}.bsy-calendar-day{flex-direction:column;flex:1;height:100%;min-height:0;display:flex;overflow:hidden}.bsy-calendar-day__scroll-container{flex:1;min-height:0;overflow:hidden auto}.bsy-calendar-day__content{min-width:100%;display:flex;position:relative}.bsy-calendar-day__main{flex:1;min-width:0;position:relative}.bsy-calendar-day__events{pointer-events:none;position:absolute;inset:0 4px}.bsy-calendar-day__events .bsy-calendar-event-card{pointer-events:auto}.bsy-week-allday-section{flex-direction:column;padding:6px 0 4px 2px;display:flex}.bsy-week-allday-section__main{display:flex}.bsy-week-allday-section__events-container{flex:1;overflow:hidden}.bsy-week-allday-section__events-container--scroll{overflow-y:auto}.bsy-week-allday-section__grid{grid-template-columns:repeat(7,1fr);gap:4px;padding:0 10px 0 0;display:grid}.bsy-week-allday-section__toggle-bar{grid-template-columns:repeat(7,1fr);margin-top:4px;padding-right:10px;display:grid}.bsy-week-allday-section__toggle-cell{min-width:0}.bsy-week-allday-section__toggle-btn{cursor:pointer;color:var(--calendar-more-record-color,#666);white-space:nowrap;background:0 0;border:none;border-radius:4px;justify-content:center;align-items:center;gap:4px;padding:2px 0;font-size:12px;display:flex}.bsy-week-allday-section__toggle-btn:hover{color:var(--calendar-highlight-color,#0265ff)}.bsy-week-allday-section__toggle-icon{font-size:14px}.bsy-week-allday-section__toggle-text{font-size:12px}.bsy-week-header{grid-template-columns:repeat(7,1fr);min-height:56px;display:grid}.bsy-week-header__day{color:var(--calendar-title-color,#121111);flex-direction:column;gap:6px;padding:7px 0 0;font-size:14px;display:flex}.bsy-week-header__day--today{color:var(--calendar-highlight-color,#0265ff)}.bsy-week-header__day--past{color:var(--calendar-over-title-color,#666)}.bsy-week-header__day-name,.bsy-week-header__day-number{line-height:normal}.bsy-week-header__day-number{font-weight:700}.bsy-calendar-week{flex-direction:column;flex:1;height:100%;min-height:0;display:flex;overflow:hidden}.bsy-calendar-week__header-section{border-bottom:1px solid var(--calendar-border-color,#e0e0e0);background:0 0;flex-shrink:0;display:flex}.bsy-calendar-week__timezone-label{width:60px;min-width:60px;color:var(--calendar-specifically-color,#999);flex-direction:column;align-items:center;padding-top:26px;padding-bottom:10px;font-size:12px;display:flex}.bsy-calendar-week__collapse-btn{cursor:pointer;color:var(--calendar-more-record-color,#666);background:0 0;border:none;border-radius:4px;justify-content:center;align-items:center;margin-top:auto;padding:4px;font-size:16px;display:flex}.bsy-calendar-week__collapse-btn:hover{color:var(--calendar-highlight-color,#0265ff);background-color:var(--calendar-header-background,#eff0f6)}.bsy-calendar-week__header-content{flex-direction:column;flex:1;display:flex}.bsy-calendar-week__scroll-container{flex:1;min-height:0;overflow:hidden auto}.bsy-calendar-week__body{display:flex;position:relative}.bsy-calendar-week__grid{flex:1;grid-template-columns:repeat(7,1fr);display:grid;position:relative}.bsy-calendar-week__day-column{border-right:1px solid var(--calendar-border-color,#e0e0e0);position:relative}.bsy-calendar-week__day-column:nth-child(7){border-right:none}.bsy-calendar-week__day-events{pointer-events:none;z-index:2;position:absolute;inset:2px 2px 0;overflow:hidden}.bsy-calendar-week__day-events .bsy-calendar-event-card{pointer-events:auto}.bsy-calendar-view-month-header{background-color:#0000;grid-template-columns:repeat(7,1fr);padding:0 10px;display:grid}.bsy-calendar-view-month-header__day{color:var(--calendar-title-color,#121111);padding:7px 0;font-size:14px}.bsy-calendar-view-month-header__day:not(:first-child){padding-left:10px}.bsy-calendar-view-month-cell{background-color:#0000;flex-direction:column;display:flex;position:relative;overflow:hidden}.bsy-calendar-view-month-cell:last-child{border-right:none}.bsy-calendar-view-month-cell:first-child .bsy-calendar-view-month-cell__header{padding-left:0}.bsy-calendar-view-month-cell--other-month{background-color:#0000}.bsy-calendar-view-month-cell--other-month .bsy-calendar-view-month-cell__date:not(.bsy-calendar-view-month-cell__date--today){color:var(--calendar-over-title-color,#666)}.bsy-calendar-view-month-cell__header{justify-content:space-between;align-items:center;min-height:34px;max-height:34px;padding-left:10px;display:flex}.bsy-calendar-view-month-cell__date{color:var(--calendar-title-color,#121111);justify-content:center;align-items:center;font-size:14px;font-weight:700;display:flex}.bsy-calendar-view-month-cell__date--today{text-align:center;background-color:var(--calendar-highlight-color,#0265ff);min-width:24px;color:var(--calendar-highlight-text-color,#fff);border-radius:12px;padding:0 4px;line-height:24px}.bsy-calendar-view-month-cell__more-btn{color:var(--calendar-title-color,#121111);cursor:pointer;margin-top:auto;margin-bottom:4px;padding:0 0 0 10px;font-size:12px}.bsy-calendar-view-month-cell__more-btn:hover{color:var(--calendar-highlight-color,#0265ff)}.bsy-calendar-view-month-cell__add-btn{cursor:pointer;opacity:0;background:0 0;border:0;border-radius:2px;justify-content:center;align-items:center;width:20px;height:20px;padding:0;transition:opacity .2s;display:flex}.bsy-calendar-view-month-cell:hover .bsy-calendar-view-month-cell__add-btn,.bsy-calendar-view-month-cell .bsy-calendar-view-month-cell__add-btn:focus-visible{opacity:1}.bsy-calendar-view-month-cell__add-btn:hover,.bsy-calendar-view-month-cell__add-btn:focus-visible{background-color:var(--calendar-header-background,#eff0f6)}.bsy-calendar-view-month-cell__add-btn-icon{height:16px;color:var(--calendar-title-color,#121111);font-size:16px}.bsy-calendar-view-month-cell-popover{flex-direction:column;width:220px;max-height:340px;display:flex}.bsy-calendar-view-month-cell-popover__header{justify-content:space-between;align-items:center;margin-bottom:16px;padding:0 10px;display:flex}.bsy-calendar-view-month-cell-popover__title{color:var(--calendar-title-color,#121111);font-size:16px;font-weight:700}.bsy-calendar-view-month-cell-popover__close{color:var(--calendar-title-color,#121111);cursor:pointer;background:0 0;border:0;padding:0;font-size:16px;line-height:1}.bsy-calendar-view-month-cell-popover__list{flex-direction:column;gap:4px;max-height:308px;padding:0 10px;display:flex;overflow-y:auto}.bsy-calendar-view-month-cell-popover__item{height:22px;position:relative}.bsy-calendar-view-week-event-layer{pointer-events:none;position:absolute;inset:0 10px;overflow:hidden}.bsy-calendar-view-week-event-layer .bsy-calendar-event-card{pointer-events:auto;position:absolute}.bsy-calendar-view-more-btn{pointer-events:auto;color:var(--calendar-more-record-color,#666);cursor:pointer;background:0 0;border:0;align-items:center;height:22px;padding:0 0 0 10px;font-family:inherit;font-size:12px;display:flex}.bsy-calendar-view-more-btn--first{padding-left:0}.bsy-calendar-view-more-btn:hover,.bsy-calendar-view-more-btn:focus-visible,.bsy-calendar-view-more-btn--active{color:var(--calendar-highlight-color,#0265ff)}.bsy-calendar-view-month{background-color:#0000;flex-direction:column;flex:1;height:100%;min-height:0;display:flex;overflow:hidden}.bsy-calendar-view-month__grid{border-top:1px solid var(--calendar-border-color,#e0e0e0);flex-direction:column;flex:1;min-height:0;display:flex;overflow-y:auto}.bsy-calendar-view-month__week{border-bottom:1px solid var(--calendar-border-color,#e0e0e0);flex:1;grid-template-columns:repeat(7,1fr);min-height:75px;padding:0 10px;display:grid;position:relative}.bsy-calendar-view-month__week:last-child,.bsy-calendar-view-month__week:last-child .bsy-calendar-view-month-cell{border-bottom:none}.bsy-calendar-view{height:100%;min-height:0;position:relative}.bsy-calendar-view__container{border:1px solid var(--calendar-border-color,#e0e0e0);background-color:var(--calendar-background-color,inherit);background-image:var(--calendar-background-image,none);background-position:var(--calendar-background-position,center center);background-size:var(--calendar-background-size,auto);background-repeat:var(--calendar-background-repeat,no-repeat);border-radius:4px;flex-direction:column;height:100%;min-height:0;display:flex;overflow:hidden}.bsy-calendar-view__body{flex-direction:column;flex:1;min-height:0;display:flex;overflow:hidden}._bsy-card_myftj_1{background:#fff;border-radius:10px;padding:10px 12px}._bsy-card__header_myftj_6{cursor:pointer;justify-content:space-between;align-items:center;line-height:normal;display:flex}._bsy-card__header_myftj_6:hover ._bsy-card__title_myftj_13{color:#0265ff}._bsy-card__title_myftj_13{color:#121211;-webkit-user-select:none;user-select:none;margin:0;font-size:14px;font-weight:700;transition:color .2s}._bsy-card__icon-container_myftj_24{cursor:pointer;color:#666;border-radius:4px;justify-content:center;align-items:center;width:20px;height:20px;transition:background-color .2s;display:flex}._bsy-card__icon-container_myftj_24:hover{color:#0265ff;background-color:#f0f6ff}._bsy-card__icon_myftj_24{font-size:16px;transition:transform .2s}._bsy-card__icon--expanded_myftj_43{transform:rotate(180deg)}._bsy-card__content_myftj_46{grid-template-rows:0fr;transition:grid-template-rows .3s cubic-bezier(.4,0,.2,1);display:grid;overflow:hidden}._bsy-card__content--expanded_myftj_52{grid-template-rows:1fr}._bsy-card__content--expanded_myftj_52 ._bsy-card__content-inner_myftj_55{padding-top:12px}._bsy-card__content-inner_myftj_55{transition:padding-top .3s cubic-bezier(.4,0,.2,1);overflow:hidden}._checkbox_vheru_1{border:1px solid;border-radius:2px;flex-shrink:0;justify-content:center;align-items:center;width:16px;height:16px;transition:all .2s;display:flex}._checkbox--checked_vheru_12{background-color:#0265ff;border-color:#0265ff}._checkbox--unchecked_vheru_16{background-color:#fff0;border-color:#9da2b2}._checkbox--unchecked_vheru_16:hover{border-color:#0265ff}._checkbox--indeterminate_vheru_23{background-color:#fff;border-color:#0265ff}._checkbox--disabled_vheru_27{background-color:#f5f5f5;border-color:#d9d9d9}._checkbox__inner_vheru_32{background-color:#0265ff;border-radius:1px;width:8px;height:8px}._checkbox__inner--disabled_vheru_38{background-color:#b8b8b8}._bsy-checkbox_1372g_1{cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;gap:.5rem;display:flex}._bsy-checkbox--full-width_1372g_8{width:100%}._bsy-checkbox__button_1372g_11{border:1px solid;border-radius:2px;flex-shrink:0;justify-content:center;align-items:center;width:1rem;height:1rem;transition:all .2s ease-in-out;display:flex}._bsy-checkbox__button--disabled_1372g_22{cursor:not-allowed;background-color:#f5f5f5;border-color:#d9d9d9}._bsy-checkbox__button--enabled_1372g_27{cursor:pointer}._bsy-checkbox__button--indeterminate_1372g_30{background-color:#fff;border-color:#0265ff}._bsy-checkbox__button--checked_1372g_34{background-color:#0265ff;border-color:#0265ff}._bsy-checkbox__button--unchecked_1372g_38{background-color:#0000;border-color:#9da2b2}._bsy-checkbox__button--unchecked_1372g_38:hover{border-color:#0265ff}._bsy-checkbox__button--left-label_1372g_45{order:2}._bsy-color-picker__floating_11t7y_1{z-index:10}._bsy-color-picker__content_11t7y_4{background-color:#fff;border-radius:8px;padding:16px;font-size:14px;box-shadow:0 25px 50px -12px #00000040}._bsy-color-picker__grid_11t7y_11{gap:16px;display:grid}._bsy-color-picker__preset-colors-title_11t7y_15{color:#91a1b7;margin-bottom:12px}._bsy-color-picker__preset-colors-grid_11t7y_19{grid-template-columns:repeat(6,1fr);gap:16px;display:grid}._bsy-color-picker__preset-colors-item_11t7y_24{aspect-ratio:1;cursor:pointer;z-index:1;border:1px solid #b5b5b533;border-radius:50%;justify-content:center;align-items:center;width:30px;display:flex;position:relative}._bsy-color-picker__preset-colors-item_11t7y_24:after{content:"";z-index:-1;border-radius:50%;transition:all .25s;position:absolute;inset:0}._bsy-color-picker__preset-colors-item_11t7y_24:hover:after{background:var(--hover-color);transform:scale(1.15)}._bsy-color-picker__custom-color-title_11t7y_48{color:#91a1b7;margin-bottom:12px}._bsy-color-picker__custom-color-btn_11t7y_52{cursor:pointer;color:#666;border:1px solid #e0e0e0;border-radius:50%;padding:6px;font-size:0;transition:all .25s;display:inline-block}._bsy-color-picker__custom-color-btn_11t7y_52:not(._preview_11t7y_62):hover,._bsy-color-picker__custom-color-btn_11t7y_52:not(._preview_11t7y_62)._bsy-color-picker__custom-color-btn--active_11t7y_62{color:#0265ff;border-color:#0265ff}._bsy-color-picker__custom-color-btn_11t7y_52._bsy-color-picker__custom-color-btn--preview_11t7y_66{border-color:#0000}._bsy-color-picker__custom-color-content_11t7y_69{gap:16px;display:flex}._bsy-color-picker__check-icon_11t7y_73{color:#fff;font-size:18px}.os-theme-bsy{box-sizing:border-box;--os-size:11px;--os-padding-perpendicular:2px;--os-padding-axis:2px;--os-track-border-radius:0;--os-track-bg:transparent;--os-track-bg-hover:transparent;--os-track-bg-active:transparent;--os-track-border:none;--os-track-border-hover:none;--os-track-border-active:none;--os-handle-border-radius:7px;--os-handle-bg:#c2c2c2;--os-handle-bg-hover:#b0b0b0;--os-handle-bg-active:#a8a8a8;--os-handle-border:none;--os-handle-border-hover:none;--os-handle-border-active:none;--os-handle-min-size:24px}._bsy-scrollbar_1mgws_1{width:100%;max-width:100%;min-height:0}.bsy-select-input-search-input{color:#121212;border:1px solid #e0e0e0;border-radius:4px;gap:8px;padding:6px 10px;font-size:14px;line-height:normal;display:flex}.bsy-select-input-search-input__container{flex:1}.bsy-select-input-search-input__icon{color:#666;font-size:16px}.bsy-select-input-search-input__icon:hover{color:#0265ff}.bsy-select-input-search-input input{border:none;outline:none;width:100%;min-height:20px;max-height:20px}.bsy-select-input-search-input input::placeholder{color:#999}._dropdown__trigger_1fafn_1{cursor:pointer}._dropdown__trigger--disabled_1fafn_4{cursor:not-allowed}._dropdown__panel_1fafn_7{background:var(--bsy-dropdown-color-bg,#fff);border-radius:4px;width:208px;min-width:120px;padding:4px 0;box-shadow:0 0 10px #00000014}._dropdown__search_1fafn_15{margin-bottom:4px;padding:0 4px}._dropdown__menu_1fafn_19{padding:0 4px}._dropdown__menu-item_1fafn_22{cursor:pointer;-webkit-user-select:none;user-select:none;color:var(--bsy-dropdown-color-text,#121211);border-radius:4px;align-items:center;gap:8px;padding:7px 10px;font-size:14px;transition:all .2s;display:flex}._dropdown__menu-item_1fafn_22:hover:not(._dropdown__menu-item--disabled_1fafn_34):not(._dropdown__menu-item--active_1fafn_34){background-color:var(--bsy-dropdown-item-hover-bg,#eff0f6)}._dropdown__menu-item--active_1fafn_34{background-color:var(--bsy-dropdown-item-active-bg,#f0f6ff);color:var(--bsy-dropdown-item-active-color,#0265ff)}._dropdown__menu-item--active_1fafn_34 ._dropdown__menu-item-icon_1fafn_41{color:var(--bsy-dropdown-item-active-color,#0265ff)}._dropdown__menu-item-icon_1fafn_41{color:var(--bsy-dropdown-color-icon,#6f829e);flex-shrink:0;justify-content:center;align-items:center;font-size:16px;display:flex}._dropdown__menu-item-icon_1fafn_41._system-field_1fafn_52{color:#4d609f}._dropdown__menu-item--disabled_1fafn_34{color:var(--bsy-dropdown-color-text-disabled,#999);cursor:not-allowed;background-color:#0000}._dropdown__menu-item--disabled_1fafn_34 ._dropdown__menu-item-icon_1fafn_41{color:var(--bsy-dropdown-color-text-disabled,#999)}._dropdown__menu-item-label_1fafn_63{flex:1;line-height:normal}._modal_1wkiy_1{transition:width .3s}._modal_1wkiy_1:focus{outline:none}._modal__title_1wkiy_7{border-bottom:1px solid #e0e0e0;justify-content:space-between;max-height:60px;padding:16px 20px;font-size:18px;font-weight:700;display:flex}._modal__title-text_1wkiy_16{font-size:18px;font-weight:700}._modal__actions_1wkiy_20,._modal__button_groups_1wkiy_24{gap:10px;display:flex}._modal__button_1wkiy_24{cursor:pointer;border-radius:4px;justify-content:center;align-items:center;width:26px;height:26px;transition:colors .2s;display:flex}._modal__button_1wkiy_24:hover{background-color:#eff0f6}._modal__button--fullscreen_1wkiy_41:hover{background-color:#fff}._modal__icon_1wkiy_44{color:#666;transition:color .2s}._modal__button_1wkiy_24:hover ._modal__icon_1wkiy_44{color:#121211}@keyframes bsy-modal-fade-down{0%{opacity:0;transform:translateY(-15%)}to{opacity:1;transform:translateZ(0)}}@keyframes bsy-modal-fade-up{0%{opacity:1;transform:translateZ(0)}to{opacity:0;transform:translateY(-15%)}}@keyframes bsy-modal-mask-fade-in{0%{opacity:0}to{opacity:1}}@keyframes bsy-modal-mask-fade-out{0%{opacity:1}to{opacity:0}}.bsy-modal-motion-enter,.bsy-modal-motion-appear{animation:.218s both bsy-modal-fade-down}.bsy-modal-motion-leave{animation:.218s both bsy-modal-fade-up}.bsy-modal-motion-leave .ant-modal-container{pointer-events:none}.bsy-modal-mask-motion-enter,.bsy-modal-mask-motion-appear{animation:.218s linear both bsy-modal-mask-fade-in}.bsy-modal-mask-motion-leave{animation:.218s linear both bsy-modal-mask-fade-out}._lexical-editor__toolbar-button_1y192_1{color:#666;border-radius:2px;padding:3px;display:inline-flex}._lexical-editor__toolbar-button-active_1y192_7,._lexical-editor__toolbar-button_1y192_1:hover{color:#121211;background-color:#e0e0e0}._picture-modal__container_qyj1h_1{display:flex}._picture-modal__sidebar_qyj1h_4{border-right:1px solid #e0e0e0;flex-basis:120px;position:relative}._picture-modal__menu-list_qyj1h_9{margin:0;padding:0;list-style:none}._picture-modal__menu-item_qyj1h_14{cursor:pointer;z-index:2;justify-content:space-between;align-items:center;padding:9px 20px;transition:color .3s;display:flex;position:relative}._picture-modal__slider_qyj1h_24{z-index:1;background-color:#f3f3f3;border-radius:4px;width:100%;height:40px;transition:transform .2s cubic-bezier(.4,0,.2,1);position:absolute;top:0;left:0}._picture-modal__content_qyj1h_35{flex:1;height:300px;padding:20px;position:relative}._picture-modal__content-wrapper_qyj1h_41{height:100%;overflow:hidden}._picture-modal__content-container_qyj1h_45{height:calc(100% * var(--menu-count,2))}._picture-modal__content-page_qyj1h_48{height:calc(100% / var(--menu-count,2))}._picture-modal__content-title_qyj1h_51{margin-bottom:10px;font-weight:700}._picture-modal__content-title_qyj1h_51:after{content:attr(data-title);color:#999;margin-left:10px;font-size:12px;font-weight:400}._picture-modal__upload-area_qyj1h_62{--upload-text-color:#999;text-align:center;cursor:pointer;border:1px dashed #e0e0e0;border-radius:4px;margin-top:10px;padding:7px;transition:border-color .2s}._picture-modal__upload-area_qyj1h_62:hover{--upload-text-color:#0269ff;color:#0269ff;border-color:#0269ff}._picture-modal__upload-area--dragging_qyj1h_77{--upload-text-color:#0269ff;color:#0269ff;background-color:#f0f8ff;border-color:#0269ff}._picture-modal__preview_qyj1h_83{border:1px solid #e0e0e0;border-radius:4px;align-items:center;gap:12px;margin-top:16px;padding:10px;display:flex}._picture-modal__preview-image_qyj1h_92{flex-shrink:0}._picture-modal__preview-image_qyj1h_92 img{object-fit:cover;border-radius:4px}._picture-modal__preview-info_qyj1h_99{flex:1;min-width:0}._picture-modal__preview-filename_qyj1h_103{word-break:break-all;margin-bottom:4px;font-size:14px;font-weight:500}._picture-modal__preview-size_qyj1h_109{color:#999;font-size:12px}._picture-modal__preview-delete_qyj1h_113{color:#666;cursor:pointer;align-self:center}._picture-modal__preview-delete_qyj1h_113:hover{color:#ff4d4f}._picture-modal__upload-text_qyj1h_121{color:var(--upload-text-color);margin-left:8px}._picture-modal__footer_qyj1h_125{border-top:1px solid #e0e0e0;justify-content:flex-end;gap:12px;padding:14px 20px;display:flex}._bsy-lexical__toolbar_n60av_1{background:#fafafa;border-bottom:1px solid #e0e0e0;align-items:center;padding:5px 6px;display:flex}._bsy-lexical__toolbar-group_n60av_9{align-items:center;gap:6px;display:flex}._bsy-lexical__toolbar-divider_n60av_15{background-color:#e0e0e0;width:1px;height:20px;margin:0 5px}._bsy-lexical-editor_19ssw_1{border:1px solid #e0e0e0;border-radius:4px;overflow:hidden}._bsy-lexical-editor__content-editable_19ssw_6{padding:6px 10px;overflow-y:auto}._bsy-lexical-editor__content-editable_19ssw_6:focus{outline:none}._imageWrapper_y06h3_1{border:1px solid #0000;border-radius:2px;transition:border-color .2s;display:inline-block;position:relative}._imageWrapper_y06h3_1._selected_y06h3_8{border-color:#0269ff;box-shadow:0 0 0 2px #0269ff80}._imageWrapper_y06h3_1._resizing_y06h3_12{-webkit-user-select:none;user-select:none}._imageWrapper_y06h3_1._resizing_y06h3_12 ._image_y06h3_1{pointer-events:none}._image_y06h3_1{cursor:pointer;max-width:100%;height:auto;transition:opacity .2s;display:block}._image_y06h3_1:hover{opacity:.9}._resizeHandle_y06h3_30{cursor:nw-resize;z-index:10;background:#0269ff;border:1px solid #fff;border-radius:50%;width:8px;height:8px;position:absolute}._resizeHandle_y06h3_30:hover{background:#40a9ff;transform:scale(1.2)}._resizeHandle_y06h3_30._topLeft_y06h3_44{cursor:nw-resize;top:-4px;left:-4px}._resizeHandle_y06h3_30._topRight_y06h3_49{cursor:ne-resize;top:-4px;right:-4px}._resizeHandle_y06h3_30._bottomLeft_y06h3_54{cursor:sw-resize;bottom:-4px;left:-4px}._resizeHandle_y06h3_30._bottomRight_y06h3_59{cursor:se-resize;bottom:-4px;right:-4px}._resizing_y06h3_12 *{-webkit-user-select:none!important;user-select:none!important}.editor-text-underline{text-decoration:underline}.editor-link{color:#0269ff;cursor:pointer}.editor-text-italic{font-style:italic}.editor-link:hover{text-decoration:underline}._modeTrigger_cbumr_1,._todayBtn_cbumr_1,._iconBtn_cbumr_1{cursor:pointer;border:1px solid #0000;border-radius:4px;transition:background-color .2s}._root_cbumr_8{align-items:center;gap:8px;height:100%;display:inline-flex}._modeTrigger_cbumr_1{box-sizing:border-box;height:30px;color:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));background:0 0;justify-content:center;align-items:center;gap:6px;padding:4px 6px;font-size:14px;font-weight:700;line-height:1;display:inline-flex}._modeTrigger_cbumr_1:hover ._modeTriggerArrow_cbumr_29,._modeTrigger_cbumr_1._isActive_cbumr_29 ._modeTriggerArrow_cbumr_29{color:var(--bsy-gantt-toolbar-icon-hover-color,var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff)))}._modeTrigger_cbumr_1._isActive_cbumr_29 ._modeTriggerArrow_cbumr_29{transform:rotate(180deg)}._modeTriggerLabel_cbumr_36{white-space:nowrap}._modeTriggerArrow_cbumr_29{color:var(--bsy-gantt-toolbar-icon-color,var(--bsy-gantt-color-text,#121111));justify-content:center;align-items:center;line-height:1;transition:transform .2s,color .2s;display:inline-flex}._todayBtn_cbumr_1{height:30px;color:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));background:0 0;padding:4px 12px;font-size:14px}._todayBtn_cbumr_1:hover{background-color:var(--bsy-gantt-toolbar-today-hover-bg,color-mix(in srgb, var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff)) 10%, transparent))}._divider_cbumr_60{background-color:var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));width:1px;height:16px;display:inline-block}._scrollBtns_cbumr_67{align-items:center;gap:4px;display:flex}._iconBtn_cbumr_1{width:30px;height:30px;color:var(--bsy-gantt-toolbar-icon-color,var(--bsy-gantt-color-text,#121111));background:0 0;justify-content:center;align-items:center;font-size:16px;display:flex}._iconBtn_cbumr_1:hover{color:var(--bsy-gantt-toolbar-icon-hover-color,var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff)))}._root_1ncav_1{background:var(--bsy-gantt-color-bg-container,#fff);border-left:1px solid var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));flex-direction:column;flex:1;min-width:0;height:100%;display:flex;overflow:hidden}._timelineHost_1ncav_12{flex:1;min-height:0;position:relative;overflow:hidden}._timelineContent_1ncav_19{background:var(--bsy-gantt-color-bg-container,#fff);width:100%;height:100%;position:relative;overflow:auto}._canvas_1ncav_27{min-height:100%;position:relative;overflow-x:clip}._weekendBg_1ncav_33{background:var(--bsy-gantt-color-bg-weekend,#fafafa);pointer-events:none;position:absolute;top:0}._colLine_1ncav_40{background:var(--bsy-gantt-color-split,var(--bsy-base-border-color,#e0e0e0));pointer-events:none;z-index:3;width:1px;position:absolute;top:0}._rowLine_1ncav_49{pointer-events:none;position:absolute;left:0;right:0}._rowHoverBg_1ncav_56{background:var(--bsy-gantt-color-bg-row-hover,#f4f6fc);pointer-events:none;z-index:1;position:absolute;left:0;right:0}._todayIndicator_1ncav_65{pointer-events:none;width:0;position:absolute;top:0;bottom:0}._todayIndicatorContentLine_1ncav_73{z-index:4}._todayIndicatorLine_1ncav_77{background:var(--bsy-gantt-color-today-line,color-mix(in srgb, var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff)) 20%, transparent));width:2px;position:absolute;top:0;bottom:0;left:-1px}._todayIndicatorHeaderDot_1ncav_86{z-index:3;background:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));pointer-events:none;border-radius:50%;width:6px;height:6px;position:absolute;bottom:0;transform:translate(-50%)}._calendar_1ncav_98{border-bottom:1px solid var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));height:68px;position:relative;overflow:hidden}._calendarTrack_1ncav_105{will-change:transform;height:100%;transform:translateX(calc(-1 * var(--gantt-scroll-left,0px)));position:relative}._calendarToolbar_1ncav_112{z-index:3;box-sizing:border-box;background-color:var(--bsy-gantt-toolbar-bg,var(--bsy-gantt-color-bg-container,#fff));border-radius:4px;align-items:center;height:32px;padding:0 8px 0 0;display:flex;position:absolute;top:0;right:0}._headerCell_1ncav_126{z-index:1;box-sizing:border-box;color:var(--bsy-gantt-color-text-secondary,#666);white-space:nowrap;text-overflow:ellipsis;align-items:center;padding:0 8px;line-height:1;display:flex;position:absolute;overflow:hidden}._headerCellTop_1ncav_140{border-bottom:1px solid var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));background:var(--bsy-gantt-color-bg-container,#fff);font-size:13px;top:0}._headerCellBottom_1ncav_147{justify-content:center;font-size:12px}._isActive_1ncav_152{color:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff))}._headerColLine_1ncav_156{background:var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));pointer-events:none;z-index:2;width:1px;position:absolute}._headerCellStickyText_1ncav_164{white-space:nowrap;will-change:transform;transform:translateX(max(0px, var(--gantt-scroll-left,0px) - var(--segment-left,0px)));align-items:center;display:inline-flex}._headerCellDatePrefix_1ncav_172{color:var(--bsy-gantt-color-text-secondary,#666);flex-shrink:0;display:inline-block}._offscreenRow_1ncav_178{z-index:7;pointer-events:none;position:absolute;left:0;right:0}._offscreenTrack_1ncav_186{align-items:center;height:100%;display:flex}._offscreenBtn_1ncav_192{width:24px;height:24px;color:var(--bsy-gantt-color-text-secondary,#666);background-color:var(--bsy-gantt-arrow-bg,#eff0f6);cursor:pointer;pointer-events:auto;border:none;border-radius:5px;justify-content:center;align-items:center;font-size:16px;transition:background-color .2s,color .2s;display:inline-flex}._offscreenBtn_1ncav_192:hover{background-color:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));color:#fff}._offscreenBtn_1ncav_192:focus-visible{outline:2px solid var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));outline-offset:2px}._offscreenBtnLeft_1ncav_216{position:sticky;left:4px}._offscreenBtnRight_1ncav_221{margin-left:auto;position:sticky;right:4px}._bar_1ncav_227{box-sizing:border-box;color:#fff;-webkit-user-select:none;user-select:none;z-index:5;background:#5170e833;border-radius:4px;outline:2px solid #0000;align-items:center;padding:0;transition:outline-color .25s,background-color .25s;display:flex;position:absolute;overflow:visible}._bar_1ncav_227:hover{outline-color:var(--bsy-gantt-bar-hover-border-color,transparent)}._bar_1ncav_227:hover ._barProgress_1ncav_245:after{opacity:1}._bar_1ncav_227:hover ._barResizeHandle_1ncav_248{opacity:1;pointer-events:auto}._bar_1ncav_227:active{cursor:move}._isReadonly_1ncav_258{opacity:.85}._isDragging_1ncav_262{opacity:.92;outline-color:var(--bsy-gantt-bar-hover-border-color,transparent);transform:none}._isDragging_1ncav_262 ._barProgress_1ncav_245:after,._isDragging_1ncav_262 ._barResizeHandle_1ncav_248{opacity:1}._isMicro_1ncav_274:hover,._isMicro_1ncav_274._isDragging_1ncav_262{--bsy-gantt-bar-actual-width:max(40px, calc(var(--bsy-gantt-bar-calc-width) + 12px));z-index:10}._barProgress_1ncav_245{background:var(--bsy-gantt-bar-fill-color,#5170e8);pointer-events:none;border-radius:4px 0 0 4px;position:absolute;top:0;bottom:0;left:0;overflow:hidden}._barProgress_1ncav_245:after{content:"";opacity:0;background:#0003;transition:opacity .18s;position:absolute;inset:0}._isFull_1ncav_299{border-radius:4px}._barLabel_1ncav_303{z-index:1;white-space:nowrap;text-overflow:ellipsis;padding:0 13px;font-size:12px;position:relative;overflow:hidden}._isHidden_1ncav_313{display:none}._isOutside_1ncav_317{max-width:none;color:var(--bsy-gantt-color-text,#121111);pointer-events:none;padding:0;position:absolute;top:50%;left:calc(100% + 4px);overflow:visible;transform:translateY(-50%)}._barResizeHandle_1ncav_248{opacity:0;pointer-events:none;cursor:ew-resize;z-index:2;background:0 0;border:none;height:100%;padding:0 8px;transition:opacity .18s;position:absolute;top:50%;transform:translateY(-50%)}._barResizeHandle_1ncav_248:before{content:"";background-color:#fff;width:5px;height:100%;display:block;-webkit-mask-position:50%;mask-position:50%;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat}._barResizeHandleLeft_1ncav_355{left:-4px}._barResizeHandleLeft_1ncav_355:before{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"5\" height=\"12\" viewBox=\"0 0 5 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1.5 2V10H0V2H1.5Z\" fill=\"white\"/><path d=\"M5 0V12H3.5V0H5Z\" fill=\"white\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"5\" height=\"12\" viewBox=\"0 0 5 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1.5 2V10H0V2H1.5Z\" fill=\"white\"/><path d=\"M5 0V12H3.5V0H5Z\" fill=\"white\"/></svg>")}._barResizeHandleRight_1ncav_363{right:-4px}._barResizeHandleRight_1ncav_363:before{-webkit-mask-image:url("data:image/svg+xml;utf8,<svg width=\"5\" height=\"12\" viewBox=\"0 0 5 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1.5 0V12H0V0H1.5Z\" fill=\"white\"/><path d=\"M5 2V10H3.5V2H5Z\" fill=\"white\"/></svg>");mask-image:url("data:image/svg+xml;utf8,<svg width=\"5\" height=\"12\" viewBox=\"0 0 5 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1.5 0V12H0V0H1.5Z\" fill=\"white\"/><path d=\"M5 2V10H3.5V2H5Z\" fill=\"white\"/></svg>")}._root_8s9va_1{cursor:pointer;z-index:5;flex-direction:column;gap:3px;display:flex;position:absolute}._root_8s9va_1:hover ._arrow_8s9va_9{display:inline-flex}._label_8s9va_13{align-items:center;gap:4px;height:17px;display:flex}._arrow_8s9va_9{color:var(--bsy-gantt-color-text-secondary,#666);flex-shrink:0;font-size:16px;transition:transform .2s;display:none}._isCollapsed_8s9va_28{transform:rotate(-90deg)}._labelText_8s9va_32{color:var(--bsy-gantt-color-text,#121111);white-space:nowrap;font-size:12px;line-height:1.4}._track_8s9va_39{background:#00000014;border-radius:100px;height:4px;position:relative}._progress_8s9va_46{pointer-events:none;background:#c2c2c2;border-radius:100px;height:100%;position:absolute;top:0;left:0}._summaryTooltip_8s9va_56{color:#fff;flex-direction:column;gap:4px;padding:10px;font-size:12px;line-height:normal;display:flex}._summaryTooltipLine_8s9va_66{white-space:nowrap;margin:0}.custom-table{--cell-padding:6px 8px;--row-height:34px;position:relative}.custom-table::-webkit-scrollbar{width:8px;height:8px}.custom-table::-webkit-scrollbar-track{background:#f1f1f1}.custom-table::-webkit-scrollbar-thumb{background:#c1c1c1;border-radius:4px}.custom-table::-webkit-scrollbar-thumb:hover{background:#a8a8a8}.custom-table table{border-collapse:separate;border-spacing:0;width:100%;margin:0;padding:0;display:table}.custom-table .custom-table-wrapper{outline:none;width:100%;font-size:13px;overflow:hidden}.custom-table .custom-table-wrapper.os-enabled{overflow:auto}.custom-table .custom-table-wrapper.resizing{-webkit-user-select:none;user-select:none}.custom-table .custom-table-wrapper.resizing .custom-table-header-cell{cursor:col-resize}.custom-table .custom-table-wrapper.bsy-row-height-high{--row-height:106px}.custom-table .custom-table-wrapper.bsy-row-height-middle{--row-height:68px}.custom-table .custom-table-wrapper.bsy-row-height-low{--row-height:34px}.custom-table .custom-table-wrapper.bsy-row-height-auto{--row-height:auto}.custom-table .custom-table-wrapper.bsy-row-height-auto .cell-content{white-space:normal;height:auto}.custom-table .custom-table-header-cell{background:var(--bsy-table-color-bg-header,#f5f7fa);color:var(--bsy-table-color-text-heading,#000);padding:var(--cell-padding);border-bottom:1px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));cursor:pointer;height:34px;font-weight:500;transition:background-color .2s;position:relative}.custom-table .custom-table-header-cell:after{content:"";background:var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));width:1px;position:absolute;inset:0 0 0 auto}.custom-table .custom-table-header-cell.first{border-top-left-radius:4px}.custom-table .custom-table-header-cell.last{border-top-right-radius:4px}.custom-table .custom-table-header-cell .resize-handle{cursor:col-resize;z-index:1;background:0 0;width:4px;transition:background-color .2s;position:absolute;inset-block:0;inset-inline-end:0}.custom-table .custom-table-header-cell .header-line-clamp-3{text-overflow:ellipsis;-webkit-line-clamp:3;line-clamp:3;-webkit-box-orient:vertical;min-width:0;display:-webkit-box;overflow:hidden}.custom-table .custom-table-header-cell.spacer-cell{background:#fafafa}.custom-table .header-cell-content{justify-content:space-between;align-items:center;display:flex}.custom-table .header-cell-title{flex:1}.custom-table .sort-indicator{align-items:center;block-size:14px;inline-size:14px;display:inline-flex}.custom-table .sort-icon{vertical-align:middle;block-size:0;inline-size:0;transition:transform .2s;display:inline-block}.custom-table .sort-icon.sort-icon-default{opacity:.3;border-inline:4px solid #0000}.custom-table .sort-icon.sort-icon-asc{border:solid #0000;border-width:0 4px 5px;border-bottom-color:#666}.custom-table .sort-icon.sort-icon-desc{border:4px solid #0000;border-top:5px solid #666;border-bottom-width:0}.custom-table .custom-table-body{position:relative}.custom-table .custom-table-row{border-bottom:1px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0))}.custom-table .custom-table-row:last-child{border-bottom:none}.custom-table .custom-table-row:hover .custom-table-cell{background:var(--bsy-table-color-bg-row-hover,#f4f6fc)}.custom-table .custom-table-cell{background:var(--bsy-table-color-bg-container,#fff);color:var(--bsy-table-color-text,#000);border-bottom:1px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));height:var(--row-height);transition:background-color .2s;position:relative}.custom-table .custom-table-cell:after{content:"";background:var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));width:1px;position:absolute;inset:0 0 0 auto}.custom-table .custom-table-cell.fixed{background:var(--bsy-table-color-bg-container,#fff)}.custom-table .custom-table-cell .cell-content{text-overflow:ellipsis;white-space:nowrap;height:calc(var(--row-height) - 3px);padding:var(--cell-padding);overflow:hidden}.custom-table .custom-table-cell .cell-content.left{text-align:left}.custom-table .custom-table-cell .cell-content.center{text-align:center}.custom-table .custom-table-cell .cell-content.right{text-align:right}.custom-table .custom-table-empty-row td{text-align:center;color:#666;padding:40px 16px;font-size:14px}.custom-table .custom-table-empty-overlay{pointer-events:none;z-index:3;place-items:center;display:grid;position:absolute;overflow:hidden}.custom-table .custom-table-empty-overlay-inner{pointer-events:auto}.custom-table .spacer-cell{border-right:none;border-bottom:1px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));background:0 0}.custom-table .custom-table-footer:before{content:"";inset-inline:0;background:var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));z-index:10;height:1px;position:absolute;top:-1px}.custom-table .custom-table-footer tr{border-top:1px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0))}.custom-table .custom-table-footer tfoot{background:var(--bsy-table-color-bg-container,#fff)}.custom-table .custom-table-footer tfoot .custom-table-footer-cell{color:#666;font-size:13px;position:relative}.custom-table .custom-table-footer tfoot .custom-table-footer-cell:after{content:"";background:var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));width:1px;position:absolute;inset:0 0 0 auto}.custom-table .custom-table-footer tfoot .custom-table-footer-cell .cell-content{padding:var(--cell-padding);height:32px}.custom-table .custom-table-footer tfoot .custom-table-footer-cell.fixed-left,.custom-table .custom-table-footer tfoot .custom-table-footer-cell.fixed-right{background:var(--bsy-table-color-bg-container,#fff)}.custom-table .custom-table-footer tfoot .custom-table-footer-cell:hover{background:var(--bsy-base-bgcolor-f3,#eff0f6)}.custom-table .custom-table-resize-handle{inset-block:0;z-index:21;background:var(--bsy-base-color,#0265ff);width:1px;display:none;position:absolute;left:-1px}.custom-table .fixed-shadow-mask{pointer-events:none;z-index:12;position:absolute;inset-block:0;overflow:hidden}.custom-table .fixed-shadow-mask.left{border-right:2px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));left:1px}.custom-table .fixed-shadow-mask.right{border-left:2px solid var(--bsy-table-color-border,var(--bsy-base-border-color,#e0e0e0));right:1px}.custom-table.has-y-scroll .fixed-shadow-mask.right{right:0}.custom-table tr .first .icon-tip-warning{display:none}.custom-table tr.verify-error .first .icon-tip-warning,.custom-table tr.field-error .first .icon-tip-warning{color:var(--bsy-base-error-color,#ff5631);font-size:16px;display:flex}.custom-table tr.verify-error .first .bsy-checkbox-wrapper,.custom-table tr.field-error .first .bsy-checkbox-wrapper{display:none}.custom-table tr.verify-error td,.custom-table tr.field-error .custom-table-cell{background:var(--bsy-base-error-hover-bgcolor,#fff5f3)}.custom-table td.error-info{outline:2px solid var(--bsy-base-error-color,#ff5631);outline-offset:-2px}.custom-table td.error-info .content-edit{border-color:#0000}.custom-table .updating{background:#00ff0014}.custom-table tr.updating .custom-table-cell,.custom-table tr.updating td{--bsy-table-color-bg-container:#00ff0014;background:#00ff0014}.custom-table tr.updating .first .BsyCheckBox,.custom-table tr.updating .first .bsy-checkbox-wrapper{pointer-events:none;display:none}.custom-table tr.updating .first .BsySLoading{display:flex}.custom-table .table-row-hover td,.custom-table .table-row-hover .custom-table-cell{background:var(--bsy-table-color-bg-row-hover,#f4f6fc);cursor:default}._root_1p401_1{border:1px solid var(--bsy-gantt-color-border,var(--bsy-base-border-color,#e0e0e0));border-radius:4px;flex-direction:column;height:100%;display:flex;position:relative;overflow:hidden}._body_1p401_11{flex:1;min-height:0;display:flex;position:relative;overflow:hidden}._chartSlot_1p401_19{flex:1;min-width:0;overflow:hidden}._resizeIndicator_1p401_25{cursor:col-resize;z-index:20;width:10px;height:100%;position:absolute;top:0;transform:translate(-50%)}._resizeIndicatorBar_1p401_35{background-color:var(--bsy-gantt-color-primary,var(--bsy-base-color,#0265ff));pointer-events:none;width:3px;height:100%;margin-left:-1.5px;position:absolute;top:0;left:50%}._root_1rdh6_1{background-color:var(--bsy-gantt-color-bg-container,#fff);flex-direction:column;flex-shrink:0;height:100%;display:flex;position:relative;overflow:hidden}._root_1rdh6_1 .custom-table{height:100%}._root_1rdh6_1 .custom-table-wrapper{scrollbar-width:none;height:100%;border:none!important}._root_1rdh6_1 .custom-table-wrapper::-webkit-scrollbar{display:none}._root_1rdh6_1 .custom-table>.os-scrollbar-horizontal{z-index:13}._emptyOverlay_1rdh6_25{pointer-events:none;z-index:1;justify-content:center;align-items:center;display:flex;position:absolute;bottom:0;left:0;right:0}._emptyOverlayInner_1rdh6_37{pointer-events:auto}@keyframes _scale-in_46spj_1{0%{opacity:.5;transform:scale(.8)}to{opacity:1;transform:scale(1)}}._bsy-inputTag_46spj_11{color:#121211;background-color:#fff;border:1px solid #e0e0e0;border-radius:4px;height:34px;padding:0 4px;font-size:14px;transition:all .3s cubic-bezier(.4,0,.2,1);display:flex}._bsy-inputTag__container_46spj_22{flex-grow:0;height:32px;overflow:hidden}._bsy-inputTag__inputContainer_46spj_27{flex-shrink:0;align-items:center;min-width:80px;max-width:80px;height:32px;margin-left:4px;font-size:14px;display:inline-flex}._bsy-inputTag__inputContainer--zeroMargin_46spj_37{margin:0}._bsy-inputTag__input_46spj_27{background-color:#0000;border:1px dashed #e0e0e0;border-radius:4px;outline:none;width:100%;height:23px;padding:0 6px}._bsy-radio_q02xg_1{cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;gap:10px;display:flex}._bsy-radio--disabled_q02xg_8{cursor:not-allowed}._bsy-radio--full-width_q02xg_11{width:100%}._bsy-radio__input_q02xg_14{cursor:pointer;box-sizing:border-box;background-color:#fff;border:1px solid #9da2b2;border-radius:50%;flex-shrink:0;width:16px;height:16px;transition:all .25s;position:relative}._bsy-radio__input_q02xg_14:after{content:"";background-color:#fff;border-radius:50%;width:6px;height:6px;transition:all .25s ease-out;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)scale(0)}._bsy-radio__input--checked_q02xg_38{background-color:#0265ff;border-color:#0265ff}._bsy-radio__input--checked_q02xg_38:after{transform:translate(-50%,-50%)scale(1)}._bsy-radio__input--disabled_q02xg_45{cursor:not-allowed;background-color:#f5f5f5;border-color:#d9d9d9}._bsy-radio__input--disabled_q02xg_45:after{background-color:#f5f5f5}._bsy-radio__input--disabled_q02xg_45._bsy-radio__input--checked_q02xg_38{background-color:#00000040;border-color:#d9d9d9}._bsy-radio__input--disabled_q02xg_45._bsy-radio__input--checked_q02xg_38:after{background-color:#fff}._bsy-radio__label_q02xg_60{flex:1;font-size:14px;line-height:normal}._bsy-radio__label--left_q02xg_65{order:-1}._bsy-radio--disabled_q02xg_8 ._bsy-radio__label_q02xg_60{color:#00000040}._bsy-radio_q02xg_1:not(._bsy-radio--disabled_q02xg_8):hover ._bsy-radio__input_q02xg_14:not(._bsy-radio__input--disabled_q02xg_45){border-color:#0265ff}._bsy-radio-group_q02xg_75{display:inline-flex}._bsy-radio-group--none_q02xg_78{flex-direction:column}._bsy-radio-group--vertical_q02xg_81{flex-direction:column;gap:8px}._bsy-radio-group--horizontal_q02xg_85{flex-flow:wrap;gap:8px 16px}._bsy-tree-node__title_1of4m_1{flex:1;min-width:0}._bsy-tree-node__children_1of4m_5{min-width:0}._bsy-tree_x86u3_1{min-width:0;overflow-x:hidden}._bsy-input-tag__container_znvs6_1{flex-wrap:nowrap;gap:4px;display:flex;overflow:hidden}._bsy-input-tag__item_znvs6_7{color:#121111;background-color:#eee;border-radius:2px;flex-grow:0;flex-shrink:0;align-items:center;max-height:26px;padding:3px 6px;line-height:normal;display:inline-flex;overflow:hidden}._bsy-input-tag__item--disabled_znvs6_20{color:#adadad;background-color:#e7e7e7}._bsy-input-tag__item-icon_znvs6_24{flex-shrink:0;justify-content:center;align-self:center;align-items:center;width:12px;height:12px;margin-left:4px;display:inline-flex}._select_multiple_input__container_8pd2n_1{align-items:center;display:flex;overflow:hidden}._select_multiple_input__measurement_layer_8pd2n_6{opacity:0;pointer-events:none;z-index:-1;position:fixed;top:0;left:0}._select_multiple_input__close_btn_8pd2n_14{color:#666;cursor:pointer}._select_multiple_input__close_btn_8pd2n_14:hover{color:#0265ff}._select_multiple_input__close_btn--disabled_8pd2n_21{cursor:not-allowed}._select_multiple_input__tag_content_8pd2n_24{width:100%;display:inline-flex}.bsy-select-input-container{--border-color:#e0e0e0;--bg-color:#fff;--input-text-color:#121212;--input-placholder-color:#999;-webkit-user-select:none;user-select:none;border:1px solid var(--border-color);background:var(--bg-color);border-radius:4px;min-height:34px;max-height:34px;line-height:1.4;transition:border .25s}.bsy-select-input-container:not([class*=disabled]):hover,.bsy-select-input-container:not([class*=disabled])[class*=active]{cursor:pointer;border:1px solid #0265ff}.bsy-select-input-container[class*=disabled]{cursor:not-allowed;--bg-color:#f0f0f0;--border-color:transparent;--input-text-color:#c2c2c2;--input-placholder-color:#c2c2c2}.bsy-select-input-container-input{height:32px;display:flex}.bsy-select-input-container-input-prefix{padding:8px 6px 8px 10px}.bsy-select-input-container-input-prefix+div{padding-left:0}.bsy-select-input-container__input-value{flex:1;padding:7px 10px;line-height:normal;display:flex}.bsy-select-input-container__input-value[class*=multiple]{padding:3px}.bsy-select-input-container__input-value-text{text-overflow:ellipsis;white-space:nowrap;color:var(--input-text-color);overflow:hidden}.bsy-select-input-container__icon{justify-content:center;align-items:center;padding-right:10px;display:flex}.bsy-select-input-container__icon .icon{font-size:16px;transition:transform .25s}.bsy-select-input-container__icon .icon[class*=active]{transform:rotate(180deg)}.bsy-select-input-container__input-value-placeholder{color:var(--input-placholder-color);flex:1;padding:7px 10px;font-size:14px}.bsy-select-input-container[class*=ghost-style]{background:0 0!important;border-color:#0000!important}.bsy-select-mask{background-color:#0000;position:fixed;inset:0}.bsy-select-panel{color:#121211;background-color:#fff;border-radius:4px;padding:4px;font-size:14px;line-height:normal;box-shadow:0 6px 16px #0000000f}._bsy-tab_1oc43_1{cursor:pointer;-webkit-user-select:none;user-select:none;color:var(--text-color,#121111);flex-shrink:0;transition:color .2s,background-color .2s;display:inline-block}._bsy-tab_1oc43_1._badge-card_1oc43_9{background-color:#f0f0f0;border-radius:4px;margin-right:11px;padding:6px 7px 6px 16px;font-size:14px;transition:none;position:relative}._bsy-tab_1oc43_1._badge-card_1oc43_9._active_1oc43_18{color:#fff;background:var(--theme-color);font-weight:700}._bsy-tab_1oc43_1._badge-card_1oc43_9._active_1oc43_18:after{background:var(--theme-color)}._bsy-tab_1oc43_1._badge-card_1oc43_9:not(._active_1oc43_18):not(._disabled_1oc43_26):hover,._bsy-tab_1oc43_1._badge-card_1oc43_9:not(._active_1oc43_18):not(._disabled_1oc43_26):hover:after{background-color:#e0e0e0}._bsy-tab_1oc43_1._badge-card_1oc43_9:after{content:"";aspect-ratio:1;z-index:-1;background-color:#f0f0f0;border-radius:4px;position:absolute;top:0;bottom:0;right:0;transform:translate(calc(50% - 2px))rotate(45deg)scale(.707)}._bsy-tab_1oc43_1._line_1oc43_44{padding:8px 0 7px}._bsy-tab_1oc43_1._line_1oc43_44:not(._disabled_1oc43_26):not(._active_1oc43_18):hover,._bsy-tab_1oc43_1._line_1oc43_44._active_1oc43_18{color:var(--theme-color)}._bsy-tab_1oc43_1._line_1oc43_44._active_1oc43_18{font-weight:700}._bsy-tab_1oc43_1._card_1oc43_53{color:#121211;background-color:#f0f0f0;padding:8px 16px;position:relative}._bsy-tab_1oc43_1._card_1oc43_53:not(._disabled_1oc43_26):not(._active_1oc43_18):hover{background-color:#e0e0e0}._bsy-tab_1oc43_1._card_1oc43_53._active_1oc43_18{color:var(--theme-color);background-color:#fff;font-weight:700}._bsy-tab_1oc43_1._card_1oc43_53._active_1oc43_18 span{z-index:1;position:relative}._bsy-tab_1oc43_1._card_1oc43_53._active_1oc43_18:after{content:"";background:linear-gradient(180deg, var(--theme-bg-color) 0%, #fff 100%);z-index:0;position:absolute;inset:0}._bsy-tab_1oc43_1._filled-card_1oc43_78{background-color:#f0f0f0;border-radius:4px 4px 0 0;padding:7px 16px}._bsy-tab_1oc43_1._filled-card_1oc43_78:not(._disabled_1oc43_26):not(._active_1oc43_18):hover{background-color:#e0e0e0}._bsy-tab_1oc43_1._filled-card_1oc43_78._active_1oc43_18{color:#fff;background:var(--theme-color);font-weight:700}._bsy-tabs-select__trigger_5a1wn_1{cursor:pointer;border:1px solid #e0e0e0;border-radius:4px;align-items:center;gap:10px;padding:10px;transition:border-color .3s;display:flex}._bsy-tabs-select__trigger_5a1wn_1:hover,._bsy-tabs-select__trigger_5a1wn_1._active_5a1wn_11{border-color:#0265ff}._bsy-tabs-select__trigger_5a1wn_1:hover ._bsy-tabs-select__trigger-icon_5a1wn_14,._bsy-tabs-select__trigger_5a1wn_1._active_5a1wn_11 ._bsy-tabs-select__trigger-icon_5a1wn_14{color:#0265ff}._bsy-tabs-select__trigger-input_5a1wn_17{flex:1;overflow:hidden}._bsy-tabs-select__panel_5a1wn_21{color:#121211;background-color:#fff;border-radius:4px;flex-direction:column;padding:10px;font-size:14px;line-height:normal;display:flex;box-shadow:0 6px 16px #0000000f}._bsy-tabs-select__panel-item_5a1wn_32{cursor:pointer;border-radius:4px;padding:13px 10px}._bsy-tabs-select__panel-item_5a1wn_32._active_5a1wn_11,._bsy-tabs-select__panel-item_5a1wn_32:hover{background-color:#f0f6ff}._bsy-tabs-select__trigger-icon_5a1wn_14{justify-content:center;align-items:center;display:flex}._bsy-tabs-select__trigger-icon_5a1wn_14 ._icon_5a1wn_45{transition:transform .25s}._bsy-tabs-select__trigger-icon_5a1wn_14 ._icon_5a1wn_45[class*=active]{transform:rotate(180deg)}*,:before,:after,::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*,:before,:after{box-sizing:border-box;border:0 solid #e5e7eb}:before,:after{--tw-content:""}html,:host{-webkit-text-size-adjust:100%;tab-size:4;font-feature-settings:normal;font-variation-settings:normal;-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}body{line-height:inherit;margin:0}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:normal;font-variation-settings:normal;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}button,input,optgroup,select,textarea{font-feature-settings:inherit;font-variation-settings:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:#0000;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}ol,ul,menu{margin:0;padding:0;list-style:none}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}button,[role=button]{cursor:pointer}:disabled{cursor:default}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.\!container{width:100%!important}.container{width:100%}@media (width>=640px){.\!container{max-width:640px!important}.container{max-width:640px}}@media (width>=768px){.\!container{max-width:768px!important}.container{max-width:768px}}@media (width>=1024px){.\!container{max-width:1024px!important}.container{max-width:1024px}}@media (width>=1280px){.\!container{max-width:1280px!important}.container{max-width:1280px}}@media (width>=1536px){.\!container{max-width:1536px!important}.container{max-width:1536px}}.\!visible{visibility:visible!important}.visible{visibility:visible}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.bottom-0{bottom:0}.bottom-\[-30px\]{bottom:-30px}.left-0{left:0}.left-\[80px\]{left:80px}.right-0{right:0}.top-0{top:0}.z-10{z-index:10}.ml-2{margin-left:.5rem}.ml-auto{margin-left:auto}.mt-\[40px\]{margin-top:40px}.mt-\[6px\]{margin-top:6px}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.\!grid{display:grid!important}.grid{display:grid}.hidden{display:none}.h-0\.5{height:.125rem}.h-4{height:1rem}.h-\[26px\]{height:26px}.h-full{height:100%}.max-h-\[36px\]{max-height:36px}.min-h-\[100px\]{min-height:100px}.min-h-\[34px\]{min-height:34px}.w-4{width:1rem}.w-8{width:2rem}.w-\[80px\]{width:80px}.w-full{width:100%}.flex-1{flex:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform{transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.select-none{-webkit-user-select:none;user-select:none}.resize{resize:both}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.flex-nowrap{flex-wrap:nowrap}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-1{gap:.25rem}.gap-2{gap:.5rem}.gap-\[10px\]{gap:10px}.gap-\[15px\]{gap:15px}.gap-\[8px\]{gap:8px}.gap-x-\[10px\]{column-gap:10px}.gap-x-\[20px\]{column-gap:20px}.gap-x-\[26px\]{column-gap:26px}.gap-x-\[6px\]{column-gap:6px}.gap-y-\[10px\]{row-gap:10px}.overflow-hidden{overflow:hidden}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.rounded-\[2px\]{border-radius:2px}.rounded-\[4px\]{border-radius:4px}.border{border-width:1px}.border-b{border-bottom-width:1px}.border-b-2{border-bottom-width:2px}.border-t-\[1px\]{border-top-width:1px}.border-solid{border-style:solid}.border-none{border-style:none}.border-\[\#e0e0e0\]{--tw-border-opacity:1;border-color:rgb(224 224 224/var(--tw-border-opacity,1))}.bg-\[\#0265ff\]{--tw-bg-opacity:1;background-color:rgb(2 101 255/var(--tw-bg-opacity,1))}.bg-\[\#eee\]{--tw-bg-opacity:1;background-color:rgb(238 238 238/var(--tw-bg-opacity,1))}.bg-\[\#f0f0f0\]{--tw-bg-opacity:1;background-color:rgb(240 240 240/var(--tw-bg-opacity,1))}.bg-\[\#f0f6ff\]{--tw-bg-opacity:1;background-color:rgb(240 246 255/var(--tw-bg-opacity,1))}.bg-transparent{background-color:#0000}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.px-3{padding-left:.75rem;padding-right:.75rem}.px-\[10px\]{padding-left:10px;padding-right:10px}.px-\[20px\]{padding-left:20px;padding-right:20px}.px-\[6px\]{padding-left:6px;padding-right:6px}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.py-\[14px\]{padding-top:14px;padding-bottom:14px}.py-\[3px\]{padding-top:3px;padding-bottom:3px}.py-\[7px\]{padding-top:7px;padding-bottom:7px}.pb-\[2px\]{padding-bottom:2px}.pb-\[60px\]{padding-bottom:60px}.pl-8{padding-left:2rem}.pr-8{padding-right:2rem}.pt-\[40px\]{padding-top:40px}.pt-\[4px\]{padding-top:4px}.text-center{text-align:center}.text-sm{font-size:.875rem;line-height:1.25rem}.font-bold{font-weight:700}.italic{font-style:italic}.ordinal{--tw-ordinal:ordinal;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.text-\[\#0265ff\]{--tw-text-opacity:1;color:rgb(2 101 255/var(--tw-text-opacity,1))}.text-\[\#4d609f\]{--tw-text-opacity:1;color:rgb(77 96 159/var(--tw-text-opacity,1))}.text-\[\#666\]{--tw-text-opacity:1;color:rgb(102 102 102/var(--tw-text-opacity,1))}.text-\[\#73819c\]{--tw-text-opacity:1;color:rgb(115 129 156/var(--tw-text-opacity,1))}.text-\[\#999\]{--tw-text-opacity:1;color:rgb(153 153 153/var(--tw-text-opacity,1))}.text-\[\#c2c2c2\]{--tw-text-opacity:1;color:rgb(194 194 194/var(--tw-text-opacity,1))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity,1))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity,1))}.text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.underline{text-decoration-line:underline}.opacity-60{opacity:.6}.outline-none{outline-offset:2px;outline:2px solid #0000}.blur{--tw-blur:blur(8px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter,backdrop-filter;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-all{transition-property:all;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-transform{transition-property:transform;transition-duration:.15s;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-300{transition-duration:.3s}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.placeholder\:text-\[\#999\]::placeholder{--tw-text-opacity:1;color:rgb(153 153 153/var(--tw-text-opacity,1))}.hover\:bg-\[\#e0e0e0\]:hover{--tw-bg-opacity:1;background-color:rgb(224 224 224/var(--tw-bg-opacity,1))}.hover\:bg-\[\#eff0f6\]:hover{--tw-bg-opacity:1;background-color:rgb(239 240 246/var(--tw-bg-opacity,1))}.hover\:text-\[\#0265ff\]:hover{--tw-text-opacity:1;color:rgb(2 101 255/var(--tw-text-opacity,1))}.hover\:text-gray-200:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity,1))}._date-picker-panel_1lgwq_2{flex:0 0 var(--bsy-date-picker-size-panel-body-height);width:var(--bsy-date-picker-size-panel-width);height:var(--bsy-date-picker-size-panel-body-height);box-sizing:border-box;padding:16px}._date-picker-panel_1lgwq_2 .bsy-date-picker-panel{width:var(--bsy-date-picker-size-panel-inner-width);height:var(--bsy-date-picker-size-year-picker-height);background:var(--bsy-date-picker-color-surface);border:0;outline:none}._date-picker-panel_1lgwq_2 .bsy-date-picker-date-panel,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel,._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel,._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel{width:var(--bsy-date-picker-size-panel-inner-width);height:var(--bsy-date-picker-size-year-picker-height)}._date-picker-panel_1lgwq_2 .bsy-date-picker-header{height:20px;color:var(--bsy-date-picker-color-header);justify-content:space-between;align-items:center;padding:0;font-size:14px;font-weight:400;line-height:20px;display:flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-header button{appearance:none;width:auto;height:20px;color:inherit;cursor:pointer;font:inherit;background:0 0;border:0;border-radius:4px;justify-content:center;align-items:center;padding:0;line-height:20px;display:inline-flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-header-view{white-space:nowrap;flex-wrap:nowrap;flex:none;order:1;justify-content:flex-start;align-items:center;gap:6px;width:max-content;min-width:max-content;height:20px;font-weight:400;line-height:20px;display:inline-flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-prev-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-next-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-prev-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-next-btn{width:20px;color:var(--bsy-date-picker-color-arrow);flex:none;font-size:16px;transition:color .2s,background .2s}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-prev-btn:hover,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-next-btn:hover,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-prev-btn:hover,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-next-btn:hover{color:var(--bsy-date-picker-color-header-hover);background:var(--bsy-date-picker-color-week-row-bg)}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-prev-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-prev-btn{order:2;margin-left:auto}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-next-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-header-super-next-btn{order:3;margin-left:12px}._date-picker-panel_1lgwq_2 .bsy-date-picker-header-view .bsy-date-picker-year-btn,._date-picker-panel_1lgwq_2 .bsy-date-picker-header-view .bsy-date-picker-decade-btn{width:auto;min-width:max-content;height:20px;color:var(--bsy-date-picker-color-header);white-space:nowrap;word-break:keep-all;flex:none;padding:0;font-size:14px;line-height:20px;transition:color .2s}._date-picker-panel_1lgwq_2 .bsy-date-picker-header-view .bsy-date-picker-year-btn:hover,._date-picker-panel_1lgwq_2 .bsy-date-picker-header-view .bsy-date-picker-decade-btn:hover{color:var(--bsy-date-picker-color-header-hover)}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-label{height:20px;color:var(--bsy-date-picker-color-header);white-space:nowrap;align-items:center;font-size:14px;line-height:20px;display:inline-flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-label:hover{color:var(--bsy-date-picker-color-header-hover)}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-month-label-arrow-btn{width:20px;height:20px;color:var(--bsy-date-picker-color-arrow);cursor:pointer;background:0 0;border:0;border-radius:4px;flex:0 0 20px;justify-content:center;align-items:center;padding:0;display:inline-flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-header .bsy-date-picker-month-label-arrow-btn:hover{background:var(--bsy-date-picker-color-week-row-bg);color:var(--bsy-date-picker-color-header-hover)}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-label-arrow{color:inherit;justify-content:center;align-items:center;line-height:1;display:inline-flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-body{padding:0}._date-picker-panel_1lgwq_2 .bsy-date-picker-content{border-collapse:separate;table-layout:fixed;width:100%}._date-picker-panel_1lgwq_2 .bsy-date-picker-content th,._date-picker-panel_1lgwq_2 .bsy-date-picker-content td{box-sizing:border-box}._date-picker-panel_1lgwq_2 .bsy-date-picker-content th{width:var(--bsy-date-picker-size-cell);height:var(--bsy-date-picker-size-cell);color:var(--bsy-date-picker-color-text-secondary);font-size:12px;font-weight:400;line-height:var(--bsy-date-picker-size-cell);text-align:center;padding:0}._date-picker-panel_1lgwq_2 .bsy-date-picker-cell{width:var(--bsy-date-picker-size-cell);height:var(--bsy-date-picker-size-cell);color:var(--bsy-date-picker-color-cell-tertiary);text-align:center;cursor:pointer;padding:0}._date-picker-panel_1lgwq_2 .bsy-date-picker-cell-in-view{color:var(--bsy-date-picker-color-cell)}._date-picker-panel_1lgwq_2 .bsy-date-picker-cell-inner{z-index:1;width:var(--bsy-date-picker-size-cell);height:var(--bsy-date-picker-size-cell);box-sizing:border-box;color:inherit;border:1px solid #0000;border-radius:50%;justify-content:center;align-items:center;padding:0;font-size:12px;font-weight:400;line-height:16px;transition:background .2s,border-color .2s,color .2s;display:inline-flex;position:relative}._date-picker-panel_1lgwq_2 .bsy-date-picker-cell:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-primary-hover)}._date-picker-panel_1lgwq_2 .bsy-date-picker-cell-selected .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-cell-selected-bg);color:var(--bsy-date-picker-color-cell-selected)}._date-picker-panel_1lgwq_2 .bsy-date-picker-date-panel .bsy-date-picker-content,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content{width:var(--bsy-date-picker-size-panel-content-width);border-spacing:4px;margin:-4px 0 0 -4px}._date-picker-panel_1lgwq_2 .bsy-date-picker-date-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected) .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected) .bsy-date-picker-cell-inner{border-color:var(--bsy-date-picker-color-primary);background:0 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-date-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-primary-hover)}._date-picker-panel_1lgwq_2 .bsy-date-picker-date-panel .bsy-date-picker-cell-selected .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell-selected .bsy-date-picker-cell-inner{border-color:#0000}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:0 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content th:first-child,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content td:first-child{display:none}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content{width:var(--bsy-date-picker-size-panel-inner-width);border-spacing:0 4px;margin:-4px 0 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content th:not(:first-child),._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-content td:not(:first-child),._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell{width:calc(var(--bsy-date-picker-size-panel-inner-width) / 7)}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-cell:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:0 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:hover .bsy-date-picker-cell,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row:hover .bsy-date-picker-cell,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row-selected .bsy-date-picker-cell{background:var(--bsy-date-picker-color-week-row-bg)}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:has(.bsy-date-picker-cell-selected) .bsy-date-picker-cell{background:var(--bsy-date-picker-color-week-row-bg)}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:hover .bsy-date-picker-cell:nth-child(2),._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row:hover .bsy-date-picker-cell:nth-child(2),._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row-selected .bsy-date-picker-cell:nth-child(2){border-radius:var(--bsy-date-picker-border-radius-pill) 0 0 var(--bsy-date-picker-border-radius-pill)}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:has(.bsy-date-picker-cell-selected) .bsy-date-picker-cell:nth-child(2){border-radius:var(--bsy-date-picker-border-radius-pill) 0 0 var(--bsy-date-picker-border-radius-pill)}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:hover .bsy-date-picker-cell:last-child,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row:hover .bsy-date-picker-cell:last-child,._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row-selected .bsy-date-picker-cell:last-child{border-radius:0 var(--bsy-date-picker-border-radius-pill) var(--bsy-date-picker-border-radius-pill) 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:has(.bsy-date-picker-cell-selected) .bsy-date-picker-cell:last-child{border-radius:0 var(--bsy-date-picker-border-radius-pill) var(--bsy-date-picker-border-radius-pill) 0}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row-selected .bsy-date-picker-cell-today .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-cell-selected-bg);color:var(--bsy-date-picker-color-cell-selected);border-color:#0000}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel tbody tr:has(.bsy-date-picker-cell-selected) .bsy-date-picker-cell-today .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-cell-selected-bg);color:var(--bsy-date-picker-color-cell-selected);border-color:#0000}._date-picker-panel_1lgwq_2 .bsy-date-picker-week-panel .bsy-date-picker-week-panel-row-selected .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-cell-selected-bg);color:var(--bsy-date-picker-color-cell-selected);border-color:#0000}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-content,._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-content tbody{width:var(--bsy-date-picker-size-panel-inner-width);flex-direction:column;gap:41px;display:flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-content tr{width:var(--bsy-date-picker-size-panel-inner-width);justify-content:space-between;display:flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-content,._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-content tbody{width:var(--bsy-date-picker-size-panel-inner-width);height:var(--bsy-date-picker-size-year-picker-height);flex-direction:column;justify-content:space-between;display:flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-content tr{width:var(--bsy-date-picker-size-panel-inner-width);gap:16px;display:flex}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-cell,._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-cell{width:var(--bsy-date-picker-size-pill-width);height:var(--bsy-date-picker-size-cell);padding:0}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-cell-inner{width:var(--bsy-date-picker-size-pill-width);height:var(--bsy-date-picker-size-cell);border-radius:var(--bsy-date-picker-border-radius-pill);white-space:nowrap;word-break:keep-all;font-variant-numeric:tabular-nums;padding:0}._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected) .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-cell-today:not(.bsy-date-picker-cell-selected) .bsy-date-picker-cell-inner{color:var(--bsy-date-picker-color-cell);background:0 0;border-color:#0000}._date-picker-panel_1lgwq_2 .bsy-date-picker-year-panel .bsy-date-picker-cell:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner,._date-picker-panel_1lgwq_2 .bsy-date-picker-month-panel .bsy-date-picker-cell:not(.bsy-date-picker-cell-selected):hover .bsy-date-picker-cell-inner{background:var(--bsy-date-picker-color-primary-hover)}._date-picker-panel_1lgwq_2>.bsy-date-picker-header{margin-bottom:8px}
|
|
2
2
|
/*$vite$:1*/
|