@scalar/api-client 1.2.8 → 1.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/dist/{Close-DFM1qMQH-DMPtwWpT.js → Add-ngyZgYXx-DzyQwJvS.js} +7 -5
  3. package/dist/Brackets-4I8OKomf-BdIXlrTs.js +21 -0
  4. package/dist/Branch-CXwj8YuG-IxKqRWkx.js +34 -0
  5. package/dist/{interface-add-Bthe4y9O-EDM5uqD-.js → Checkmark-De7nq6cG-CenVOav7.js} +5 -6
  6. package/dist/{arrow-down-rfW-r_qd-DCnCiMpp.js → ChevronDown-Co7EAKAv-DHNwXUbS.js} +10 -11
  7. package/dist/ChevronLeft-DYt0idAu-DAzCtmws.js +21 -0
  8. package/dist/{Add-MwmVL5-v-3DrL2GXw.js → ChevronRight-ylxToVWl-CDFDuBE1.js} +8 -9
  9. package/dist/ChevronUp-xAnukIfj-CuKFLVD3.js +21 -0
  10. package/dist/{Menu-DFi9Laso-BhIZrQxp.js → Close-CW3z42qZ-CeX6s3FA.js} +6 -6
  11. package/dist/CodeFolder-Cv_igzJE-CoWfaY0Z.js +27 -0
  12. package/dist/Cookie-CEHvXpqB-D960ImBy.js +37 -0
  13. package/dist/DocsPage-rh2xwxKN-BP1Vagfm.js +28 -0
  14. package/dist/{interface-close-WpJOu-2h-W6lKje7S.js → ExternalLink-DK8L-EH7-ANJEzoHO.js} +8 -9
  15. package/dist/JsonObject-hGdHUQ4M-Cm1hXgAn.js +21 -0
  16. package/dist/Menu-CFK5cOsm-CqE9Tsgr.js +21 -0
  17. package/dist/index.css +1 -1
  18. package/dist/index.js +11 -9
  19. package/package.json +5 -5
  20. package/dist/Brackets-BcvH-CzZ-DhKRLijx.js +0 -21
  21. package/dist/Branch-H5HxSfdF-mvVobUXQ.js +0 -42
  22. package/dist/CheckMark-t0gl4N9U-BE06BAQA.js +0 -16
  23. package/dist/ChevronDown-BfsntkAH-BOGiF9uG.js +0 -24
  24. package/dist/ChevronLeft-gsLd5xOQ-Z0Ct_Vv2.js +0 -24
  25. package/dist/ChevronRight-CI_7n_av-BCFTpQ51.js +0 -24
  26. package/dist/ChevronUp-CjHRmG59-B93Q9llD.js +0 -24
  27. package/dist/CodeFolder-Cf9f6-KB-BSC0O0uL.js +0 -16
  28. package/dist/Cookie-Bza3NN_O-D-5InVd6.js +0 -39
  29. package/dist/DocsPage-Do-Ol9Hb-BNFtxcCC.js +0 -27
  30. package/dist/ExternalLink-D5zCsWas-MT2ACYLZ.js +0 -28
  31. package/dist/JsonObject-BvFDNssB-D5YzqgGw.js +0 -27
  32. package/dist/arrow-chevron-down-C8nXK33Q-cFi1tcoL.js +0 -22
  33. package/dist/arrow-chevron-left-BXUhHSEc-GDsvyOvS.js +0 -22
  34. package/dist/arrow-chevron-right-CSqjaNKG-DLqk_P-k.js +0 -22
  35. package/dist/arrow-chevron-up-Dr-W1IfM-CJpftEXD.js +0 -22
  36. package/dist/arrow-left-DDkHt-xN-CFh-lXGZ.js +0 -22
  37. package/dist/arrow-right-17dZkGZR-C5So-BEm.js +0 -22
  38. package/dist/arrow-up-CexG2Ble-BlrsZtgs.js +0 -22
  39. package/dist/brand-software-development-github-ZQnPxpDg-9BAblfAs.js +0 -16
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @scalar/api-client
2
2
 
3
+ ## 1.2.10
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [fc2c90f]
8
+ - @scalar/components@0.6.0
9
+
10
+ ## 1.2.9
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [0a77380]
15
+ - @scalar/themes@0.7.6
16
+ - @scalar/components@0.5.5
17
+
3
18
  ## 1.2.8
4
19
 
5
20
  ### Patch Changes
@@ -1,19 +1,21 @@
1
1
  import { openBlock, createElementBlock, createElementVNode } from "vue";
2
2
  const n = {
3
3
  xmlns: "http://www.w3.org/2000/svg",
4
- fill: "none",
5
- viewBox: "0 0 14 14"
4
+ viewBox: "0 0 12 12"
6
5
  }, r = /* @__PURE__ */ createElementVNode("path", {
6
+ fill: "none",
7
7
  stroke: "currentColor",
8
- d: "m12.5 1.5-11 11m0-11 11 11"
8
+ "stroke-linecap": "round",
9
+ "stroke-linejoin": "round",
10
+ d: "M6 1v10M1 6h10"
9
11
  }, null, -1), c = [
10
12
  r
11
13
  ];
12
14
  function s(l, d) {
13
15
  return openBlock(), createElementBlock("svg", n, [...c]);
14
16
  }
15
- const i = { render: s };
17
+ const _ = { render: s };
16
18
  export {
17
- i as default,
19
+ _ as default,
18
20
  s as render
19
21
  };
@@ -0,0 +1,21 @@
1
+ import { openBlock, createElementBlock, createElementVNode } from "vue";
2
+ const c = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ viewBox: "0 0 12 12"
5
+ }, n = /* @__PURE__ */ createElementVNode("path", {
6
+ fill: "none",
7
+ stroke: "currentColor",
8
+ "stroke-linecap": "round",
9
+ "stroke-linejoin": "round",
10
+ d: "M4.9 1.1h-.3c-.4 0-.8.3-.8.8v2.3c0 .6-.4 1.2-.9 1.4L1.7 6l1.2.5c.6.2.9.8.9 1.4v2.3c0 .4.3.8.8.8h.3m2.2-9.9h.3c.4 0 .8.3.8.8v2.3c0 .6.4 1.2.9 1.4l1.2.4-1.2.5c-.5.2-.9.7-.9 1.4v2.3c0 .4-.3.8-.8.8h-.3"
11
+ }, null, -1), r = [
12
+ n
13
+ ];
14
+ function l(s, d) {
15
+ return openBlock(), createElementBlock("svg", c, [...r]);
16
+ }
17
+ const i = { render: l };
18
+ export {
19
+ i as default,
20
+ l as render
21
+ };
@@ -0,0 +1,34 @@
1
+ import { openBlock, createElementBlock, createElementVNode } from "vue";
2
+ const t = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ fill: "none",
5
+ stroke: "currentColor",
6
+ "stroke-linecap": "round",
7
+ "stroke-linejoin": "round",
8
+ viewBox: "0 0 12 12"
9
+ }, n = /* @__PURE__ */ createElementVNode("path", { d: "M8.2 3.8v2.4H3.8m0-2.4v4.4" }, null, -1), r = /* @__PURE__ */ createElementVNode("circle", {
10
+ cx: "3.8",
11
+ cy: "2.2",
12
+ r: "1.2"
13
+ }, null, -1), l = /* @__PURE__ */ createElementVNode("circle", {
14
+ cx: "3.8",
15
+ cy: "9.8",
16
+ r: "1.2"
17
+ }, null, -1), s = /* @__PURE__ */ createElementVNode("circle", {
18
+ cx: "8.2",
19
+ cy: "2.2",
20
+ r: "1.2"
21
+ }, null, -1), i = [
22
+ n,
23
+ r,
24
+ l,
25
+ s
26
+ ];
27
+ function _(d, h) {
28
+ return openBlock(), createElementBlock("svg", t, [...i]);
29
+ }
30
+ const a = { render: _ };
31
+ export {
32
+ a as default,
33
+ _ as render
34
+ };
@@ -1,22 +1,21 @@
1
1
  import { openBlock, createElementBlock, createElementVNode } from "vue";
2
2
  const n = {
3
3
  xmlns: "http://www.w3.org/2000/svg",
4
- "stroke-width": "1.5",
5
- viewBox: "0 0 24 24"
4
+ viewBox: "0 0 12 12"
6
5
  }, r = /* @__PURE__ */ createElementVNode("path", {
7
6
  fill: "none",
8
7
  stroke: "currentColor",
9
8
  "stroke-linecap": "round",
10
9
  "stroke-linejoin": "round",
11
- d: "M.75 12h22.5M12 .75v22.5"
10
+ d: "M10.7 2.3 5.3 9.7l-4-3.2"
12
11
  }, null, -1), c = [
13
12
  r
14
13
  ];
