graphtrack 0.1.1 → 0.1.2
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/README.md +5 -0
- package/dist/graph.js +9 -8
- package/dist/graph.js.map +1 -1
- package/package.json +3 -2
- package/public/images/icon.svg +1 -0
- package/public/index.html +819 -102
package/README.md
CHANGED
|
@@ -63,6 +63,10 @@ npx graphtrack --port 3000
|
|
|
63
63
|
| **Chronological Graph** | Turn-by-turn chain: each prompt links to the tools it triggered, ordered in time |
|
|
64
64
|
| **Table** | Sortable per-tool and per-turn tables with color-coded token bars |
|
|
65
65
|
|
|
66
|
+
### Session picker
|
|
67
|
+
|
|
68
|
+
A searchable dropdown groups sessions by project — type to filter by ID or project name, then click to load.
|
|
69
|
+
|
|
66
70
|
### What gets tracked
|
|
67
71
|
|
|
68
72
|
- **Input / output / cache tokens** per session, per turn, and per tool call
|
|
@@ -94,6 +98,7 @@ src/
|
|
|
94
98
|
|
|
95
99
|
public/
|
|
96
100
|
index.html Dashboard UI (4 views, vanilla JS)
|
|
101
|
+
images/ Icon and assets
|
|
97
102
|
|
|
98
103
|
test/
|
|
99
104
|
parser.test.ts Unit tests for parser, aggregation, and graph builders
|
package/dist/graph.js
CHANGED
|
@@ -14,17 +14,18 @@ export function spreadTokens(session) {
|
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
|
-
/** Consistent color per tool name, tuned for a dark canvas. */
|
|
17
|
+
/** Consistent color per tool name, tuned for a dark canvas. Bright & vivid. */
|
|
18
18
|
const TOOL_COLORS = {
|
|
19
19
|
Bash: "#faff69",
|
|
20
|
-
Read: "#
|
|
21
|
-
Edit: "#
|
|
22
|
-
Grep: "#
|
|
23
|
-
Glob: "#
|
|
24
|
-
WebSearch: "#
|
|
20
|
+
Read: "#60a5fa",
|
|
21
|
+
Edit: "#4ade80",
|
|
22
|
+
Grep: "#f87171",
|
|
23
|
+
Glob: "#c084fc",
|
|
24
|
+
WebSearch: "#fbbf24",
|
|
25
25
|
Task: "#22d3ee",
|
|
26
26
|
Write: "#34d399",
|
|
27
|
-
|
|
27
|
+
Agent: "#fb923c",
|
|
28
|
+
default: "#94a3b8",
|
|
28
29
|
};
|
|
29
30
|
export function toolColor(name) {
|
|
30
31
|
return TOOL_COLORS[name] ?? TOOL_COLORS.default;
|
|
@@ -104,7 +105,7 @@ export function buildChronologicalGraph(session) {
|
|
|
104
105
|
nodes.push({
|
|
105
106
|
id: callId,
|
|
106
107
|
label: call.name,
|
|
107
|
-
value:
|
|
108
|
+
value: 2.5,
|
|
108
109
|
color: { background: toolColor(call.name), border: "#ffffff" },
|
|
109
110
|
group: "tool",
|
|
110
111
|
title: `${call.name} ${call.summary}`,
|
package/dist/graph.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"graph.js","sourceRoot":"","sources":["../src/graph.ts"],"names":[],"mappings":"AAaA;;;;;GAKG;AACH,MAAM,UAAU,YAAY,CAAC,OAAgB;IAC3C,KAAK,MAAM,IAAI,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;QACjC,IAAI,IAAI,CAAC,SAAS,CAAC,MAAM,IAAI,IAAI,CAAC,WAAW,GAAG,CAAC,EAAE,CAAC;YAClD,MAAM,KAAK,GAAG,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC;YACvD,KAAK,MAAM,IAAI,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;gBAClC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACvC,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC;AAoBD,+
|
|
1
|
+
{"version":3,"file":"graph.js","sourceRoot":"","sources":["../src/graph.ts"],"names":[],"mappings":"AAaA;;;;;GAKG;AACH,MAAM,UAAU,YAAY,CAAC,OAAgB;IAC3C,KAAK,MAAM,IAAI,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;QACjC,IAAI,IAAI,CAAC,SAAS,CAAC,MAAM,IAAI,IAAI,CAAC,WAAW,GAAG,CAAC,EAAE,CAAC;YAClD,MAAM,KAAK,GAAG,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC,MAAM,CAAC;YACvD,KAAK,MAAM,IAAI,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;gBAClC,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;YACvC,CAAC;QACH,CAAC;IACH,CAAC;AACH,CAAC;AAoBD,+EAA+E;AAC/E,MAAM,WAAW,GAA2B;IAC1C,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,SAAS;IACf,SAAS,EAAE,SAAS;IACpB,IAAI,EAAE,SAAS;IACf,KAAK,EAAE,SAAS;IAChB,KAAK,EAAE,SAAS;IAChB,OAAO,EAAE,SAAS;CACnB,CAAC;AAEF,MAAM,UAAU,SAAS,CAAC,IAAY;IACpC,OAAO,WAAW,CAAC,IAAI,CAAC,IAAI,WAAW,CAAC,OAAO,CAAC;AAClD,CAAC;AAED,2EAA2E;AAC3E,SAAS,KAAK,CAAC,KAAa;IAC1B,OAAO,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC;AAC/B,CAAC;AAED,2FAA2F;AAC3F,MAAM,UAAU,iBAAiB,CAC/B,KAA6D,EAC7D,SAAiB,EACjB,SAAS,GAAG,cAAc;IAE1B,MAAM,KAAK,GAAc,EAAE,CAAC;IAC5B,MAAM,KAAK,GAAc,EAAE,CAAC;IAE5B,KAAK,CAAC,IAAI,CAAC;QACT,EAAE,EAAE,SAAS;QACb,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,CAAC;QACR,KAAK,EAAE,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE;QACnD,KAAK,EAAE,SAAS;QAChB,KAAK,EAAE,SAAS;KACjB,CAAC,CAAC;IAEH,MAAM,MAAM,GAAG,CAAC,GAAG,KAAK,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,GAAG,CAAC,CAAC,WAAW,CAAC,CAAC;IACxE,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE,GAAG,CAAC,GAAG,KAAK,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC;IACvE,KAAK,MAAM,CAAC,IAAI,MAAM,EAAE,CAAC;QACvB,MAAM,EAAE,GAAG,QAAQ,CAAC,CAAC,IAAI,EAAE,CAAC;QAC5B,KAAK,CAAC,IAAI,CAAC;YACT,EAAE;YACF,KAAK,EAAE,GAAG,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,KAAK,OAAO,GAAG,CAAC,CAAC,CAAC,WAAW,CAAC,EAAE;YACvD,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,WAAW,GAAG,SAAS,CAAC;YAC1C,KAAK,EAAE,EAAE,UAAU,EAAE,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE;YAC3D,KAAK,EAAE,MAAM;YACb,KAAK,EAAE,GAAG,CAAC,CAAC,IAAI,KAAK,CAAC,CAAC,KAAK,WAAW,GAAG,CAAC,CAAC,CAAC,WAAW,CAAC,SAAS;SACnE,CAAC,CAAC;QACH,KAAK,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,WAAW,GAAG,SAAS,CAAC,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC,IAAI,KAAK,GAAG,CAAC,CAAC,CAAC,WAAW,CAAC,EAAE,EAAE,CAAC,CAAC;IACjI,CAAC;IAED,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC;AAC1B,CAAC;AAED,oDAAoD;AACpD,MAAM,UAAU,mBAAmB,CAAC,OAAgB;IAClD,iEAAiE;IACjE,MAAM,MAAM,GAAG,IAAI,GAAG,EAAgE,CAAC;IACvF,KAAK,MAAM,IAAI,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;QACjC,KAAK,MAAM,IAAI,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;YAClC,MAAM,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,CAAC,EAAE,WAAW,EAAE,CAAC,EAAE,CAAC;YACrF,KAAK,CAAC,KAAK,IAAI,CAAC,CAAC;YACjB,KAAK,CAAC,WAAW,IAAI,IAAI,CAAC,WAAW,IAAI,CAAC,CAAC;YAC3C,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;QAC/B,CAAC;IACH,CAAC;IAED,OAAO,iBAAiB,CACtB,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC,EACpB,GAAG,OAAO,CAAC,OAAO,KAAK,OAAO,CAAC,KAAK,CAAC,MAAM,YAAY,GAAG,CAAC,OAAO,CAAC,WAAW,CAAC,MAAM,EACrF,cAAc,CACf,CAAC;AACJ,CAAC;AAED,8EAA8E;AAC9E,MAAM,UAAU,uBAAuB,CAAC,OAAgB;IACtD,MAAM,KAAK,GAAc,EAAE,CAAC;IAC5B,MAAM,KAAK,GAAc,EAAE,CAAC;IAE5B,KAAK,CAAC,IAAI,CAAC;QACT,EAAE,EAAE,SAAS;QACb,KAAK,EAAE,OAAO,CAAC,OAAO;QACtB,KAAK,EAAE,CAAC;QACR,KAAK,EAAE,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE;QACnD,KAAK,EAAE,SAAS;KACjB,CAAC,CAAC;IAEH,IAAI,UAAU,GAAG,SAAS,CAAC;IAC3B,KAAK,MAAM,IAAI,IAAI,OAAO,CAAC,KAAK,EAAE,CAAC;QACjC,MAAM,MAAM,GAAG,QAAQ,IAAI,CAAC,KAAK,EAAE,CAAC;QACpC,KAAK,CAAC,IAAI,CAAC;YACT,EAAE,EAAE,MAAM;YACV,KAAK,EAAE,QAAQ,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC;YAChC,KAAK,EAAE,GAAG;YACV,KAAK,EAAE,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,EAAE,SAAS,EAAE;YACnD,KAAK,EAAE,MAAM;YACb,KAAK,EAAE,QAAQ,IAAI,CAAC,KAAK,GAAG,CAAC,KAAK,IAAI,CAAC,MAAM,EAAE;SAChD,CAAC,CAAC;QACH,KAAK,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,UAAU,EAAE,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC;QAErE,+BAA+B;QAC/B,KAAK,MAAM,IAAI,IAAI,IAAI,CAAC,SAAS,EAAE,CAAC;YAClC,MAAM,MAAM,GAAG,GAAG,MAAM,IAAI,IAAI,CAAC,EAAE,EAAE,CAAC;YACtC,KAAK,CAAC,IAAI,CAAC;gBACT,EAAE,EAAE,MAAM;gBACV,KAAK,EAAE,IAAI,CAAC,IAAI;gBAChB,KAAK,EAAE,GAAG;gBACV,KAAK,EAAE,EAAE,UAAU,EAAE,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE;gBAC9D,KAAK,EAAE,MAAM;gBACb,KAAK,EAAE,GAAG,IAAI,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,EAAE;aACtC,CAAC,CAAC;YACH,KAAK,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC,CAAC;QACnE,CAAC;QACD,UAAU,GAAG,MAAM,CAAC;IACtB,CAAC;IAED,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC;AAC1B,CAAC;AAED,SAAS,GAAG,CAAC,CAAS;IACpB,IAAI,CAAC,IAAI,SAAS;QAAE,OAAO,GAAG,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC;IAC5D,IAAI,CAAC,IAAI,KAAK;QAAE,OAAO,GAAG,CAAC,CAAC,GAAG,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC;IACpD,OAAO,MAAM,CAAC,CAAC,CAAC,CAAC;AACnB,CAAC;AAED,SAAS,QAAQ,CAAC,CAAS,EAAE,CAAS;IACpC,OAAO,CAAC,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,GAAG,CAAC,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;AACpD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphtrack",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Visualize Claude Code token usage as an interactive graph. Local-first, open source, your logs never leave your machine.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"dist",
|
|
20
|
-
"public/index.html"
|
|
20
|
+
"public/index.html",
|
|
21
|
+
"public/images"
|
|
21
22
|
],
|
|
22
23
|
"keywords": [
|
|
23
24
|
"claude-code",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="600" height="600" viewBox="0 0 600 600"><foreignObject width="100%" height="100%" x="0" y="0" externalResourcesRequired="true"><div xmlns="http://www.w3.org/1999/xhtml" class="bg-transparent w-screen max-w-full aspect-square md:w-[350px] md:h-[350px] lg:w-[400px] lg:h-[400px] xl:w-[600px] xl:h-[600px]" style="accent-color: auto; place-content: normal; place-items: normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: 1 / 1; backdrop-filter: none; backface-visibility: visible; background: none 0% 0% / auto repeat scroll padding-box border-box transparent; background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: 600px; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-radius: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-decoration-break: slice; box-shadow: none; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; d: none; direction: ltr; display: block; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: 600px; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: 600px; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: 100%; max-width: 100%; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: visible; overflow-clip-margin: 0px; overflow-inline: visible; overflow-wrap: normal; overflow: visible; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 61px; padding: 61px; padding-inline: 61px; paint-order: normal; perspective: none; perspective-origin: 300px 300px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: auto; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: none; stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform: none; transform-box: view-box; transform-origin: 300px 300px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: isolate; user-select: auto; vector-effect: none; vertical-align: baseline; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: 600px; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 0px; y: 0px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;"><div style="background: none 0% 0% / auto repeat scroll padding-box border-box rgb(243, 213, 9); border-radius: 130px; accent-color: auto; place-content: normal center; place-items: center normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: 1 / 1; backdrop-filter: none; backface-visibility: visible; background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: 478px; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-collapse: separate; border-end-end-radius: 130px; border-end-start-radius: 130px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 130px; border-start-start-radius: 130px; inset: auto; box-decoration-break: slice; box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; d: none; direction: ltr; display: flex; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: 478px; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: 478px; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: hidden; overflow-clip-margin: 0px; overflow-inline: hidden; overflow-wrap: normal; overflow: hidden; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 0px; padding: 0px; padding-inline: 0px; paint-order: normal; perspective: none; perspective-origin: 239px 239px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: auto; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: none; stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform: none; transform-box: view-box; transform-origin: 239px 239px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: isolate; user-select: auto; vector-effect: none; vertical-align: baseline; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: 478px; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 0px; y: 0px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;" class="w-full aspect-square overflow-hidden flex justify-center items-center shadow-none"><span style="transform: matrix(0.891007, -0.45399, 0.45399, 0.891007, 0, 0); accent-color: auto; place-content: normal; place-items: normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: auto; backdrop-filter: none; backface-visibility: visible; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: 361px; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-radius: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-decoration-break: slice; box-shadow: none; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; d: none; direction: ltr; display: block; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(0, 0, 0); fill-opacity: 1; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: 361px; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: 361px; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: auto; min-height: auto; min-inline-size: auto; min-width: auto; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: visible; overflow-clip-margin: 0px; overflow-inline: visible; overflow-wrap: normal; overflow: visible; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 0px; padding: 0px; padding-inline: 0px; paint-order: normal; perspective: none; perspective-origin: 180.5px 180.5px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: auto; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: none; stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform-box: view-box; transform-origin: 180.5px 180.5px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: normal; user-select: auto; vector-effect: none; vertical-align: baseline; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: 361px; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 0px; y: 0px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;"><svg xmlns="http://www.w3.org/2000/svg" width="361" height="361" viewBox="0 0 24 24" fill="rgba(192, 116, 3, 1)" stroke="rgb(67, 68, 56)" stroke-width="1.42" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-slack" fill-opacity="0.9" style="accent-color: auto; place-content: normal; place-items: normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: auto; backdrop-filter: none; backface-visibility: visible; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: 361px; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-radius: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-decoration-break: slice; box-shadow: none; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; d: none; direction: ltr; display: block; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(192, 116, 3); fill-opacity: 0.9; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: 361px; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: 361px; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: hidden; overflow-clip-margin: content-box; overflow-inline: hidden; overflow-wrap: normal; overflow: hidden; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 0px; padding: 0px; padding-inline: 0px; paint-order: normal; perspective: none; perspective-origin: 180.5px 180.5px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: auto; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: rgb(67, 68, 56); stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1.42px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform: none; transform-box: view-box; transform-origin: 180.5px 180.5px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: normal; user-select: auto; vector-effect: none; vertical-align: middle; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: 361px; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 0px; y: 0px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;"><rect width="3" height="8" x="13" y="2" rx="1.5" style="accent-color: auto; place-content: normal; place-items: normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: auto; backdrop-filter: none; backface-visibility: visible; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: 8px; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-radius: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-decoration-break: slice; box-shadow: none; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; d: none; direction: ltr; display: inline; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(192, 116, 3); fill-opacity: 0.9; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: 8px; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: 3px; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: visible; overflow-clip-margin: 0px; overflow-inline: visible; overflow-wrap: normal; overflow: visible; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 0px; padding: 0px; padding-inline: 0px; paint-order: normal; perspective: none; perspective-origin: 0px 0px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: 1.5px; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: rgb(67, 68, 56); stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1.42px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform: none; transform-box: view-box; transform-origin: 0px 0px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: normal; user-select: auto; vector-effect: none; vertical-align: baseline; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: 3px; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 13px; y: 2px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;"/><path d="M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5" style="accent-color: auto; place-content: normal; place-items: normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: auto; backdrop-filter: none; backface-visibility: visible; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: auto; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-radius: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-decoration-break: slice; box-shadow: none; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; direction: ltr; display: inline; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(192, 116, 3); fill-opacity: 0.9; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: auto; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: auto; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: visible; overflow-clip-margin: 0px; overflow-inline: visible; overflow-wrap: normal; overflow: visible; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 0px; padding: 0px; padding-inline: 0px; paint-order: normal; perspective: none; perspective-origin: 0px 0px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: auto; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: rgb(67, 68, 56); stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1.42px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform: none; transform-box: view-box; transform-origin: 0px 0px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: normal; user-select: auto; vector-effect: none; vertical-align: baseline; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: auto; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 0px; y: 0px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;"/><rect width="3" height="8" x="8" y="14" rx="1.5" style="accent-color: auto; place-content: normal; place-items: normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: auto; backdrop-filter: none; backface-visibility: visible; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: 8px; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-radius: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-decoration-break: slice; box-shadow: none; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; d: none; direction: ltr; display: inline; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(192, 116, 3); fill-opacity: 0.9; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: 8px; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: 3px; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: visible; overflow-clip-margin: 0px; overflow-inline: visible; overflow-wrap: normal; overflow: visible; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 0px; padding: 0px; padding-inline: 0px; paint-order: normal; perspective: none; perspective-origin: 0px 0px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: 1.5px; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: rgb(67, 68, 56); stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1.42px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform: none; transform-box: view-box; transform-origin: 0px 0px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: normal; user-select: auto; vector-effect: none; vertical-align: baseline; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: 3px; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 8px; y: 14px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;"/><path d="M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5" style="accent-color: auto; place-content: normal; place-items: normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: auto; backdrop-filter: none; backface-visibility: visible; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: auto; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-radius: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-decoration-break: slice; box-shadow: none; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; direction: ltr; display: inline; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(192, 116, 3); fill-opacity: 0.9; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: auto; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: auto; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: visible; overflow-clip-margin: 0px; overflow-inline: visible; overflow-wrap: normal; overflow: visible; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 0px; padding: 0px; padding-inline: 0px; paint-order: normal; perspective: none; perspective-origin: 0px 0px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: auto; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: rgb(67, 68, 56); stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1.42px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform: none; transform-box: view-box; transform-origin: 0px 0px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: normal; user-select: auto; vector-effect: none; vertical-align: baseline; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: auto; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 0px; y: 0px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;"/><rect width="8" height="3" x="14" y="13" rx="1.5" style="accent-color: auto; place-content: normal; place-items: normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: auto; backdrop-filter: none; backface-visibility: visible; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: 3px; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-radius: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-decoration-break: slice; box-shadow: none; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; d: none; direction: ltr; display: inline; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(192, 116, 3); fill-opacity: 0.9; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: 3px; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: 8px; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: visible; overflow-clip-margin: 0px; overflow-inline: visible; overflow-wrap: normal; overflow: visible; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 0px; padding: 0px; padding-inline: 0px; paint-order: normal; perspective: none; perspective-origin: 0px 0px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: 1.5px; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: rgb(67, 68, 56); stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1.42px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform: none; transform-box: view-box; transform-origin: 0px 0px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: normal; user-select: auto; vector-effect: none; vertical-align: baseline; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: 8px; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 14px; y: 13px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;"/><path d="M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5" style="accent-color: auto; place-content: normal; place-items: normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: auto; backdrop-filter: none; backface-visibility: visible; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: auto; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-radius: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-decoration-break: slice; box-shadow: none; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; direction: ltr; display: inline; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(192, 116, 3); fill-opacity: 0.9; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: auto; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: auto; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: visible; overflow-clip-margin: 0px; overflow-inline: visible; overflow-wrap: normal; overflow: visible; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 0px; padding: 0px; padding-inline: 0px; paint-order: normal; perspective: none; perspective-origin: 0px 0px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: auto; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: rgb(67, 68, 56); stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1.42px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform: none; transform-box: view-box; transform-origin: 0px 0px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: normal; user-select: auto; vector-effect: none; vertical-align: baseline; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: auto; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 0px; y: 0px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;"/><rect width="8" height="3" x="2" y="8" rx="1.5" style="accent-color: auto; place-content: normal; place-items: normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: auto; backdrop-filter: none; backface-visibility: visible; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: 3px; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-radius: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-decoration-break: slice; box-shadow: none; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; d: none; direction: ltr; display: inline; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(192, 116, 3); fill-opacity: 0.9; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: 3px; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: 8px; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: visible; overflow-clip-margin: 0px; overflow-inline: visible; overflow-wrap: normal; overflow: visible; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 0px; padding: 0px; padding-inline: 0px; paint-order: normal; perspective: none; perspective-origin: 0px 0px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: 1.5px; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: rgb(67, 68, 56); stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1.42px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform: none; transform-box: view-box; transform-origin: 0px 0px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: normal; user-select: auto; vector-effect: none; vertical-align: baseline; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: 8px; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 2px; y: 8px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;"/><path d="M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5" style="accent-color: auto; place-content: normal; place-items: normal; place-self: auto; alignment-baseline: auto; anchor-name: none; anchor-scope: none; animation-composition: replace; animation: 0s ease 0s 1 normal none running none; animation-trigger: none; app-region: none; appearance: none; aspect-ratio: auto; backdrop-filter: none; backface-visibility: visible; background: none 0% 0% / auto repeat scroll padding-box border-box rgba(0, 0, 0, 0); background-blend-mode: normal; baseline-shift: 0px; baseline-source: auto; block-size: auto; border-block: 0px solid rgb(229, 231, 235); border: 0px solid rgb(229, 231, 235); border-radius: 0px; border-collapse: separate; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline: 0px solid rgb(229, 231, 235); border-shape: none; border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-decoration-break: slice; box-shadow: none; box-sizing: border-box; break-after: auto; break-before: auto; break-inside: auto; buffered-rendering: auto; caption-side: top; caret-animation: auto; caret-color: rgba(48, 48, 48, 0.8); caret-shape: auto; clear: none; clip: auto; clip-path: none; clip-rule: nonzero; color: rgba(48, 48, 48, 0.8); color-interpolation: srgb; color-interpolation-filters: linearrgb; color-rendering: auto; color-scheme: light; columns: auto; column-fill: balance; gap: normal; rule-break: normal; rule: 2.4px rgba(48, 48, 48, 0.8); rule-inset: 0px; rule-visibility-items: normal; column-span: none; contain: none; contain-intrinsic-block-size: none; contain-intrinsic-size: none; contain-intrinsic-inline-size: none; container: none; content: normal; content-visibility: visible; corner-shape: superellipse(1); corner-block-end-shape: superellipse(1); corner-block-start-shape: superellipse(1); counter-increment: none; counter-reset: none; counter-set: none; cursor: auto; cx: 0px; cy: 0px; direction: ltr; display: inline; dominant-baseline: auto; dynamic-range-limit: no-limit; empty-cells: show; field-sizing: fixed; fill: rgb(192, 116, 3); fill-opacity: 0.9; fill-rule: nonzero; filter: none; flex: 0 1 auto; flex-flow: row; flex-line-count: 1; float: none; flood-color: rgb(0, 0, 0); flood-opacity: 1; font: 400 15.9px / 24px __Space_Grotesk_dd5b2f, __Space_Grotesk_Fallback_dd5b2f; font-palette: normal; font-synthesis: weight style small-caps; forced-color-adjust: auto; grid: none; grid-area: auto; height: auto; hyphenate-character: auto; hyphenate-limit-chars: auto; hyphens: manual; image-orientation: from-image; image-rendering: auto; initial-letter: normal; inline-size: auto; inset-block: auto; inset-inline: auto; interactivity: auto; interest-delay: normal; interpolate-size: numeric-only; isolation: auto; letter-spacing: normal; lighting-color: rgb(255, 255, 255); line-break: auto; list-style: outside none disc; margin-block: 0px; margin: 0px; margin-inline: 0px; marker: none; mask: none; mask-type: luminance; math-depth: 0; math-shift: normal; math-style: normal; max-block-size: none; max-height: none; max-inline-size: none; max-width: none; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; mix-blend-mode: normal; object-fit: fill; object-position: 50% 50%; object-view-box: none; offset: normal; opacity: 1; order: 0; orphans: 2; outline: rgba(48, 48, 48, 0.8) none 2.4px; outline-offset: 0px; overflow-anchor: auto; overflow-block: visible; overflow-clip-margin: 0px; overflow-inline: visible; overflow-wrap: normal; overflow: visible; overlay: none; overscroll-behavior-block: auto; overscroll-behavior-inline: auto; overscroll-behavior: auto; padding-block: 0px; padding: 0px; padding-inline: 0px; paint-order: normal; perspective: none; perspective-origin: 0px 0px; pointer-events: auto; position: static; position-anchor: normal; position-area: none; position-try: none; position-visibility: anchors-visible; print-color-adjust: economy; quotes: auto; r: 0px; reading-flow: normal; reading-order: 0; resize: none; rotate: none; ruby-align: space-around; ruby-overhang: auto; ruby-position: over; rule-overlap: row-over-column; rx: auto; ry: auto; scale: none; scroll-behavior: auto; scroll-initial-target: none; scroll-margin-block: 0px; scroll-margin: 0px; scroll-margin-inline: 0px; scroll-marker-group: none; scroll-padding-block: auto; scroll-padding: auto; scroll-padding-inline: auto; scroll-snap-align: none; scroll-snap-stop: normal; scroll-snap-type: none; scroll-target-group: none; scroll-timeline: none; scrollbar-color: auto; scrollbar-gutter: auto; scrollbar-width: auto; shape-image-threshold: 0; shape-margin: 0px; shape-outside: none; shape-rendering: auto; speak: normal; stop-color: rgb(0, 0, 0); stop-opacity: 1; stroke: rgb(67, 68, 56); stroke-dasharray: none; stroke-dashoffset: 0px; stroke-linecap: round; stroke-linejoin: round; stroke-miterlimit: 4; stroke-opacity: 1; stroke-width: 1.42px; tab-size: 4; table-layout: auto; text-align: start; text-align-last: auto; text-anchor: start; text-autospace: no-autospace; text-box: normal; text-combine-upright: none; text-decoration: rgba(48, 48, 48, 0.8); text-decoration-skip-ink: auto; text-emphasis: none rgba(48, 48, 48, 0.8); text-emphasis-position: over; text-fit: none; text-indent: 0px; text-justify: auto; text-orientation: mixed; text-overflow: clip; text-rendering: auto; text-shadow: none; text-size-adjust: 100%; text-spacing-trim: normal; text-transform: none; text-underline-offset: auto; text-underline-position: auto; text-wrap: wrap; timeline-scope: none; timeline-trigger: none; touch-action: auto; transform: none; transform-box: view-box; transform-origin: 0px 0px; transform-style: flat; transition: all; translate: none; trigger-scope: none; unicode-bidi: normal; user-select: auto; vector-effect: none; vertical-align: baseline; view-timeline: none; view-transition-class: none; view-transition-group: normal; view-transition-name: none; view-transition-scope: none; visibility: visible; white-space-collapse: collapse; widows: 2; width: auto; will-change: auto; window-drag: none; word-break: normal; word-spacing: 0px; writing-mode: horizontal-tb; x: 0px; y: 0px; z-index: auto; zoom: 1; border-spacing: 0px; -webkit-border-image: none; -webkit-box-align: stretch; -webkit-box-decoration-break: slice; -webkit-box-direction: normal; -webkit-box-flex: 0; -webkit-box-ordinal-group: 1; -webkit-box-orient: horizontal; -webkit-box-pack: start; -webkit-font-smoothing: auto; -webkit-line-break: auto; -webkit-line-clamp: none; -webkit-locale: "en"; -webkit-mask-box-image-source: none; -webkit-mask-box-image-slice: 0 fill; -webkit-mask-box-image-width: auto; -webkit-mask-box-image-outset: 0; -webkit-mask-box-image-repeat: stretch; -webkit-rtl-ordering: logical; -webkit-ruby-position: before; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-text-combine: none; -webkit-text-decorations-in-effect: none; -webkit-text-fill-color: rgba(48, 48, 48, 0.8); -webkit-text-orientation: vertical-right; -webkit-text-security: none; -webkit-text-stroke: 0px rgba(48, 48, 48, 0.8); -webkit-user-drag: auto; -webkit-user-modify: read-only; -webkit-writing-mode: horizontal-tb; --tw-ring-offset-shadow: 0 0 #0000; --su: 120 100% 25%; --tw-ring-shadow: 0 0 #0000; --rt-color-success: #8dc572; --sc: 145 0% 15%; --tab-radius: 0.2rem; --rt-opacity: 0.9; --s: 0 0% 72%; --in: 240 100% 50%; --n: 0 0% 92%; --suc: 105 32% 85%; --b1: 0 0% 100%; --sf: 0 0% 65%; --wac: 58 21% 11%; --p: 0 0% 72%; --rt-color-error: #be6464; --tw-border-spacing-x: 0; --rt-color-dark: #222; --nc: 145 0% 18%; --b2: 0 0% 93%; --tw-scale-y: 1; --tw-ring-color: rgba(59,130,246,.5); --erc: 17 100% 90%; --btn-focus-scale: 0.95; --rounded-badge: 0.2rem; --tw-translate-y: 0; --a: 0 0% 72%; --bc: 146 0% 19%; --tw-rotate: 0; --btn-text-case: uppercase; --af: 0 0% 65%; --inc: 263 100% 91%; --tw-ring-offset-color: #fff; --pf: 0 0% 65%; --animation-input: .2s; --tw-skew-x: 0; --er: 0 100% 50%; --rounded-box: 0.2rem; --tw-shadow: 0 0 #0000; --rounded-btn: 0.2rem; --tw-translate-x: 0; --tw-ring-offset-width: 0px; --tw-bg-opacity: 1; --b3: 0 0% 87%; --nf: 0 0% 85%; --border-btn: 1px; --tw-scroll-snap-strictness: proximity; --wa: 60 30% 50%; --tw-scale-x: 1; --rt-color-info: #337ab7; --tw-shadow-colored: 0 0 #0000; --rt-color-warning: #f0ad4e; --tw-border-spacing-y: 0; --tab-border: 1px; --ac: 145 0% 15%; --tw-skew-y: 0; --rt-color-white: #fff; --animation-btn: 0.25s; --pc: 145 0% 15%;"/></svg></span></div></div></foreignObject></svg>
|