15
- function s(d, l) {
14
+ function l(s, d) {
16
15
  return openBlock(), createElementBlock("svg", n, [...c]);
17
16
  }
18
- const a = { render: s };
17
+ const a = { render: l };
19
18
  export {
20
19
  a as default,
21
- s as render
20
+ l as render
22
21
  };
@@ -1,22 +1,21 @@
1
1
  import { openBlock, createElementBlock, createElementVNode } from "vue";
2
- const n = {
2
+ const t = {
3
3
  xmlns: "http://www.w3.org/2000/svg",
4
- "stroke-width": "1.5",
5
- viewBox: "0 0 24 24"
6
- }, r = /* @__PURE__ */ createElementVNode("path", {
7
4
  fill: "none",
5
+ viewBox: "0 0 12 12"
6
+ }, r = /* @__PURE__ */ createElementVNode("path", {
8
7
  stroke: "currentColor",
9
8
  "stroke-linecap": "round",
10
9
  "stroke-linejoin": "round",
11
- d: "M12 .75v22.5M1.5 12.75 12 23.25l10.5-10.5"
12
- }, null, -1), s = [
10
+ d: "M2.2 4.1 6 7.9l3.8-3.8"
11
+ }, null, -1), c = [
13
12
  r
14
13
  ];
15
- function c(l, d) {
16
- return openBlock(), createElementBlock("svg", n, [...s]);
14
+ function l(s, d) {
15
+ return openBlock(), createElementBlock("svg", t, [...c]);
17
16
  }
18
- const a = { render: c };
17
+ const _ = { render: l };
19
18
  export {
20
- a as default,
21
- c as render
19
+ _ as default,
20
+ l as render
22
21
  };
@@ -0,0 +1,21 @@
1
+ import { openBlock, createElementBlock, createElementVNode } from "vue";
2
+ const n = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ fill: "none",
5
+ viewBox: "0 0 12 12"
6
+ }, r = /* @__PURE__ */ createElementVNode("path", {
7
+ stroke: "currentColor",
8
+ "stroke-linecap": "round",
9
+ "stroke-linejoin": "round",
10
+ d: "M7.9 9.8 4.1 6l3.8-3.8"
11
+ }, null, -1), c = [
12
+ r
13
+ ];
14
+ function l(s, d) {
15
+ return openBlock(), createElementBlock("svg", n, [...c]);
16
+ }
17
+ const _ = { render: l };
18
+ export {
19
+ _ as default,
20
+ l as render
21
+ };
@@ -1,22 +1,21 @@
1
1
  import { openBlock, createElementBlock, createElementVNode } from "vue";
2
2
  const n = {
3
3
  xmlns: "http://www.w3.org/2000/svg",
4
- viewBox: "0 0 48 48"
5
- }, r = /* @__PURE__ */ createElementVNode("path", {
6
4
  fill: "none",
5
+ viewBox: "0 0 12 12"
6
+ }, r = /* @__PURE__ */ createElementVNode("path", {
7
7
  stroke: "currentColor",
8
8
  "stroke-linecap": "round",
9
9
  "stroke-linejoin": "round",
10
- "stroke-width": "3.429",
11
- d: "M24 1.714v44.572M1.714 24h44.572"
12
- }, null, -1), s = [
10
+ d: "M4.1 9.8 7.9 6 4.1 2.2"
11
+ }, null, -1), c = [
13
12
  r
14
13
  ];
15
- function c(d, l) {
16
- return openBlock(), createElementBlock("svg", n, [...s]);
14
+ function s(l, i) {
15
+ return openBlock(), createElementBlock("svg", n, [...c]);
17
16
  }
18
- const h = { render: c };
17
+ const h = { render: s };
19
18
  export {
20
19
  h as default,
21
- c as render
20
+ s as render
22
21
  };
@@ -0,0 +1,21 @@
1
+ import { openBlock, createElementBlock, createElementVNode } from "vue";
2
+ const n = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ fill: "none",
5
+ viewBox: "0 0 12 12"
6
+ }, r = /* @__PURE__ */ createElementVNode("path", {
7
+ stroke: "currentColor",
8
+ "stroke-linecap": "round",
9
+ "stroke-linejoin": "round",
10
+ d: "M9.8 7.9 6 4.1 2.2 7.9"
11
+ }, null, -1), c = [
12
+ r
13
+ ];
14
+ function s(l, d) {
15
+ return openBlock(), createElementBlock("svg", n, [...c]);
16
+ }
17
+ const _ = { render: s };
18
+ export {
19
+ _ as default,
20
+ s as render
21
+ };
@@ -1,20 +1,20 @@
1
1
  import { openBlock, createElementBlock, createElementVNode } from "vue";
2
2
  const n = {
3
3
  xmlns: "http://www.w3.org/2000/svg",
4
- "xml:space": "preserve",
5
- viewBox: "0 0 14 14"
6
- }, r = /* @__PURE__ */ createElementVNode("path", {
7
4
  fill: "none",
5
+ viewBox: "0 0 12 12"
6
+ }, r = /* @__PURE__ */ createElementVNode("path", {
8
7
  stroke: "currentColor",
9
- d: "M14 3.4H0m14 7.2H0"
8
+ "stroke-linecap": "round",
9
+ d: "m10.7 1.3-9.4 9.4m0-9.4 9.4 9.4"
10
10
  }, null, -1), c = [
11
11
  r
12
12
  ];
13
13
  function s(l, d) {
14
14
  return openBlock(), createElementBlock("svg", n, [...c]);
15
15
  }
16
- const a = { render: s };
16
+ const _ = { render: s };
17
17
  export {
18
- a as default,
18
+ _ as default,
19
19
  s as render
20
20
  };
@@ -0,0 +1,27 @@
1
+ import { openBlock, createElementBlock, createElementVNode } from "vue";
2
+ const n = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ fill: "none",
5
+ viewBox: "0 0 12 12"
6
+ }, r = /* @__PURE__ */ createElementVNode("path", {
7
+ stroke: "currentColor",
8
+ "stroke-linecap": "round",
9
+ "stroke-linejoin": "round",
10
+ d: "M10.5 4.6V3.3c0-.2-.1-.4-.2-.5-.2-.2-.3-.2-.5-.2H4.3v-.7c0-.2-.1-.4-.2-.5s-.3-.2-.5-.2H1.5c-.2 0-.3.1-.5.2-.1.1-.2.3-.2.5V10c0 .2.1.4.2.5s.3.2.5.3c.2 0 .4 0 .5-.1.2-.1.3-.3.3-.4l1.1-5.1c0-.1.1-.3.2-.4.2-.1.4-.2.5-.2zm0 0c.1 0 .2 0 .3.1.1 0 .2.1.2.2.1.1.1.2.1.3v.3l-1 4.8c0 .1-.1.3-.2.4s-.3.1-.4.1H1.6"
11
+ }, null, -1), c = /* @__PURE__ */ createElementVNode("path", {
12
+ stroke: "currentColor",
13
+ "stroke-linecap": "round",
14
+ "stroke-linejoin": "round",
15
+ d: "m6 6.7-1 1 1 1m2.1-2 1 1-1 1"
16
+ }, null, -1), s = [
17
+ r,
18
+ c
19
+ ];
20
+ function l(d, i) {
21
+ return openBlock(), createElementBlock("svg", n, [...s]);
22
+ }
23
+ const _ = { render: l };
24
+ export {
25
+ _ as default,
26
+ l as render
27
+ };
@@ -0,0 +1,37 @@
1
+ import { openBlock, createElementBlock, createElementVNode } from "vue";
2
+ const t = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ fill: "currentColor",
5
+ viewBox: "0 0 12 12"
6
+ }, n = /* @__PURE__ */ createElementVNode("path", {
7
+ fill: "none",
8
+ stroke: "currentColor",
9
+ "stroke-linecap": "round",
10
+ "stroke-linejoin": "round",
11
+ d: "M7.9 4.1c-1 .2-2-.5-2.2-1.5-.1-.5 0-1.1.3-1.5-2.7 0-4.9 2.2-4.9 4.9s2.2 4.9 4.9 4.9 4.9-2.2 4.9-4.9v-.4c-.8.6-2 .4-2.6-.4-.3-.3-.4-.7-.4-1.1"
12
+ }, null, -1), r = /* @__PURE__ */ createElementVNode("circle", {
13
+ cx: "4.4",
14
+ cy: "7",
15
+ r: ".6"
16
+ }, null, -1), l = /* @__PURE__ */ createElementVNode("circle", {
17
+ cx: "6.5",
18
+ cy: "7.6",
19
+ r: ".6"
20
+ }, null, -1), s = /* @__PURE__ */ createElementVNode("circle", {
21
+ cx: "5",
22
+ cy: "4.4",
23
+ r: ".6"
24
+ }, null, -1), i = [
25
+ n,
26
+ r,
27
+ l,
28
+ s
29
+ ];
30
+ function _(d, u) {
31
+ return openBlock(), createElementBlock("svg", t, [...i]);
32
+ }
33
+ const a = { render: _ };
34
+ export {
35
+ a as default,
36
+ _ as render
37
+ };
@@ -0,0 +1,28 @@
1
+ import { openBlock, createElementBlock, createElementVNode } from "vue";
2
+ const t = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ viewBox: "0 0 12 12"
5
+ }, r = /* @__PURE__ */ createElementVNode("path", {
6
+ fill: "none",
7
+ stroke: "currentColor",
8
+ "stroke-linecap": "round",
9
+ "stroke-linejoin": "round",
10
+ d: "M1.8 10.2c0 .2.1.5.3.6q.3.3.6.3h6.6c.2 0 .5-.1.6-.3q.3-.3.3-.6V1.8c0-.2-.1-.5-.3-.6-.1-.3-.3-.4-.6-.4H4.7l-3 3v6.4z"
11
+ }, null, -1), c = /* @__PURE__ */ createElementVNode("path", {
12
+ fill: "none",
13
+ stroke: "currentColor",
14
+ "stroke-linecap": "round",
15
+ "stroke-linejoin": "round",
16
+ d: "M1.8 3.8h2.1c.2 0 .5-.1.6-.3q.3-.3.3-.6V.8zm4.7 0h2m-5 2.5h5m-5 2.4h5"
17
+ }, null, -1), l = [
18
+ r,
19
+ c
20
+ ];
21
+ function s(i, d) {
22
+ return openBlock(), createElementBlock("svg", t, [...l]);
23
+ }
24
+ const u = { render: s };
25
+ export {
26
+ u as default,
27
+ s as render
28
+ };
@@ -1,22 +1,21 @@
1
1
  import { openBlock, createElementBlock, createElementVNode } from "vue";
2
2
  const n = {
3
3
  xmlns: "http://www.w3.org/2000/svg",
4
- "stroke-width": "1.5",
5
- viewBox: "0 0 24 24"
6
- }, r = /* @__PURE__ */ createElementVNode("path", {
7
4
  fill: "none",
5
+ viewBox: "0 0 12 12"
6
+ }, r = /* @__PURE__ */ createElementVNode("path", {
8
7
  stroke: "currentColor",
9
8
  "stroke-linecap": "round",
10
9
  "stroke-linejoin": "round",
11
- d: "m.75 23.249 22.5-22.5m0 22.5L.75.749"
12
- }, null, -1), s = [
10
+ d: "M4 2h6v6m0-6-8 8"
11
+ }, null, -1), c = [
13
12
  r
14
13
  ];
15
- function c(l, i) {
16
- return openBlock(), createElementBlock("svg", n, [...s]);
14
+ function l(s, i) {
15
+ return openBlock(), createElementBlock("svg", n, [...c]);
17
16
  }
18
- const a = { render: c };
17
+ const a = { render: l };
19
18
  export {
20
19
  a as default,
21
- c as render
20
+ l as render
22
21
  };
@@ -0,0 +1,21 @@
1
+ import { openBlock, createElementBlock, createElementVNode } from "vue";
2
+ const c = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ fill: "none",
5
+ viewBox: "0 0 12 12"
6
+ }, n = /* @__PURE__ */ createElementVNode("path", {
7
+ stroke: "currentColor",
8
+ "stroke-linecap": "round",
9
+ "stroke-linejoin": "round",
10
+ d: "M3.7 1.1h-.2c-.5 0-.9.4-.9.9v3.1c0 .5-.4.9-.9.9h-.3m6.9-4.9h.2c.5 0 .9.4.9.9v3.1c0 .5.4.9.9.9h.3m-6.9 4.9h-.2c-.5 0-.9-.4-.9-.9V6.9c0-.5-.4-.9-.9-.9h-.3m6.9 4.9h.2c.5 0 .9-.4.9-.9V6.9c0-.5.4-.9.9-.9h.3"
11
+ }, null, -1), r = [
12
+ n
13
+ ];
14
+ function s(h, l) {
15
+ return openBlock(), createElementBlock("svg", c, [...r]);
16
+ }
17
+ const i = { render: s };
18
+ export {
19
+ i as default,
20
+ s as render
21
+ };
@@ -0,0 +1,21 @@
1
+ import { openBlock, createElementBlock, createElementVNode } from "vue";
2
+ const n = {
3
+ xmlns: "http://www.w3.org/2000/svg",
4
+ fill: "none",
5
+ viewBox: "0 0 12 12"
6
+ }, r = /* @__PURE__ */ createElementVNode("path", {
7
+ stroke: "currentColor",
8
+ "stroke-linecap": "round",
9
+ "stroke-linejoin": "round",
10
+ d: "M11 3.4H1m10 5.2H1"
11
+ }, null, -1), c = [
12
+ r
13
+ ];
14
+ function s(l, d) {
15
+ return openBlock(), createElementBlock("svg", n, [...c]);
16
+ }
17
+ const u = { render: s };
18
+ export {
19
+ u as default,
20
+ s as render
21
+ };
package/dist/index.css CHANGED
@@ -1086,7 +1086,7 @@ to {
1086
1086
  .card-form-input input:not(:placeholder-shown) + label[data-v-c36afa14] {
1087
1087
  color: var(--scalar-color-2);
1088
1088
  }
1089
- .loader-wrapper:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .loader-wrapper[data-v-47faceda]{position:relative;height:var(--d6cae758);width:var(--d6cae758);display:flex;align-items:center;justify-content:center;--loader-size: 50%}.svg-loader:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .svg-loader[data-v-47faceda]{width:var(--loader-size);height:var(--loader-size);top:1rem;right:.9rem;overflow:visible;fill:none;background-color:transparent;stroke:currentColor}.svg-path:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .svg-path[data-v-47faceda]{stroke-width:14;fill:none;transition:.3s}.svg-x-mark:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .svg-x-mark[data-v-47faceda]{stroke-dasharray:57;stroke-dashoffset:57;transition-delay:0s}.svg-check-mark:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .svg-check-mark[data-v-47faceda]{stroke-dasharray:149;stroke-dashoffset:149;transition-delay:0s}.icon-is-invalid .svg-x-mark:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .icon-is-invalid .svg-x-mark[data-v-47faceda]{stroke-dashoffset:0;transition-delay:.3s}.icon-is-valid .svg-check-mark:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .icon-is-valid .svg-check-mark[data-v-47faceda]{stroke-dashoffset:0;transition-delay:.3s}.circular-loader:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .circular-loader[data-v-47faceda]{animation:rotate-47faceda .7s linear infinite,fade-in-47faceda .4s;transform-origin:center center;transform:scale(5);background:transparent}.loader-path:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .loader-path[data-v-47faceda]{stroke-dasharray:50,200;stroke-dashoffset:-100;stroke-linecap:round}.loader-path-off:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .loader-path-off[data-v-47faceda]{stroke-dasharray:50,200;stroke-dashoffset:-100;transition:opacity .3s;opacity:0}@keyframes fade-in-47faceda{0%{opacity:0}70%{opacity:0}to{opacity:1}}@keyframes rotate-47faceda{0%{transform:scale(5) rotate(0)}to{transform:scale(5) rotate(360deg)}}.scalar-codeblock-code[class*=language-]:where(.scalar-component),:where(.scalar-component) .scalar-codeblock-code[class*=language-],.scalar-codeblock-pre[class*=language-]:where(.scalar-component),:where(.scalar-component) .scalar-codeblock-pre[class*=language-]{color:var(--scalar-color-2);background:none;font-family:var(--scalar-font-code);font-size:var(--scalar-small);text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.4;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none;display:block}.scalar-codeblock-pre[class*=language-]:where(.scalar-component),:where(.scalar-component) .scalar-codeblock-pre[class*=language-]{margin:0;padding:.5rem;overflow:auto}:not(pre)>code[class*=language-]:where(.scalar-component),:where(.scalar-component) :not(pre)>code[class*=language-],.scalar-codeblock-pre[class*=language-]:where(.scalar-component),:where(.scalar-component) .scalar-codeblock-pre[class*=language-]{background:var(--scalar-background-2)}.line-numbers.scalar-codeblock-pre[class*=language-]{position:relative;padding-left:2em;counter-reset:linenumber}.line-numbers>code{position:relative;white-space:inherit}.line-numbers .line-numbers-rows{position:absolute;pointer-events:none;top:0;font-size:100%;left:-3em;width:3em;letter-spacing:-1px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.line-numbers-rows>span{display:block;counter-increment:linenumber}.line-numbers-rows>span:before{content:counter(linenumber);color:#999;display:block;padding-right:.8em;text-align:right}:not(pre)>code[class*=language-]:where(.scalar-component),:where(.scalar-component) :not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.comment:where(.scalar-component),:where(.scalar-component) .token.comment,.token.block-comment:where(.scalar-component),:where(.scalar-component) .token.block-comment,.token.prolog:where(.scalar-component),:where(.scalar-component) .token.prolog,.token.doctype:where(.scalar-component),:where(.scalar-component) .token.doctype,.token.cdata:where(.scalar-component),:where(.scalar-component) .token.cdata{color:var(--scalar-color-2)}.token.punctuation:where(.scalar-component),:where(.scalar-component) .token.punctuation{color:var(--scalar-color-3)}.token.tag:where(.scalar-component),:where(.scalar-component) .token.tag,.token.attr-name:where(.scalar-component),:where(.scalar-component) .token.attr-name,.token.namespace:where(.scalar-component),:where(.scalar-component) .token.namespace,.token.deleted:where(.scalar-component),:where(.scalar-component) .token.deleted{color:var(--scalar-color-red)}.token.function-name:where(.scalar-component),:where(.scalar-component) .token.function-name{color:var(--scalar-color-green)}.token.boolean:where(.scalar-component),:where(.scalar-component) .token.boolean,.token.number:where(.scalar-component),:where(.scalar-component) .token.number,.token.function:where(.scalar-component),:where(.scalar-component) .token.function{color:var(--scalar-color-orange)}.token.property:where(.scalar-component),:where(.scalar-component) .token.property,.token.class-name:where(.scalar-component),:where(.scalar-component) .token.class-name,.token.constant:where(.scalar-component),:where(.scalar-component) .token.constant,.token.symbol:where(.scalar-component),:where(.scalar-component) .token.symbol{color:var(--scalar-color-1)}.token.selector:where(.scalar-component),:where(.scalar-component) .token.selector,.token.important:where(.scalar-component),:where(.scalar-component) .token.important,.token.atrule:where(.scalar-component),:where(.scalar-component) .token.atrule,.token.keyword:where(.scalar-component),:where(.scalar-component) .token.keyword,.token.builtin:where(.scalar-component),:where(.scalar-component) .token.builtin{color:var(--scalar-color-purple)}.token.string:where(.scalar-component),:where(.scalar-component) .token.string,.token.char:where(.scalar-component),:where(.scalar-component) .token.char,.token.attr-value:where(.scalar-component),:where(.scalar-component) .token.attr-value,.token.regex:where(.scalar-component),:where(.scalar-component) .token.regex,.token.variable:where(.scalar-component),:where(.scalar-component) .token.variable{color:var(--scalar-color-blue)}.light-mode .dark-mode .language-shell .token.variable:where(.scalar-component),:where(.scalar-component) .light-mode .dark-mode .language-shell .token.variable{color:var(--scalar-color-1)}.light-mode .dark-mode .language-shell .token.string:where(.scalar-component),:where(.scalar-component) .light-mode .dark-mode .language-shell .token.string{color:var(--scalar-color-blue)}.language-shell .token.string:where(.scalar-component),:where(.scalar-component) .language-shell .token.string{color:var(--scalar-color-1)}.token.operator:where(.scalar-component),:where(.scalar-component) .token.operator,.token.entity:where(.scalar-component),:where(.scalar-component) .token.entity,.token.url:where(.scalar-component),:where(.scalar-component) .token.url{color:var(--scalar-color-3)}.token.important:where(.scalar-component),:where(.scalar-component) .token.important,.token.bold:where(.scalar-component),:where(.scalar-component) .token.bold{font-weight:700}.token.italic:where(.scalar-component),:where(.scalar-component) .token.italic{font-style:italic}.token.entity:where(.scalar-component),:where(.scalar-component) .token.entity{cursor:help}.token.inserted:where(.scalar-component),:where(.scalar-component) .token.inserted{color:var(--scalar-color-green)}.credentials:where(.scalar-component),:where(.scalar-component) .credentials{font-size:0;color:transparent}.credentials:after:where(.scalar-component),:where(.scalar-component) .credentials:after{content:"·····";font-size:var(--scalar-small);color:var(--scalar-color-3)}.scalar-modal-layout:where(.scalar-component[data-v-ff85ced0]),:where(.scalar-component) .scalar-modal-layout[data-v-ff85ced0]{animation:modal-fade-ff85ced0 .2s forwards}.scalar-modal:where(.scalar-component[data-v-ff85ced0]),:where(.scalar-component) .scalar-modal[data-v-ff85ced0]{transform:scale(.98);animation:modal-pop-ff85ced0 .15s .15s forwards}@keyframes modal-fade-ff85ced0{0%{opacity:0}to{opacity:1}}@keyframes modal-pop-ff85ced0{0%{opacity:0}to{opacity:1;transform:scale(1)}}.scalar-input-wrapper-focus .scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input-wrapper-focus .scalar-input-label[data-v-4fc2339e]{color:var(--scalar-color-1)}.scalar-input-wrapper-error .scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input-wrapper-error .scalar-input-label[data-v-4fc2339e]{color:var(--scalar-color-error-color)}.scalar-input::-moz-selection:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]::-moz-selection{color:var(--scalar-color-1);background:#ffa55859}.scalar-input::selection:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]::selection{color:var(--scalar-color-1);background:#ffa55859}.scalar-input:has(+.scalar-input-label):where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:has(+.scalar-input-label){opacity:0}.scalar-input:not(:-moz-placeholder-shown):where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:not(:-moz-placeholder-shown){opacity:1;-moz-transition:opacity .2s ease-in-out .15s;transition:opacity .2s ease-in-out .15s}.scalar-input:not(:placeholder-shown):where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:not(:placeholder-shown),.scalar-input-wrapper-focus .scalar-input:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input-wrapper-focus .scalar-input[data-v-4fc2339e]{opacity:1;transition:opacity .2s ease-in-out .15s}.scalar-input:-webkit-autofill:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:-webkit-autofill,.scalar-input:-webkit-autofill:hover:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:-webkit-autofill:hover,.scalar-input:-webkit-autofill:focus:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:-webkit-autofill:focus,.scalar-input:-webkit-autofill:active:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:-webkit-autofill:active,.scalar-input:focus-within:-webkit-autofill:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:focus-within:-webkit-autofill,.scalar-input:focus-within:-webkit-autofill:hover:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:focus-within:-webkit-autofill:hover,.scalar-input:focus-within:-webkit-autofill:focus:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:focus-within:-webkit-autofill:focus,.scalar-input:focus-within:-webkit-autofill:active:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:focus-within:-webkit-autofill:active{-webkit-box-shadow:0 0 0px 1000px var(--scalar-background-1) inset!important;-webkit-text-fill-color:var(--scalar-color-1);color:var(--scalar-color-1);border-radius:var(--scalar-radius)}.scalar-input:not(:-moz-placeholder-shown)+.scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input:not(:-moz-placeholder-shown)+.scalar-input-label[data-v-4fc2339e]{transform:translate3d(0,-20px,0) scale(.8);transform-origin:top left}.scalar-input-wrapper-focus .scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input-wrapper-focus .scalar-input-label[data-v-4fc2339e],.scalar-input:not(:placeholder-shown)+.scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input:not(:placeholder-shown)+.scalar-input-label[data-v-4fc2339e]{transform:translate3d(0,-20px,0) scale(.8);transform-origin:top left}.scalar-input-wrapper-focus:has(button:active) .scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input-wrapper-focus:has(button:active) .scalar-input-label[data-v-4fc2339e]{color:var(--scalar-color-3)!important}:where(.scalar-component),:where(.scalar-component) *{box-sizing:border-box;border-width:0;border-style:solid;border-color:var(--scalar-border-color);font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:unset;font-weight:inherit;line-height:inherit;color:inherit;margin:unset;padding:unset}:where(.scalar-component),:where(.scalar-component) *,:before:where(.scalar-component),:where(.scalar-component) :before,:after:where(.scalar-component),:where(.scalar-component) :after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop:where(.scalar-component),:where(.scalar-component) ::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.sr-only:where(.scalar-component),:where(.scalar-component) .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none:where(.scalar-component),:where(.scalar-component) .pointer-events-none{pointer-events:none}.visible:where(.scalar-component),:where(.scalar-component) .visible{visibility:visible}.fixed:where(.scalar-component),:where(.scalar-component) .fixed{position:fixed}.absolute:where(.scalar-component),:where(.scalar-component) .absolute{position:absolute}.relative:where(.scalar-component),:where(.scalar-component) .relative{position:relative}.left-0:where(.scalar-component),:where(.scalar-component) .left-0{left:0}.top-0:where(.scalar-component),:where(.scalar-component) .top-0{top:0}.z-10:where(.scalar-component),:where(.scalar-component) .z-10{z-index:10}.z-\[1001\]:where(.scalar-component),:where(.scalar-component) .z-\[1001\]{z-index:1001}.m-0:where(.scalar-component),:where(.scalar-component) .m-0{margin:0}.mx-2:where(.scalar-component),:where(.scalar-component) .mx-2{margin-left:8px;margin-right:8px}.mx-auto:where(.scalar-component),:where(.scalar-component) .mx-auto{margin-left:auto;margin-right:auto}.my-3:where(.scalar-component),:where(.scalar-component) .my-3{margin-top:12px;margin-bottom:12px}.mb-0:where(.scalar-component),:where(.scalar-component) .mb-0{margin-bottom:0}.ml-2:where(.scalar-component),:where(.scalar-component) .ml-2{margin-left:8px}.mr-2:where(.scalar-component),:where(.scalar-component) .mr-2{margin-right:8px}.mr-3:where(.scalar-component),:where(.scalar-component) .mr-3{margin-right:12px}.mt-1:where(.scalar-component),:where(.scalar-component) .mt-1{margin-top:4px}.mt-1\.5:where(.scalar-component),:where(.scalar-component) .mt-1\.5{margin-top:6px}.mt-20:where(.scalar-component),:where(.scalar-component) .mt-20{margin-top:80px}.block:where(.scalar-component),:where(.scalar-component) .block{display:block}.flex:where(.scalar-component),:where(.scalar-component) .flex{display:flex}.grid:where(.scalar-component),:where(.scalar-component) .grid{display:grid}.contents:where(.scalar-component),:where(.scalar-component) .contents{display:contents}.hidden:where(.scalar-component),:where(.scalar-component) .hidden{display:none}.aspect-square:where(.scalar-component),:where(.scalar-component) .aspect-square{aspect-ratio:1 / 1}.h-10:where(.scalar-component),:where(.scalar-component) .h-10{height:40px}.h-3:where(.scalar-component),:where(.scalar-component) .h-3{height:12px}.h-3\.5:where(.scalar-component),:where(.scalar-component) .h-3\.5{height:14px}.h-4:where(.scalar-component),:where(.scalar-component) .h-4{height:16px}.h-5:where(.scalar-component),:where(.scalar-component) .h-5{height:20px}.h-6:where(.scalar-component),:where(.scalar-component) .h-6{height:24px}.h-\[100dvh\]:where(.scalar-component),:where(.scalar-component) .h-\[100dvh\]{height:100dvh}.h-full:where(.scalar-component),:where(.scalar-component) .h-full{height:100%}.max-h-\[440px\]:where(.scalar-component),:where(.scalar-component) .max-h-\[440px\]{max-height:440px}.max-h-\[calc\(100dvh-240px\)\]:where(.scalar-component),:where(.scalar-component) .max-h-\[calc\(100dvh-240px\)\]{max-height:calc(100dvh - 240px)}.min-h-\[77px\]:where(.scalar-component),:where(.scalar-component) .min-h-\[77px\]{min-height:77px}.w-10:where(.scalar-component),:where(.scalar-component) .w-10{width:40px}.w-3:where(.scalar-component),:where(.scalar-component) .w-3{width:12px}.w-3\.5:where(.scalar-component),:where(.scalar-component) .w-3\.5{width:14px}.w-4:where(.scalar-component),:where(.scalar-component) .w-4{width:16px}.w-5:where(.scalar-component),:where(.scalar-component) .w-5{width:20px}.w-6:where(.scalar-component),:where(.scalar-component) .w-6{width:24px}.w-\[100dvw\]:where(.scalar-component),:where(.scalar-component) .w-\[100dvw\]{width:100dvw}.w-full:where(.scalar-component),:where(.scalar-component) .w-full{width:100%}.min-w-0:where(.scalar-component),:where(.scalar-component) .min-w-0{min-width:0px}.max-w-screen-lg:where(.scalar-component),:where(.scalar-component) .max-w-screen-lg{max-width:800px}.max-w-screen-md:where(.scalar-component),:where(.scalar-component) .max-w-screen-md{max-width:640px}.max-w-screen-sm:where(.scalar-component),:where(.scalar-component) .max-w-screen-sm{max-width:540px}.max-w-screen-xs:where(.scalar-component),:where(.scalar-component) .max-w-screen-xs{max-width:480px}.flex-1:where(.scalar-component),:where(.scalar-component) .flex-1{flex:1 1 0%}.origin-top-left:where(.scalar-component),:where(.scalar-component) .origin-top-left{transform-origin:top left}.rotate-90:where(.scalar-component),:where(.scalar-component) .rotate-90{--tw-rotate: 90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform:where(.scalar-component),:where(.scalar-component) .transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-not-allowed:where(.scalar-component),:where(.scalar-component) .cursor-not-allowed{cursor:not-allowed}.cursor-pointer:where(.scalar-component),:where(.scalar-component) .cursor-pointer{cursor:pointer}.resize-none:where(.scalar-component),:where(.scalar-component) .resize-none{resize:none}.appearance-none:where(.scalar-component),:where(.scalar-component) .appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.flex-col:where(.scalar-component),:where(.scalar-component) .flex-col{flex-direction:column}.items-start:where(.scalar-component),:where(.scalar-component) .items-start{align-items:flex-start}.items-center:where(.scalar-component),:where(.scalar-component) .items-center{align-items:center}.justify-center:where(.scalar-component),:where(.scalar-component) .justify-center{justify-content:center}.gap-0:where(.scalar-component),:where(.scalar-component) .gap-0{gap:0px}.gap-0\.75:where(.scalar-component),:where(.scalar-component) .gap-0\.75{gap:3px}.gap-1:where(.scalar-component),:where(.scalar-component) .gap-1{gap:4px}.gap-2:where(.scalar-component),:where(.scalar-component) .gap-2{gap:8px}.gap-3:where(.scalar-component),:where(.scalar-component) .gap-3{gap:12px}.gap-4:where(.scalar-component),:where(.scalar-component) .gap-4{gap:16px}.self-center:where(.scalar-component),:where(.scalar-component) .self-center{align-self:center}.overflow-hidden:where(.scalar-component),:where(.scalar-component) .overflow-hidden{overflow:hidden}.overflow-y-auto:where(.scalar-component),:where(.scalar-component) .overflow-y-auto{overflow-y:auto}.truncate:where(.scalar-component),:where(.scalar-component) .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rounded:where(.scalar-component),:where(.scalar-component) .rounded{border-radius:var(--scalar-radius)}.rounded-lg:where(.scalar-component),:where(.scalar-component) .rounded-lg{border-radius:var(--scalar-radius-lg)}.border:where(.scalar-component),:where(.scalar-component) .border{border-width:1px}.border-0:where(.scalar-component),:where(.scalar-component) .border-0{border-width:0px}.border-solid:where(.scalar-component),:where(.scalar-component) .border-solid{border-style:solid}.border-border:where(.scalar-component),:where(.scalar-component) .border-border{border-color:var(--scalar-border-color)}.border-error:where(.scalar-component),:where(.scalar-component) .border-error{border-color:var(--scalar-error-color)}.border-fore-3:where(.scalar-component),:where(.scalar-component) .border-fore-3{border-color:var(--scalar-color-3)}.bg-back-1:where(.scalar-component),:where(.scalar-component) .bg-back-1{background-color:var(--scalar-background-1)}.bg-back-2:where(.scalar-component),:where(.scalar-component) .bg-back-2{background-color:var(--scalar-background-2)}.bg-back-btn-1:where(.scalar-component),:where(.scalar-component) .bg-back-btn-1{background-color:var(--scalar-button-1)}.bg-backdrop:where(.scalar-component),:where(.scalar-component) .bg-backdrop{background-color:#00000070}.bg-error:where(.scalar-component),:where(.scalar-component) .bg-error{background-color:var(--scalar-error-color)}.bg-transparent:where(.scalar-component),:where(.scalar-component) .bg-transparent{background-color:transparent}.p-0:where(.scalar-component),:where(.scalar-component) .p-0{padding:0}.p-0\.5:where(.scalar-component),:where(.scalar-component) .p-0\.5{padding:2px}.p-1:where(.scalar-component),:where(.scalar-component) .p-1{padding:4px}.p-3:where(.scalar-component),:where(.scalar-component) .p-3{padding:12px}.p-5:where(.scalar-component),:where(.scalar-component) .p-5{padding:20px}.px-1:where(.scalar-component),:where(.scalar-component) .px-1{padding-left:4px;padding-right:4px}.px-3:where(.scalar-component),:where(.scalar-component) .px-3{padding-left:12px;padding-right:12px}.px-4:where(.scalar-component),:where(.scalar-component) .px-4{padding-left:16px;padding-right:16px}.px-6:where(.scalar-component),:where(.scalar-component) .px-6{padding-left:24px;padding-right:24px}.px-9:where(.scalar-component),:where(.scalar-component) .px-9{padding-left:36px;padding-right:36px}.py-1:where(.scalar-component),:where(.scalar-component) .py-1{padding-top:4px;padding-bottom:4px}.py-1\.5:where(.scalar-component),:where(.scalar-component) .py-1\.5{padding-top:6px;padding-bottom:6px}.py-3:where(.scalar-component),:where(.scalar-component) .py-3{padding-top:12px;padding-bottom:12px}.py-4:where(.scalar-component),:where(.scalar-component) .py-4{padding-top:16px;padding-bottom:16px}.pb-0:where(.scalar-component),:where(.scalar-component) .pb-0{padding-bottom:0}.pb-4:where(.scalar-component),:where(.scalar-component) .pb-4{padding-bottom:16px}.pl-9:where(.scalar-component),:where(.scalar-component) .pl-9{padding-left:36px}.pr-3:where(.scalar-component),:where(.scalar-component) .pr-3{padding-right:12px}.pt-3:where(.scalar-component),:where(.scalar-component) .pt-3{padding-top:12px}.pt-6:where(.scalar-component),:where(.scalar-component) .pt-6{padding-top:24px}.text-left:where(.scalar-component),:where(.scalar-component) .text-left{text-align:left}.text-lg:where(.scalar-component),:where(.scalar-component) .text-lg{font-size:var(--scalar-font-size-1)}.text-sm:where(.scalar-component),:where(.scalar-component) .text-sm{font-size:var(--scalar-small,var(--scalar-font-size-3))}.text-xs:where(.scalar-component),:where(.scalar-component) .text-xs{font-size:var(--scalar-mini, var(--scalar-font-size-4))}.font-bold:where(.scalar-component),:where(.scalar-component) .font-bold{font-weight:var(--scalar-font-bold)}.font-medium:where(.scalar-component),:where(.scalar-component) .font-medium{font-weight:var(--scalar-font-medium)}.font-normal:where(.scalar-component),:where(.scalar-component) .font-normal{font-weight:400}.italic:where(.scalar-component),:where(.scalar-component) .italic{font-style:italic}.text-error:where(.scalar-component),:where(.scalar-component) .text-error{color:var(--scalar-error-color)}.text-fore-1:where(.scalar-component),:where(.scalar-component) .text-fore-1{color:var(--scalar-color-1)}.text-fore-2:where(.scalar-component),:where(.scalar-component) .text-fore-2{color:var(--scalar-color-2)}.text-fore-3:where(.scalar-component),:where(.scalar-component) .text-fore-3{color:var(--scalar-color-3)}.text-fore-btn-1:where(.scalar-component),:where(.scalar-component) .text-fore-btn-1{color:var(--scalar-button-1-color)}.text-ghost:where(.scalar-component),:where(.scalar-component) .text-ghost{color:var(--scalar-color-ghost)}.text-white:where(.scalar-component),:where(.scalar-component) .text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.no-underline:where(.scalar-component),:where(.scalar-component) .no-underline{text-decoration-line:none}.opacity-0:where(.scalar-component),:where(.scalar-component) .opacity-0{opacity:0}.shadow-none:where(.scalar-component),:where(.scalar-component) .shadow-none{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm:where(.scalar-component),:where(.scalar-component) .shadow-sm{--tw-shadow: rgba(0, 0, 0, .09) 0px 1px 4px;--tw-shadow-colored: 0px 1px 4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.outline-none:where(.scalar-component),:where(.scalar-component) .outline-none{outline:2px solid transparent;outline-offset:2px}.outline:where(.scalar-component),:where(.scalar-component) .outline{outline-style:solid}.blur:where(.scalar-component),:where(.scalar-component) .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:where(.scalar-component),:where(.scalar-component) .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:where(.scalar-component),:where(.scalar-component) .transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity:where(.scalar-component),:where(.scalar-component) .transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform:where(.scalar-component),:where(.scalar-component) .transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ease-in-out:where(.scalar-component),:where(.scalar-component) .ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.row:where(.scalar-component),:where(.scalar-component) .row{display:flex;flex-direction:row}.col:where(.scalar-component),:where(.scalar-component) .col{display:flex;flex-direction:column}.before\:mr-1:before:where(.scalar-component),:where(.scalar-component) .before\:mr-1:before{content:var(--tw-content);margin-right:4px}.before\:mr-1\.5:before:where(.scalar-component),:where(.scalar-component) .before\:mr-1\.5:before{content:var(--tw-content);margin-right:6px}.before\:block:before:where(.scalar-component),:where(.scalar-component) .before\:block:before{content:var(--tw-content);display:block}.before\:h-4:before:where(.scalar-component),:where(.scalar-component) .before\:h-4:before{content:var(--tw-content);height:16px}.before\:w-4:before:where(.scalar-component),:where(.scalar-component) .before\:w-4:before{content:var(--tw-content);width:16px}.before\:bg-error:before:where(.scalar-component),:where(.scalar-component) .before\:bg-error:before{content:var(--tw-content);background-color:var(--scalar-error-color)}.before\:text-center:before:where(.scalar-component),:where(.scalar-component) .before\:text-center:before{content:var(--tw-content);text-align:center}.before\:text-xxs:before:where(.scalar-component),:where(.scalar-component) .before\:text-xxs:before{content:var(--tw-content);font-size:var(--scalar-micro, var(--scalar-font-size-5))}.before\:font-black:before:where(.scalar-component),:where(.scalar-component) .before\:font-black:before{content:var(--tw-content);font-weight:900}.before\:leading-4:before:where(.scalar-component),:where(.scalar-component) .before\:leading-4:before{content:var(--tw-content);line-height:16px}.before\:text-white:before:where(.scalar-component),:where(.scalar-component) .before\:text-white:before{content:var(--tw-content);--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.before\:content-\[\'\!\'\]:before:where(.scalar-component),:where(.scalar-component) .before\:content-\[\'\!\'\]:before{--tw-content: "!";content:var(--tw-content)}.empty\:hidden:empty:where(.scalar-component),:where(.scalar-component) .empty\:hidden:empty{display:none}.focus-within\:border-fore-1:focus-within:where(.scalar-component),:where(.scalar-component) .focus-within\:border-fore-1:focus-within{border-color:var(--scalar-color-1)}.hover\:bg-back-2:hover:where(.scalar-component),:where(.scalar-component) .hover\:bg-back-2:hover{background-color:var(--scalar-background-2)}.hover\:text-fore-1:hover:where(.scalar-component),:where(.scalar-component) .hover\:text-fore-1:hover{color:var(--scalar-color-1)}.active\:bg-back-btn-1:active:where(.scalar-component),:where(.scalar-component) .active\:bg-back-btn-1:active{background-color:var(--scalar-button-1)}.active\:text-fore-2:active:where(.scalar-component),:where(.scalar-component) .active\:text-fore-2:active{color:var(--scalar-color-2)}.active\:shadow-none:active:where(.scalar-component),:where(.scalar-component) .active\:shadow-none:active{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.active\:brightness-90:active:where(.scalar-component),:where(.scalar-component) .active\:brightness-90:active{--tw-brightness: brightness(.9);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)}.group:hover .group-hover\:text-fore-1:where(.scalar-component),:where(.scalar-component) .group:hover .group-hover\:text-fore-1{color:var(--scalar-color-1)}.has-actv-btn\:border:has(button:active):where(.scalar-component),:where(.scalar-component) .has-actv-btn\:border:has(button:active){border-width:1px}.has-actv-btn\:border-border:has(button:active):where(.scalar-component),:where(.scalar-component) .has-actv-btn\:border-border:has(button:active){border-color:var(--scalar-border-color)}.\!empty\:flex:not(:empty):where(.scalar-component),:where(.scalar-component) .\!empty\:flex:not(:empty){display:flex}.\!empty\:w-7:not(:empty):where(.scalar-component),:where(.scalar-component) .\!empty\:w-7:not(:empty){width:28px}.\!empty\:items-center:not(:empty):where(.scalar-component),:where(.scalar-component) .\!empty\:items-center:not(:empty){align-items:center}.\!empty\:pr-3:not(:empty):where(.scalar-component),:where(.scalar-component) .\!empty\:pr-3:not(:empty){padding-right:12px}.hocus\:bg-border:hover:where(.scalar-component),:where(.scalar-component) .hocus\:bg-border:hover{background-color:var(--scalar-border-color)}.hocus\:bg-hover-btn-1:hover:where(.scalar-component),:where(.scalar-component) .hocus\:bg-hover-btn-1:hover{background-color:var(--scalar-button-1-hover)}.hocus\:text-fore-2:hover:where(.scalar-component),:where(.scalar-component) .hocus\:text-fore-2:hover{color:var(--scalar-color-2)}.hocus\:brightness-90:hover:where(.scalar-component),:where(.scalar-component) .hocus\:brightness-90:hover{--tw-brightness: brightness(.9);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)}.hocus\:bg-border:focus-visible:where(.scalar-component),:where(.scalar-component) .hocus\:bg-border:focus-visible{background-color:var(--scalar-border-color)}.hocus\:bg-hover-btn-1:focus-visible:where(.scalar-component),:where(.scalar-component) .hocus\:bg-hover-btn-1:focus-visible{background-color:var(--scalar-button-1-hover)}.hocus\:text-fore-2:focus-visible:where(.scalar-component),:where(.scalar-component) .hocus\:text-fore-2:focus-visible{color:var(--scalar-color-2)}.hocus\:brightness-90:focus-visible:where(.scalar-component),:where(.scalar-component) .hocus\:brightness-90:focus-visible{--tw-brightness: brightness(.9);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)}@media (min-width: 768px){.md\:row:where(.scalar-component),:where(.scalar-component) .md\:row{display:flex;flex-direction:row}}
1089
+ .loader-wrapper:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .loader-wrapper[data-v-47faceda]{position:relative;height:var(--d6cae758);width:var(--d6cae758);display:flex;align-items:center;justify-content:center;--loader-size: 50%}.svg-loader:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .svg-loader[data-v-47faceda]{width:var(--loader-size);height:var(--loader-size);top:1rem;right:.9rem;overflow:visible;fill:none;background-color:transparent;stroke:currentColor}.svg-path:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .svg-path[data-v-47faceda]{stroke-width:14;fill:none;transition:.3s}.svg-x-mark:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .svg-x-mark[data-v-47faceda]{stroke-dasharray:57;stroke-dashoffset:57;transition-delay:0s}.svg-check-mark:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .svg-check-mark[data-v-47faceda]{stroke-dasharray:149;stroke-dashoffset:149;transition-delay:0s}.icon-is-invalid .svg-x-mark:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .icon-is-invalid .svg-x-mark[data-v-47faceda]{stroke-dashoffset:0;transition-delay:.3s}.icon-is-valid .svg-check-mark:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .icon-is-valid .svg-check-mark[data-v-47faceda]{stroke-dashoffset:0;transition-delay:.3s}.circular-loader:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .circular-loader[data-v-47faceda]{animation:rotate-47faceda .7s linear infinite,fade-in-47faceda .4s;transform-origin:center center;transform:scale(5);background:transparent}.loader-path:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .loader-path[data-v-47faceda]{stroke-dasharray:50,200;stroke-dashoffset:-100;stroke-linecap:round}.loader-path-off:where(.scalar-component[data-v-47faceda]),:where(.scalar-component) .loader-path-off[data-v-47faceda]{stroke-dasharray:50,200;stroke-dashoffset:-100;transition:opacity .3s;opacity:0}@keyframes fade-in-47faceda{0%{opacity:0}70%{opacity:0}to{opacity:1}}@keyframes rotate-47faceda{0%{transform:scale(5) rotate(0)}to{transform:scale(5) rotate(360deg)}}.scalar-codeblock-code[class*=language-]:where(.scalar-component),:where(.scalar-component) .scalar-codeblock-code[class*=language-],.scalar-codeblock-pre[class*=language-]:where(.scalar-component),:where(.scalar-component) .scalar-codeblock-pre[class*=language-]{color:var(--scalar-color-2);background:none;font-family:var(--scalar-font-code);font-size:var(--scalar-small);text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.4;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none;display:block}.scalar-codeblock-pre[class*=language-]:where(.scalar-component),:where(.scalar-component) .scalar-codeblock-pre[class*=language-]{margin:0;padding:.5rem;overflow:auto}:not(pre)>code[class*=language-]:where(.scalar-component),:where(.scalar-component) :not(pre)>code[class*=language-],.scalar-codeblock-pre[class*=language-]:where(.scalar-component),:where(.scalar-component) .scalar-codeblock-pre[class*=language-]{background:var(--scalar-background-2)}.line-numbers.scalar-codeblock-pre[class*=language-]{position:relative;padding-left:2em;counter-reset:linenumber}.line-numbers>code{position:relative;white-space:inherit}.line-numbers .line-numbers-rows{position:absolute;pointer-events:none;top:0;font-size:100%;left:-3em;width:3em;letter-spacing:-1px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.line-numbers-rows>span{display:block;counter-increment:linenumber}.line-numbers-rows>span:before{content:counter(linenumber);color:#999;display:block;padding-right:.8em;text-align:right}:not(pre)>code[class*=language-]:where(.scalar-component),:where(.scalar-component) :not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.comment:where(.scalar-component),:where(.scalar-component) .token.comment,.token.block-comment:where(.scalar-component),:where(.scalar-component) .token.block-comment,.token.prolog:where(.scalar-component),:where(.scalar-component) .token.prolog,.token.doctype:where(.scalar-component),:where(.scalar-component) .token.doctype,.token.cdata:where(.scalar-component),:where(.scalar-component) .token.cdata{color:var(--scalar-color-2)}.token.punctuation:where(.scalar-component),:where(.scalar-component) .token.punctuation{color:var(--scalar-color-3)}.token.tag:where(.scalar-component),:where(.scalar-component) .token.tag,.token.attr-name:where(.scalar-component),:where(.scalar-component) .token.attr-name,.token.namespace:where(.scalar-component),:where(.scalar-component) .token.namespace,.token.deleted:where(.scalar-component),:where(.scalar-component) .token.deleted{color:var(--scalar-color-red)}.token.function-name:where(.scalar-component),:where(.scalar-component) .token.function-name{color:var(--scalar-color-green)}.token.boolean:where(.scalar-component),:where(.scalar-component) .token.boolean,.token.number:where(.scalar-component),:where(.scalar-component) .token.number,.token.function:where(.scalar-component),:where(.scalar-component) .token.function{color:var(--scalar-color-orange)}.token.property:where(.scalar-component),:where(.scalar-component) .token.property,.token.class-name:where(.scalar-component),:where(.scalar-component) .token.class-name,.token.constant:where(.scalar-component),:where(.scalar-component) .token.constant,.token.symbol:where(.scalar-component),:where(.scalar-component) .token.symbol{color:var(--scalar-color-1)}.token.selector:where(.scalar-component),:where(.scalar-component) .token.selector,.token.important:where(.scalar-component),:where(.scalar-component) .token.important,.token.atrule:where(.scalar-component),:where(.scalar-component) .token.atrule,.token.keyword:where(.scalar-component),:where(.scalar-component) .token.keyword,.token.builtin:where(.scalar-component),:where(.scalar-component) .token.builtin{color:var(--scalar-color-purple)}.token.string:where(.scalar-component),:where(.scalar-component) .token.string,.token.char:where(.scalar-component),:where(.scalar-component) .token.char,.token.attr-value:where(.scalar-component),:where(.scalar-component) .token.attr-value,.token.regex:where(.scalar-component),:where(.scalar-component) .token.regex,.token.variable:where(.scalar-component),:where(.scalar-component) .token.variable{color:var(--scalar-color-blue)}.light-mode .dark-mode .language-shell .token.variable:where(.scalar-component),:where(.scalar-component) .light-mode .dark-mode .language-shell .token.variable{color:var(--scalar-color-1)}.light-mode .dark-mode .language-shell .token.string:where(.scalar-component),:where(.scalar-component) .light-mode .dark-mode .language-shell .token.string{color:var(--scalar-color-blue)}.language-shell .token.string:where(.scalar-component),:where(.scalar-component) .language-shell .token.string{color:var(--scalar-color-1)}.token.operator:where(.scalar-component),:where(.scalar-component) .token.operator,.token.entity:where(.scalar-component),:where(.scalar-component) .token.entity,.token.url:where(.scalar-component),:where(.scalar-component) .token.url{color:var(--scalar-color-3)}.token.important:where(.scalar-component),:where(.scalar-component) .token.important,.token.bold:where(.scalar-component),:where(.scalar-component) .token.bold{font-weight:700}.token.italic:where(.scalar-component),:where(.scalar-component) .token.italic{font-style:italic}.token.entity:where(.scalar-component),:where(.scalar-component) .token.entity{cursor:help}.token.inserted:where(.scalar-component),:where(.scalar-component) .token.inserted{color:var(--scalar-color-green)}.credentials:where(.scalar-component),:where(.scalar-component) .credentials{font-size:0;color:transparent}.credentials:after:where(.scalar-component),:where(.scalar-component) .credentials:after{content:"·····";font-size:var(--scalar-small);color:var(--scalar-color-3)}.scalar-modal-layout:where(.scalar-component[data-v-ff85ced0]),:where(.scalar-component) .scalar-modal-layout[data-v-ff85ced0]{animation:modal-fade-ff85ced0 .2s forwards}.scalar-modal:where(.scalar-component[data-v-ff85ced0]),:where(.scalar-component) .scalar-modal[data-v-ff85ced0]{transform:scale(.98);animation:modal-pop-ff85ced0 .15s .15s forwards}@keyframes modal-fade-ff85ced0{0%{opacity:0}to{opacity:1}}@keyframes modal-pop-ff85ced0{0%{opacity:0}to{opacity:1;transform:scale(1)}}.scalar-input-wrapper-focus .scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input-wrapper-focus .scalar-input-label[data-v-4fc2339e]{color:var(--scalar-color-1)}.scalar-input-wrapper-error .scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input-wrapper-error .scalar-input-label[data-v-4fc2339e]{color:var(--scalar-color-error-color)}.scalar-input::-moz-selection:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]::-moz-selection{color:var(--scalar-color-1);background:#ffa55859}.scalar-input::selection:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]::selection{color:var(--scalar-color-1);background:#ffa55859}.scalar-input:has(+.scalar-input-label):where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:has(+.scalar-input-label){opacity:0}.scalar-input:not(:-moz-placeholder-shown):where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:not(:-moz-placeholder-shown){opacity:1;-moz-transition:opacity .2s ease-in-out .15s;transition:opacity .2s ease-in-out .15s}.scalar-input:not(:placeholder-shown):where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:not(:placeholder-shown),.scalar-input-wrapper-focus .scalar-input:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input-wrapper-focus .scalar-input[data-v-4fc2339e]{opacity:1;transition:opacity .2s ease-in-out .15s}.scalar-input:-webkit-autofill:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:-webkit-autofill,.scalar-input:-webkit-autofill:hover:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:-webkit-autofill:hover,.scalar-input:-webkit-autofill:focus:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:-webkit-autofill:focus,.scalar-input:-webkit-autofill:active:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:-webkit-autofill:active,.scalar-input:focus-within:-webkit-autofill:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:focus-within:-webkit-autofill,.scalar-input:focus-within:-webkit-autofill:hover:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:focus-within:-webkit-autofill:hover,.scalar-input:focus-within:-webkit-autofill:focus:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:focus-within:-webkit-autofill:focus,.scalar-input:focus-within:-webkit-autofill:active:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input[data-v-4fc2339e]:focus-within:-webkit-autofill:active{-webkit-box-shadow:0 0 0px 1000px var(--scalar-background-1) inset!important;-webkit-text-fill-color:var(--scalar-color-1);color:var(--scalar-color-1);border-radius:var(--scalar-radius)}.scalar-input:not(:-moz-placeholder-shown)+.scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input:not(:-moz-placeholder-shown)+.scalar-input-label[data-v-4fc2339e]{transform:translate3d(0,-20px,0) scale(.8);transform-origin:top left}.scalar-input-wrapper-focus .scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input-wrapper-focus .scalar-input-label[data-v-4fc2339e],.scalar-input:not(:placeholder-shown)+.scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input:not(:placeholder-shown)+.scalar-input-label[data-v-4fc2339e]{transform:translate3d(0,-20px,0) scale(.8);transform-origin:top left}.scalar-input-wrapper-focus:has(button:active) .scalar-input-label:where(.scalar-component[data-v-4fc2339e]),:where(.scalar-component) .scalar-input-wrapper-focus:has(button:active) .scalar-input-label[data-v-4fc2339e]{color:var(--scalar-color-3)!important}:where(.scalar-component),:where(.scalar-component) *{box-sizing:border-box;border-width:0;border-style:solid;border-color:var(--scalar-border-color);font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:unset;font-weight:inherit;line-height:inherit;color:inherit;margin:unset;padding:unset}:where(.scalar-component),:where(.scalar-component) *,:before:where(.scalar-component),:where(.scalar-component) :before,:after:where(.scalar-component),:where(.scalar-component) :after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop:where(.scalar-component),:where(.scalar-component) ::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / .5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.sr-only:where(.scalar-component),:where(.scalar-component) .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none:where(.scalar-component),:where(.scalar-component) .pointer-events-none{pointer-events:none}.visible:where(.scalar-component),:where(.scalar-component) .visible{visibility:visible}.fixed:where(.scalar-component),:where(.scalar-component) .fixed{position:fixed}.absolute:where(.scalar-component),:where(.scalar-component) .absolute{position:absolute}.relative:where(.scalar-component),:where(.scalar-component) .relative{position:relative}.left-0:where(.scalar-component),:where(.scalar-component) .left-0{left:0}.top-0:where(.scalar-component),:where(.scalar-component) .top-0{top:0}.z-10:where(.scalar-component),:where(.scalar-component) .z-10{z-index:10}.z-\[1001\]:where(.scalar-component),:where(.scalar-component) .z-\[1001\]{z-index:1001}.m-0:where(.scalar-component),:where(.scalar-component) .m-0{margin:0}.mx-2:where(.scalar-component),:where(.scalar-component) .mx-2{margin-left:8px;margin-right:8px}.mx-auto:where(.scalar-component),:where(.scalar-component) .mx-auto{margin-left:auto;margin-right:auto}.my-3:where(.scalar-component),:where(.scalar-component) .my-3{margin-top:12px;margin-bottom:12px}.mb-0:where(.scalar-component),:where(.scalar-component) .mb-0{margin-bottom:0}.ml-2:where(.scalar-component),:where(.scalar-component) .ml-2{margin-left:8px}.mr-2:where(.scalar-component),:where(.scalar-component) .mr-2{margin-right:8px}.mr-3:where(.scalar-component),:where(.scalar-component) .mr-3{margin-right:12px}.mt-1:where(.scalar-component),:where(.scalar-component) .mt-1{margin-top:4px}.mt-1\.5:where(.scalar-component),:where(.scalar-component) .mt-1\.5{margin-top:6px}.mt-20:where(.scalar-component),:where(.scalar-component) .mt-20{margin-top:80px}.block:where(.scalar-component),:where(.scalar-component) .block{display:block}.flex:where(.scalar-component),:where(.scalar-component) .flex{display:flex}.grid:where(.scalar-component),:where(.scalar-component) .grid{display:grid}.contents:where(.scalar-component),:where(.scalar-component) .contents{display:contents}.hidden:where(.scalar-component),:where(.scalar-component) .hidden{display:none}.aspect-square:where(.scalar-component),:where(.scalar-component) .aspect-square{aspect-ratio:1 / 1}.h-10:where(.scalar-component),:where(.scalar-component) .h-10{height:40px}.h-3:where(.scalar-component),:where(.scalar-component) .h-3{height:12px}.h-3\.5:where(.scalar-component),:where(.scalar-component) .h-3\.5{height:14px}.h-4:where(.scalar-component),:where(.scalar-component) .h-4{height:16px}.h-5:where(.scalar-component),:where(.scalar-component) .h-5{height:20px}.h-6:where(.scalar-component),:where(.scalar-component) .h-6{height:24px}.h-8:where(.scalar-component),:where(.scalar-component) .h-8{height:32px}.h-\[100dvh\]:where(.scalar-component),:where(.scalar-component) .h-\[100dvh\]{height:100dvh}.h-full:where(.scalar-component),:where(.scalar-component) .h-full{height:100%}.max-h-\[440px\]:where(.scalar-component),:where(.scalar-component) .max-h-\[440px\]{max-height:440px}.max-h-\[calc\(100dvh-240px\)\]:where(.scalar-component),:where(.scalar-component) .max-h-\[calc\(100dvh-240px\)\]{max-height:calc(100dvh - 240px)}.min-h-\[77px\]:where(.scalar-component),:where(.scalar-component) .min-h-\[77px\]{min-height:77px}.w-10:where(.scalar-component),:where(.scalar-component) .w-10{width:40px}.w-3:where(.scalar-component),:where(.scalar-component) .w-3{width:12px}.w-3\.5:where(.scalar-component),:where(.scalar-component) .w-3\.5{width:14px}.w-4:where(.scalar-component),:where(.scalar-component) .w-4{width:16px}.w-5:where(.scalar-component),:where(.scalar-component) .w-5{width:20px}.w-6:where(.scalar-component),:where(.scalar-component) .w-6{width:24px}.w-8:where(.scalar-component),:where(.scalar-component) .w-8{width:32px}.w-\[100dvw\]:where(.scalar-component),:where(.scalar-component) .w-\[100dvw\]{width:100dvw}.w-full:where(.scalar-component),:where(.scalar-component) .w-full{width:100%}.min-w-0:where(.scalar-component),:where(.scalar-component) .min-w-0{min-width:0px}.max-w-screen-lg:where(.scalar-component),:where(.scalar-component) .max-w-screen-lg{max-width:800px}.max-w-screen-md:where(.scalar-component),:where(.scalar-component) .max-w-screen-md{max-width:640px}.max-w-screen-sm:where(.scalar-component),:where(.scalar-component) .max-w-screen-sm{max-width:540px}.max-w-screen-xs:where(.scalar-component),:where(.scalar-component) .max-w-screen-xs{max-width:480px}.flex-1:where(.scalar-component),:where(.scalar-component) .flex-1{flex:1 1 0%}.origin-top-left:where(.scalar-component),:where(.scalar-component) .origin-top-left{transform-origin:top left}.rotate-90:where(.scalar-component),:where(.scalar-component) .rotate-90{--tw-rotate: 90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.transform:where(.scalar-component),:where(.scalar-component) .transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-not-allowed:where(.scalar-component),:where(.scalar-component) .cursor-not-allowed{cursor:not-allowed}.cursor-pointer:where(.scalar-component),:where(.scalar-component) .cursor-pointer{cursor:pointer}.resize-none:where(.scalar-component),:where(.scalar-component) .resize-none{resize:none}.appearance-none:where(.scalar-component),:where(.scalar-component) .appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.flex-col:where(.scalar-component),:where(.scalar-component) .flex-col{flex-direction:column}.flex-wrap:where(.scalar-component),:where(.scalar-component) .flex-wrap{flex-wrap:wrap}.items-start:where(.scalar-component),:where(.scalar-component) .items-start{align-items:flex-start}.items-center:where(.scalar-component),:where(.scalar-component) .items-center{align-items:center}.justify-center:where(.scalar-component),:where(.scalar-component) .justify-center{justify-content:center}.justify-between:where(.scalar-component),:where(.scalar-component) .justify-between{justify-content:space-between}.gap-0:where(.scalar-component),:where(.scalar-component) .gap-0{gap:0px}.gap-0\.75:where(.scalar-component),:where(.scalar-component) .gap-0\.75{gap:3px}.gap-1:where(.scalar-component),:where(.scalar-component) .gap-1{gap:4px}.gap-2:where(.scalar-component),:where(.scalar-component) .gap-2{gap:8px}.gap-3:where(.scalar-component),:where(.scalar-component) .gap-3{gap:12px}.gap-4:where(.scalar-component),:where(.scalar-component) .gap-4{gap:16px}.divide-y>:not([hidden])~:not([hidden]):where(.scalar-component),:where(.scalar-component) .divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse: 0;border-top-width:calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px * var(--tw-divide-y-reverse))}.self-center:where(.scalar-component),:where(.scalar-component) .self-center{align-self:center}.overflow-hidden:where(.scalar-component),:where(.scalar-component) .overflow-hidden{overflow:hidden}.overflow-y-auto:where(.scalar-component),:where(.scalar-component) .overflow-y-auto{overflow-y:auto}.truncate:where(.scalar-component),:where(.scalar-component) .truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rounded:where(.scalar-component),:where(.scalar-component) .rounded{border-radius:var(--scalar-radius)}.rounded-lg:where(.scalar-component),:where(.scalar-component) .rounded-lg{border-radius:var(--scalar-radius-lg)}.border:where(.scalar-component),:where(.scalar-component) .border{border-width:1px}.border-0:where(.scalar-component),:where(.scalar-component) .border-0{border-width:0px}.border-solid:where(.scalar-component),:where(.scalar-component) .border-solid{border-style:solid}.border-border:where(.scalar-component),:where(.scalar-component) .border-border{border-color:var(--scalar-border-color)}.border-error:where(.scalar-component),:where(.scalar-component) .border-error{border-color:var(--scalar-error-color)}.border-fore-3:where(.scalar-component),:where(.scalar-component) .border-fore-3{border-color:var(--scalar-color-3)}.bg-back-1:where(.scalar-component),:where(.scalar-component) .bg-back-1{background-color:var(--scalar-background-1)}.bg-back-2:where(.scalar-component),:where(.scalar-component) .bg-back-2{background-color:var(--scalar-background-2)}.bg-back-btn-1:where(.scalar-component),:where(.scalar-component) .bg-back-btn-1{background-color:var(--scalar-button-1)}.bg-backdrop:where(.scalar-component),:where(.scalar-component) .bg-backdrop{background-color:#00000070}.bg-error:where(.scalar-component),:where(.scalar-component) .bg-error{background-color:var(--scalar-error-color)}.bg-transparent:where(.scalar-component),:where(.scalar-component) .bg-transparent{background-color:transparent}.stroke-\[0\.92\]:where(.scalar-component),:where(.scalar-component) .stroke-\[0\.92\]{stroke-width:.92}.stroke-\[0\.96\]:where(.scalar-component),:where(.scalar-component) .stroke-\[0\.96\]{stroke-width:.96}.stroke-\[0\.9\]:where(.scalar-component),:where(.scalar-component) .stroke-\[0\.9\]{stroke-width:.9}.stroke-\[1\.1\]:where(.scalar-component),:where(.scalar-component) .stroke-\[1\.1\]{stroke-width:1.1}.stroke-\[1\.2\]:where(.scalar-component),:where(.scalar-component) .stroke-\[1\.2\]{stroke-width:1.2}.stroke-\[1\.4\]:where(.scalar-component),:where(.scalar-component) .stroke-\[1\.4\]{stroke-width:1.4}.p-0:where(.scalar-component),:where(.scalar-component) .p-0{padding:0}.p-0\.5:where(.scalar-component),:where(.scalar-component) .p-0\.5{padding:2px}.p-1:where(.scalar-component),:where(.scalar-component) .p-1{padding:4px}.p-2:where(.scalar-component),:where(.scalar-component) .p-2{padding:8px}.p-3:where(.scalar-component),:where(.scalar-component) .p-3{padding:12px}.p-5:where(.scalar-component),:where(.scalar-component) .p-5{padding:20px}.px-1:where(.scalar-component),:where(.scalar-component) .px-1{padding-left:4px;padding-right:4px}.px-3:where(.scalar-component),:where(.scalar-component) .px-3{padding-left:12px;padding-right:12px}.px-4:where(.scalar-component),:where(.scalar-component) .px-4{padding-left:16px;padding-right:16px}.px-6:where(.scalar-component),:where(.scalar-component) .px-6{padding-left:24px;padding-right:24px}.px-9:where(.scalar-component),:where(.scalar-component) .px-9{padding-left:36px;padding-right:36px}.py-1:where(.scalar-component),:where(.scalar-component) .py-1{padding-top:4px;padding-bottom:4px}.py-1\.5:where(.scalar-component),:where(.scalar-component) .py-1\.5{padding-top:6px;padding-bottom:6px}.py-3:where(.scalar-component),:where(.scalar-component) .py-3{padding-top:12px;padding-bottom:12px}.py-4:where(.scalar-component),:where(.scalar-component) .py-4{padding-top:16px;padding-bottom:16px}.pb-0:where(.scalar-component),:where(.scalar-component) .pb-0{padding-bottom:0}.pb-4:where(.scalar-component),:where(.scalar-component) .pb-4{padding-bottom:16px}.pl-9:where(.scalar-component),:where(.scalar-component) .pl-9{padding-left:36px}.pr-3:where(.scalar-component),:where(.scalar-component) .pr-3{padding-right:12px}.pt-3:where(.scalar-component),:where(.scalar-component) .pt-3{padding-top:12px}.pt-6:where(.scalar-component),:where(.scalar-component) .pt-6{padding-top:24px}.text-left:where(.scalar-component),:where(.scalar-component) .text-left{text-align:left}.font-code:where(.scalar-component),:where(.scalar-component) .font-code{font-family:var(--scalar-font-code)}.text-lg:where(.scalar-component),:where(.scalar-component) .text-lg{font-size:var(--scalar-font-size-1)}.text-sm:where(.scalar-component),:where(.scalar-component) .text-sm{font-size:var(--scalar-small,var(--scalar-font-size-3))}.text-xs:where(.scalar-component),:where(.scalar-component) .text-xs{font-size:var(--scalar-mini, var(--scalar-font-size-4))}.font-bold:where(.scalar-component),:where(.scalar-component) .font-bold{font-weight:var(--scalar-font-bold)}.font-medium:where(.scalar-component),:where(.scalar-component) .font-medium{font-weight:var(--scalar-font-medium)}.font-normal:where(.scalar-component),:where(.scalar-component) .font-normal{font-weight:400}.italic:where(.scalar-component),:where(.scalar-component) .italic{font-style:italic}.text-error:where(.scalar-component),:where(.scalar-component) .text-error{color:var(--scalar-error-color)}.text-fore-1:where(.scalar-component),:where(.scalar-component) .text-fore-1{color:var(--scalar-color-1)}.text-fore-2:where(.scalar-component),:where(.scalar-component) .text-fore-2{color:var(--scalar-color-2)}.text-fore-3:where(.scalar-component),:where(.scalar-component) .text-fore-3{color:var(--scalar-color-3)}.text-fore-btn-1:where(.scalar-component),:where(.scalar-component) .text-fore-btn-1{color:var(--scalar-button-1-color)}.text-ghost:where(.scalar-component),:where(.scalar-component) .text-ghost{color:var(--scalar-color-ghost)}.text-white:where(.scalar-component),:where(.scalar-component) .text-white{--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.no-underline:where(.scalar-component),:where(.scalar-component) .no-underline{text-decoration-line:none}.opacity-0:where(.scalar-component),:where(.scalar-component) .opacity-0{opacity:0}.shadow-none:where(.scalar-component),:where(.scalar-component) .shadow-none{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.shadow-sm:where(.scalar-component),:where(.scalar-component) .shadow-sm{--tw-shadow: rgba(0, 0, 0, .09) 0px 1px 4px;--tw-shadow-colored: 0px 1px 4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.outline-none:where(.scalar-component),:where(.scalar-component) .outline-none{outline:2px solid transparent;outline-offset:2px}.outline:where(.scalar-component),:where(.scalar-component) .outline{outline-style:solid}.blur:where(.scalar-component),:where(.scalar-component) .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:where(.scalar-component),:where(.scalar-component) .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:where(.scalar-component),:where(.scalar-component) .transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-opacity:where(.scalar-component),:where(.scalar-component) .transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.transition-transform:where(.scalar-component),:where(.scalar-component) .transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.ease-in-out:where(.scalar-component),:where(.scalar-component) .ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.row:where(.scalar-component),:where(.scalar-component) .row{display:flex;flex-direction:row}.col:where(.scalar-component),:where(.scalar-component) .col{display:flex;flex-direction:column}.before\:mr-1:before:where(.scalar-component),:where(.scalar-component) .before\:mr-1:before{content:var(--tw-content);margin-right:4px}.before\:mr-1\.5:before:where(.scalar-component),:where(.scalar-component) .before\:mr-1\.5:before{content:var(--tw-content);margin-right:6px}.before\:block:before:where(.scalar-component),:where(.scalar-component) .before\:block:before{content:var(--tw-content);display:block}.before\:h-4:before:where(.scalar-component),:where(.scalar-component) .before\:h-4:before{content:var(--tw-content);height:16px}.before\:w-4:before:where(.scalar-component),:where(.scalar-component) .before\:w-4:before{content:var(--tw-content);width:16px}.before\:bg-error:before:where(.scalar-component),:where(.scalar-component) .before\:bg-error:before{content:var(--tw-content);background-color:var(--scalar-error-color)}.before\:text-center:before:where(.scalar-component),:where(.scalar-component) .before\:text-center:before{content:var(--tw-content);text-align:center}.before\:text-xxs:before:where(.scalar-component),:where(.scalar-component) .before\:text-xxs:before{content:var(--tw-content);font-size:var(--scalar-micro, var(--scalar-font-size-5))}.before\:font-black:before:where(.scalar-component),:where(.scalar-component) .before\:font-black:before{content:var(--tw-content);font-weight:900}.before\:leading-4:before:where(.scalar-component),:where(.scalar-component) .before\:leading-4:before{content:var(--tw-content);line-height:16px}.before\:text-white:before:where(.scalar-component),:where(.scalar-component) .before\:text-white:before{content:var(--tw-content);--tw-text-opacity: 1;color:rgb(255 255 255 / var(--tw-text-opacity))}.before\:content-\[\'\!\'\]:before:where(.scalar-component),:where(.scalar-component) .before\:content-\[\'\!\'\]:before{--tw-content: "!";content:var(--tw-content)}.empty\:hidden:empty:where(.scalar-component),:where(.scalar-component) .empty\:hidden:empty{display:none}.focus-within\:border-fore-1:focus-within:where(.scalar-component),:where(.scalar-component) .focus-within\:border-fore-1:focus-within{border-color:var(--scalar-color-1)}.hover\:bg-back-2:hover:where(.scalar-component),:where(.scalar-component) .hover\:bg-back-2:hover{background-color:var(--scalar-background-2)}.hover\:text-fore-1:hover:where(.scalar-component),:where(.scalar-component) .hover\:text-fore-1:hover{color:var(--scalar-color-1)}.active\:bg-back-btn-1:active:where(.scalar-component),:where(.scalar-component) .active\:bg-back-btn-1:active{background-color:var(--scalar-button-1)}.active\:text-fore-2:active:where(.scalar-component),:where(.scalar-component) .active\:text-fore-2:active{color:var(--scalar-color-2)}.active\:shadow-none:active:where(.scalar-component),:where(.scalar-component) .active\:shadow-none:active{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)}.active\:brightness-90:active:where(.scalar-component),:where(.scalar-component) .active\:brightness-90:active{--tw-brightness: brightness(.9);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)}.group:hover .group-hover\:text-fore-1:where(.scalar-component),:where(.scalar-component) .group:hover .group-hover\:text-fore-1{color:var(--scalar-color-1)}.has-actv-btn\:border:has(button:active):where(.scalar-component),:where(.scalar-component) .has-actv-btn\:border:has(button:active){border-width:1px}.has-actv-btn\:border-border:has(button:active):where(.scalar-component),:where(.scalar-component) .has-actv-btn\:border-border:has(button:active){border-color:var(--scalar-border-color)}.\!empty\:flex:not(:empty):where(.scalar-component),:where(.scalar-component) .\!empty\:flex:not(:empty){display:flex}.\!empty\:w-7:not(:empty):where(.scalar-component),:where(.scalar-component) .\!empty\:w-7:not(:empty){width:28px}.\!empty\:items-center:not(:empty):where(.scalar-component),:where(.scalar-component) .\!empty\:items-center:not(:empty){align-items:center}.\!empty\:pr-3:not(:empty):where(.scalar-component),:where(.scalar-component) .\!empty\:pr-3:not(:empty){padding-right:12px}.hocus\:bg-border:hover:where(.scalar-component),:where(.scalar-component) .hocus\:bg-border:hover{background-color:var(--scalar-border-color)}.hocus\:bg-hover-btn-1:hover:where(.scalar-component),:where(.scalar-component) .hocus\:bg-hover-btn-1:hover{background-color:var(--scalar-button-1-hover)}.hocus\:text-fore-2:hover:where(.scalar-component),:where(.scalar-component) .hocus\:text-fore-2:hover{color:var(--scalar-color-2)}.hocus\:brightness-90:hover:where(.scalar-component),:where(.scalar-component) .hocus\:brightness-90:hover{--tw-brightness: brightness(.9);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)}.hocus\:bg-border:focus-visible:where(.scalar-component),:where(.scalar-component) .hocus\:bg-border:focus-visible{background-color:var(--scalar-border-color)}.hocus\:bg-hover-btn-1:focus-visible:where(.scalar-component),:where(.scalar-component) .hocus\:bg-hover-btn-1:focus-visible{background-color:var(--scalar-button-1-hover)}.hocus\:text-fore-2:focus-visible:where(.scalar-component),:where(.scalar-component) .hocus\:text-fore-2:focus-visible{color:var(--scalar-color-2)}.hocus\:brightness-90:focus-visible:where(.scalar-component),:where(.scalar-component) .hocus\:brightness-90:focus-visible{--tw-brightness: brightness(.9);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)}@media (min-width: 768px){.md\:row:where(.scalar-component),:where(.scalar-component) .md\:row{display:flex;flex-direction:row}}
1090
1090
 
1091
1091
  .badge[data-v-190574ac] {
1092
1092
  color: var(--scalar-color-2);