@andreyfedkovich/cozy-ui 0.5.1 → 0.6.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/CHANGELOG.md +36 -2
- package/README.md +98 -2
- package/dist-lib/index.d.ts +98 -0
- package/dist-lib/styles.css +1 -1
- package/dist-lib/ui-library.cjs.js +12 -12
- package/dist-lib/ui-library.cjs.js.map +1 -1
- package/dist-lib/ui-library.es.js +4484 -4164
- package/dist-lib/ui-library.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,45 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Формат основан на [Keep a Changelog](https://keepachangelog.com/).
|
|
4
|
+
Версии соответствуют [Semantic Versioning](https://semver.org/) и git-тегам `v*`.
|
|
5
|
+
|
|
6
|
+
## 0.6.0 - 2026-05-21
|
|
7
|
+
|
|
8
|
+
- **feat:** `SideNav` — vertical navigation with `classic` and `aurora` variants, optional collapse, declarative `sections`, composition API (`SideNav.Section`, `SideNav.Item`, `SideNav.Divider`, `SideNav.Custom`), user block, and nested submenu items.
|
|
9
|
+
- **feat:** `Textarea` — multiline field with `label`, `error`, `hint` / `hintVariant`, optional label tooltip (`tooltipContent`), and `forwardRef`.
|
|
10
|
+
|
|
11
|
+
## 0.5.2 - 2026-05-20
|
|
4
12
|
|
|
5
13
|
- **fix:** Published `styles.css` now includes Tailwind utilities and design tokens used by `Calendar` and other `src/components/ui` primitives. Consumers only need `import "@andreyfedkovich/cozy-ui/styles.css"` — Tailwind in the host app is not required.
|
|
6
14
|
- **build:** `build:lib` runs `@tailwindcss/cli` on `src/lib/tailwind.css` and merges output with SCSS module CSS.
|
|
7
15
|
|
|
8
|
-
## 0.
|
|
16
|
+
## 0.5.1 - 2026-05-20
|
|
17
|
+
|
|
18
|
+
- Republish of 0.5.0 (no code changes).
|
|
19
|
+
|
|
20
|
+
## 0.5.0 - 2026-05-20
|
|
21
|
+
|
|
22
|
+
- **feat:** `Calendar` date picker for forms (`yyyy-MM-dd` value, localized display).
|
|
23
|
+
- **feat:** `Label` and field labels for form components.
|
|
24
|
+
- **feat:** `Checkbox` with label, error state, and tooltip on the label.
|
|
25
|
+
|
|
26
|
+
## 0.4.0 - 2026-05-19
|
|
27
|
+
|
|
28
|
+
- **feat:** `CommentFeed` — workflow comment thread with composer and list layout.
|
|
29
|
+
|
|
30
|
+
## 0.3.0 - 2026-05-18
|
|
31
|
+
|
|
32
|
+
- **feat:** `DetailView` — composition-first detail page layout (`DetailView.Header`, `.Section`, `.Field`, etc.).
|
|
33
|
+
|
|
34
|
+
## 0.2.3 - 2026-05-14
|
|
35
|
+
|
|
36
|
+
- **feat:** `TreeDialogSelect` — optional confirm-only-leaf mode for tree selection.
|
|
37
|
+
|
|
38
|
+
## 0.2.2 - 2026-05-07
|
|
39
|
+
|
|
40
|
+
- **feat:** `TabsRounded` — rounded tab panels variant.
|
|
41
|
+
|
|
42
|
+
## 0.2.1 - 2026-05-06
|
|
9
43
|
|
|
10
44
|
- **fix:** Published `dist-lib/index.d.ts` is now the real rolled-up declaration bundle (no broken stub pointing at `../dist/lib/index`). `vite-plugin-dts` writes types to the same `outDir` as the library build (`dist-lib`).
|
|
11
45
|
- **fix:** Ship `dist-lib/svg-react-shim.d.ts` and a `/// <reference />` in `index.d.ts` so consumers typecheck `*.svg?react` imports from the bundle without missing-module errors (including with `skipLibCheck: false`).
|
package/README.md
CHANGED
|
@@ -31,11 +31,11 @@ npm i @andreyfedkovich/cozy-ui
|
|
|
31
31
|
- [Design tokens](#design-tokens)
|
|
32
32
|
- [Component API](#component-api)
|
|
33
33
|
- [Layout & content](#layout--content) — `BaseBlock`, `Card`, `CollapsableBlock`, `Collapse`, `Carousel`, `EmptyComponent`, `Spinner`
|
|
34
|
-
- [Inputs & forms](#inputs--forms) — `Button`, `RadioGroupButton`, `Input`, `Calendar`, `Checkbox`, `Select`, `DialogSelect`, `TreeDialogSelect`, `InputCaption`, `Label`
|
|
34
|
+
- [Inputs & forms](#inputs--forms) — `Button`, `RadioGroupButton`, `Input`, `Textarea`, `Calendar`, `Checkbox`, `Select`, `DialogSelect`, `TreeDialogSelect`, `InputCaption`, `Label`
|
|
35
35
|
- [Navigation](#navigation) — `Tabs`, `TabsRounded`, `Stepper`
|
|
36
36
|
- [Overlays](#overlays) — `Popover`, `TooltipDark`, `TooltipLight`
|
|
37
37
|
- [Utility](#utility) — `Tag`, `CopyTextTrigger`
|
|
38
|
-
- [Workflow](#workflow) — `ApprovalRoute`
|
|
38
|
+
- [Workflow](#workflow) — `ApprovalRoute`, `CommentFeed`, `DetailView`, `SideNav`
|
|
39
39
|
- [Hooks & helpers](#hooks--helpers)
|
|
40
40
|
- [Icons](#icons)
|
|
41
41
|
- [TypeScript](#typescript)
|
|
@@ -360,6 +360,41 @@ const [email, setEmail] = useState("");
|
|
|
360
360
|
/>;
|
|
361
361
|
```
|
|
362
362
|
|
|
363
|
+
#### `Textarea`
|
|
364
|
+
|
|
365
|
+
Accessible multiline text field with optional label and validation message for product forms.
|
|
366
|
+
|
|
367
|
+
| Prop | Type | Default | Description |
|
|
368
|
+
| ------------------------ | ------------------------------------------ | ------- | ---------------------------------------- |
|
|
369
|
+
| `label` | `ReactNode` | — | Field label above the textarea. |
|
|
370
|
+
| `tooltipContent` | `ReactNode` | — | Help tooltip on the «?» icon next to the label. |
|
|
371
|
+
| `tooltipPopperClassName` | `string` | — | Extra class for the tooltip popper. |
|
|
372
|
+
| `error` | `string \| null` | — | Validation message under the textarea. |
|
|
373
|
+
| `disabled` | `boolean` | `false` | Disabled state. |
|
|
374
|
+
| `className` | `string` | — | Wrapper class. |
|
|
375
|
+
| `textareaClassName` | `string` | — | Native `<textarea>` class. |
|
|
376
|
+
| `...rest` | `TextareaHTMLAttributes<HTMLTextAreaElement>` | — | All native textarea props (`rows`, `placeholder`, `value`, `onChange`, etc.). |
|
|
377
|
+
|
|
378
|
+
```tsx
|
|
379
|
+
import { Textarea } from "@andreyfedkovich/cozy-ui";
|
|
380
|
+
import { useState } from "react";
|
|
381
|
+
|
|
382
|
+
const [comment, setComment] = useState("");
|
|
383
|
+
|
|
384
|
+
<Textarea
|
|
385
|
+
label="Comment"
|
|
386
|
+
placeholder="Write your message…"
|
|
387
|
+
rows={4}
|
|
388
|
+
value={comment}
|
|
389
|
+
onChange={(e) => setComment(e.target.value)}
|
|
390
|
+
/>;
|
|
391
|
+
|
|
392
|
+
<Textarea
|
|
393
|
+
label="Description"
|
|
394
|
+
error="Description is required."
|
|
395
|
+
/>;
|
|
396
|
+
```
|
|
397
|
+
|
|
363
398
|
#### `Calendar`
|
|
364
399
|
|
|
365
400
|
Date picker field for forms. Value is stored as `yyyy-MM-dd` (or `null`); the trigger shows `dd.MM.yyyy`. Includes helpers for parsing and serializing local calendar days.
|
|
@@ -769,6 +804,66 @@ Edit mode:
|
|
|
769
804
|
|
|
770
805
|
---
|
|
771
806
|
|
|
807
|
+
#### `SideNav`
|
|
808
|
+
|
|
809
|
+
Premium vertical navigation panel with a user block on top, configurable sections, optional collapse and two visual variants — `classic` (light, reference-style) and `aurora` (deep gradient with glass and glow accents). Composition-first like `DetailView`.
|
|
810
|
+
|
|
811
|
+
| Prop | Type | Default | Description |
|
|
812
|
+
| ------------------- | ------------------------------------- | ----------- | -------------------------------------------------------------------- |
|
|
813
|
+
| `user` | `SideNavUser` | — | Built-in user block (avatar + name + role + optional status badge). |
|
|
814
|
+
| `userSlot` | `ReactNode` | — | Fully custom header content (overrides `user`). |
|
|
815
|
+
| `sections` | `SideNavSection[]` | — | Declarative sections, each with `title` and `items`. |
|
|
816
|
+
| `children` | `ReactNode` | — | Composition: `SideNav.Section`, `SideNav.Item`, `SideNav.Divider`, `SideNav.Custom`. |
|
|
817
|
+
| `variant` | `"classic" \| "aurora"` | `"classic"` | Visual style switch. |
|
|
818
|
+
| `activeId` / `defaultActiveId` | `string` | — | Controlled / uncontrolled active item. |
|
|
819
|
+
| `onActiveChange` | `(id: string) => void` | — | Fires when an item is selected. |
|
|
820
|
+
| `collapsible` | `boolean` | `false` | Shows a collapse toggle in the header. |
|
|
821
|
+
| `collapsed` / `defaultCollapsed` | `boolean` | `false` | Controlled / uncontrolled collapsed state. |
|
|
822
|
+
| `width` / `collapsedWidth` | `number \| string` | `280` / `76` | Panel width in expanded / collapsed mode. |
|
|
823
|
+
| `footer` | `ReactNode` | — | Bottom slot (e.g. "Sign out"). |
|
|
824
|
+
|
|
825
|
+
Each `SideNavItem` supports `icon`, `href`, `badge`, `active`, `disabled`, `onClick` and nested `children` (renders as a collapsible submenu).
|
|
826
|
+
|
|
827
|
+
Declarative usage:
|
|
828
|
+
|
|
829
|
+
```tsx
|
|
830
|
+
import { SideNav, HomeIcon, ProfileIcon, ClockIcon } from "@andreyfedkovich/cozy-ui";
|
|
831
|
+
|
|
832
|
+
<SideNav
|
|
833
|
+
variant="aurora"
|
|
834
|
+
collapsible
|
|
835
|
+
user={{ name: "Kate Petrova", role: "Head of Operations", badge: true }}
|
|
836
|
+
sections={[
|
|
837
|
+
{ items: [{ id: "home", label: "Home", icon: <HomeIcon /> }] },
|
|
838
|
+
{
|
|
839
|
+
title: "For me",
|
|
840
|
+
items: [
|
|
841
|
+
{ id: "profile", label: "My profile", icon: <ProfileIcon /> },
|
|
842
|
+
{ id: "time", label: "Working time", icon: <ClockIcon />, badge: "3" },
|
|
843
|
+
],
|
|
844
|
+
},
|
|
845
|
+
]}
|
|
846
|
+
onActiveChange={(id) => console.log(id)}
|
|
847
|
+
/>;
|
|
848
|
+
```
|
|
849
|
+
|
|
850
|
+
Composition-first (like `DetailView`):
|
|
851
|
+
|
|
852
|
+
```tsx
|
|
853
|
+
<SideNav user={...} variant="classic">
|
|
854
|
+
<SideNav.Section title="For me">
|
|
855
|
+
<SideNav.Item id="profile" icon={<ProfileIcon />} label="My profile" />
|
|
856
|
+
<SideNav.Item id="time" icon={<ClockIcon />} label="Working time" badge="3" />
|
|
857
|
+
</SideNav.Section>
|
|
858
|
+
<SideNav.Divider />
|
|
859
|
+
<SideNav.Section title="Custom">
|
|
860
|
+
<SideNav.Custom>{/* any JSX */}</SideNav.Custom>
|
|
861
|
+
</SideNav.Section>
|
|
862
|
+
</SideNav>
|
|
863
|
+
```
|
|
864
|
+
|
|
865
|
+
---
|
|
866
|
+
|
|
772
867
|
## Hooks & helpers
|
|
773
868
|
|
|
774
869
|
### `useMeasureElement`
|
|
@@ -890,6 +985,7 @@ PRs are welcome. Please:
|
|
|
890
985
|
1. Run `bun run lint && bun run format` before pushing.
|
|
891
986
|
2. Add the new component to `src/lib/components/index.ts` and demo it in `src/routes/index.tsx`.
|
|
892
987
|
3. Document any new prop in this README.
|
|
988
|
+
4. Record library changes in `CHANGELOG.md` under **Unreleased**; when publishing to npm, move them into a dated `## X.Y.Z` section and clear **Unreleased**.
|
|
893
989
|
|
|
894
990
|
---
|
|
895
991
|
|
package/dist-lib/index.d.ts
CHANGED
|
@@ -42,6 +42,7 @@ import { default as MarketIcon } from './market.svg?react';
|
|
|
42
42
|
import { default as MegaphoneIcon } from './megaphone.svg?react';
|
|
43
43
|
import { MemoExoticComponent } from 'react';
|
|
44
44
|
import { default as MessageIcon } from './message.svg?react';
|
|
45
|
+
import { MouseEvent as MouseEvent_2 } from 'react';
|
|
45
46
|
import { default as NotebookIcon } from './notebook.svg?react';
|
|
46
47
|
import { default as PhoneIcon } from './phone.svg?react';
|
|
47
48
|
import { default as PlaneIcon } from './plane.svg?react';
|
|
@@ -57,6 +58,7 @@ import { default as SchoolIcon } from './school.svg?react';
|
|
|
57
58
|
import { default as SearchIcon } from './search.svg?react';
|
|
58
59
|
import { default as SettingsIcon } from './settings.svg?react';
|
|
59
60
|
import { default as TaskListIcon } from './taskList.svg?react';
|
|
61
|
+
import { TextareaHTMLAttributes } from 'react';
|
|
60
62
|
import { default as TimesheetIcon } from './timesheet.svg?react';
|
|
61
63
|
import { default as TrendUpIcon } from './trendUp.svg?react';
|
|
62
64
|
import { default as UserSwitchIcon } from './userSwitch.svg?react';
|
|
@@ -204,6 +206,9 @@ export declare interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInpu
|
|
|
204
206
|
label?: ReactNode;
|
|
205
207
|
error?: string | null;
|
|
206
208
|
checkboxClassName?: string;
|
|
209
|
+
/** Подсказка по наведению на иконку «?» справа от подписи */
|
|
210
|
+
tooltipContent?: ReactNode;
|
|
211
|
+
tooltipPopperClassName?: string;
|
|
207
212
|
}
|
|
208
213
|
|
|
209
214
|
export { CheckGreen }
|
|
@@ -368,6 +373,11 @@ export declare interface CopyTextTriggerProps {
|
|
|
368
373
|
|
|
369
374
|
export { CrossIcon }
|
|
370
375
|
|
|
376
|
+
declare const CustomEl: FC<{
|
|
377
|
+
children?: ReactNode;
|
|
378
|
+
className?: string;
|
|
379
|
+
}>;
|
|
380
|
+
|
|
371
381
|
export declare interface CustomOption<T, S = string> {
|
|
372
382
|
value: S;
|
|
373
383
|
label: string;
|
|
@@ -510,6 +520,10 @@ declare const DividerEl: FC<{
|
|
|
510
520
|
className?: string;
|
|
511
521
|
}>;
|
|
512
522
|
|
|
523
|
+
declare const DividerEl_2: FC<{
|
|
524
|
+
className?: string;
|
|
525
|
+
}>;
|
|
526
|
+
|
|
513
527
|
export { DoneIcon }
|
|
514
528
|
|
|
515
529
|
export { DownloadIcon }
|
|
@@ -591,6 +605,10 @@ export declare interface InputProps extends InputHTMLAttributes<HTMLInputElement
|
|
|
591
605
|
|
|
592
606
|
export { IslandIcon }
|
|
593
607
|
|
|
608
|
+
declare interface ItemProps extends SideNavItem {
|
|
609
|
+
level?: number;
|
|
610
|
+
}
|
|
611
|
+
|
|
594
612
|
export declare const Label: ({ htmlFor, children, className }: LabelProps) => JSX.Element;
|
|
595
613
|
|
|
596
614
|
declare interface LabelProps {
|
|
@@ -744,6 +762,9 @@ declare interface SectionComponentProps extends Omit<DetailSection, "fields"> {
|
|
|
744
762
|
children?: ReactNode;
|
|
745
763
|
}
|
|
746
764
|
|
|
765
|
+
declare interface SectionProps extends SideNavSection {
|
|
766
|
+
}
|
|
767
|
+
|
|
747
768
|
export declare const Select: <T, S extends string | number>({ options, value, mode, placeholder, onChange, dropdownRender, optionRender, selectedOptionRender, dropdownIcon, tagRender, dropDownClassName, optionClassName, inputClassName, deleteIconClassName, onDelete, onClear, label, tooltipContent, tooltipPopperClassName, onSearch, searchClassName, searchPlaceholder, isLoading, disabled, onClose, portalTarget, error, fixedHeight, template, columns, total, }: CustomSelectProps<T, S>) => JSX.Element;
|
|
748
769
|
|
|
749
770
|
export declare type SelectColumn<T, S> = {
|
|
@@ -755,6 +776,69 @@ export declare type SelectColumn<T, S> = {
|
|
|
755
776
|
|
|
756
777
|
export { SettingsIcon }
|
|
757
778
|
|
|
779
|
+
export declare const SideNav: SideNavComponent;
|
|
780
|
+
|
|
781
|
+
declare type SideNavComponent = FC<SideNavProps> & {
|
|
782
|
+
Section: typeof SideNavSectionEl;
|
|
783
|
+
Item: typeof SideNavItemEl;
|
|
784
|
+
Divider: typeof DividerEl_2;
|
|
785
|
+
Custom: typeof CustomEl;
|
|
786
|
+
};
|
|
787
|
+
|
|
788
|
+
export declare interface SideNavItem {
|
|
789
|
+
id: string;
|
|
790
|
+
label: ReactNode;
|
|
791
|
+
icon?: ReactNode;
|
|
792
|
+
href?: string;
|
|
793
|
+
active?: boolean;
|
|
794
|
+
badge?: ReactNode;
|
|
795
|
+
disabled?: boolean;
|
|
796
|
+
onClick?: (e: MouseEvent_2<HTMLAnchorElement | HTMLButtonElement>) => void;
|
|
797
|
+
children?: SideNavItem[];
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
declare const SideNavItemEl: FC<ItemProps>;
|
|
801
|
+
|
|
802
|
+
export declare interface SideNavProps {
|
|
803
|
+
user?: SideNavUser;
|
|
804
|
+
userSlot?: ReactNode;
|
|
805
|
+
sections?: SideNavSection[];
|
|
806
|
+
children?: ReactNode;
|
|
807
|
+
variant?: SideNavVariant;
|
|
808
|
+
activeId?: string;
|
|
809
|
+
defaultActiveId?: string;
|
|
810
|
+
onActiveChange?: (id: string) => void;
|
|
811
|
+
collapsible?: boolean;
|
|
812
|
+
collapsed?: boolean;
|
|
813
|
+
defaultCollapsed?: boolean;
|
|
814
|
+
onCollapsedChange?: (v: boolean) => void;
|
|
815
|
+
footer?: ReactNode;
|
|
816
|
+
width?: number | string;
|
|
817
|
+
collapsedWidth?: number | string;
|
|
818
|
+
className?: string;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
export declare interface SideNavSection {
|
|
822
|
+
id?: string;
|
|
823
|
+
title?: ReactNode;
|
|
824
|
+
items?: SideNavItem[];
|
|
825
|
+
children?: ReactNode;
|
|
826
|
+
className?: string;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
declare const SideNavSectionEl: FC<SectionProps>;
|
|
830
|
+
|
|
831
|
+
export declare interface SideNavUser {
|
|
832
|
+
name: string;
|
|
833
|
+
role?: ReactNode;
|
|
834
|
+
avatarUrl?: string;
|
|
835
|
+
initials?: string;
|
|
836
|
+
badge?: ReactNode;
|
|
837
|
+
onClick?: () => void;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
export declare type SideNavVariant = "classic" | "aurora";
|
|
841
|
+
|
|
758
842
|
export declare const Spinner: React_2.FC<Props>;
|
|
759
843
|
|
|
760
844
|
declare type SpinnerSize = "big" | "small" | "extraSmall" | "medium" | "large";
|
|
@@ -829,6 +913,20 @@ export declare const Tag: FC<PropsWithChildren<Props_4>>;
|
|
|
829
913
|
|
|
830
914
|
export { TaskListIcon }
|
|
831
915
|
|
|
916
|
+
export declare const Textarea: ForwardRefExoticComponent<TextareaProps & RefAttributes<HTMLTextAreaElement>>;
|
|
917
|
+
|
|
918
|
+
export declare interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
919
|
+
label?: ReactNode;
|
|
920
|
+
error?: string | null;
|
|
921
|
+
/** Neutral helper text under the textarea (hidden when `error` is set). */
|
|
922
|
+
hint?: ReactNode;
|
|
923
|
+
hintVariant?: InputCaptionVariant;
|
|
924
|
+
textareaClassName?: string;
|
|
925
|
+
/** Подсказка по наведению на иконку «?» справа от подписи */
|
|
926
|
+
tooltipContent?: ReactNode;
|
|
927
|
+
tooltipPopperClassName?: string;
|
|
928
|
+
}
|
|
929
|
+
|
|
832
930
|
export { TimesheetIcon }
|
|
833
931
|
|
|
834
932
|
export declare const todayLocalDay: () => Date;
|
package/dist-lib/styles.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.ui-library-placeholder{--ui-library-surface: oklch(.985 .004 247.858);--ui-library-surface-strong: oklch(1 0 0);--ui-library-text: oklch(.129 .042 264.695);--ui-library-muted: oklch(.554 .046 257.417);--ui-library-accent: oklch(.5762 .1643 263.7708);--ui-library-accent-text: oklch(.984 .003 247.858);--ui-library-border: oklch(.929 .013 255.508);display:grid;gap:.75rem;max-width:28rem;border:1px solid var(--ui-library-border);border-radius:.75rem;background:var(--ui-library-surface-strong);color:var(--ui-library-text);padding:1.25rem;box-shadow:0 1rem 2.5rem -2rem color-mix(in oklab,var(--ui-library-text) 35%,transparent);font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif}.ui-library-placeholder__badge{width:fit-content;border-radius:999px;background:var(--ui-library-surface);color:var(--ui-library-muted);padding:.25rem .625rem;font-size:.75rem;font-weight:600;line-height:1.25}.ui-library-placeholder__title{margin:0;font-size:1.125rem;font-weight:700;letter-spacing:0;line-height:1.4}.ui-library-placeholder__description{margin:0;color:var(--ui-library-muted);font-size:.875rem;line-height:1.6}.ui-library-placeholder__action{width:fit-content;border-radius:.5rem;background:var(--ui-library-accent);color:var(--ui-library-accent-text);padding:.625rem .875rem;font-size:.875rem;font-weight:600;line-height:1.2}.dark .ui-library-placeholder,.ui-library-placeholder[data-theme=dark]{--ui-library-surface: oklch(.279 .041 260.031);--ui-library-surface-strong: oklch(.208 .042 265.755);--ui-library-text: oklch(.984 .003 247.858);--ui-library-muted: oklch(.704 .04 256.788);--ui-library-accent: oklch(.5762 .1643 263.7708);--ui-library-accent-text: oklch(.208 .042 265.755);--ui-library-border: oklch(1 0 0 / 10%)}._block_tkxaf_1{background-color:#fff;border-radius:1.5rem;padding:2rem}._block_tkxaf_1 ._subtitle_tkxaf_6{color:#525252;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.75rem;line-height:1.5rem}._block_tkxaf_1 ._title_tkxaf_13{font-family:Navigo,RobotoRegular,sans-serif;font-weight:500;font-size:1.125rem;line-height:1.5rem}._cssloadContainer_akex8_1{width:100%;text-align:center}._cssloadSpeedingWheel_akex8_6{width:100px;height:100px;margin:0 auto;border:8px solid #4573d9;border-radius:50%;border-left-color:transparent;border-right-color:transparent;animation:_cssload-spin_akex8_1 1.25s infinite linear;-o-animation:_cssload-spin_akex8_1 1.25s infinite linear;-webkit-animation:_cssload-spin_akex8_1 1.25s infinite linear;-moz-animation:_cssload-spin_akex8_1 1.25s infinite linear}._bigSize_akex8_20{width:100px;height:100px;border-width:8px}._smallSize_akex8_26{width:40px;height:40px;border-width:4px}._extraSmallSize_akex8_32{width:20px;height:20px;border-width:2px}@keyframes _cssload-spin_akex8_1{to{transform:rotate(360deg)}}@-o-keyframes _cssload-spin_akex8_1{to{-o-transform:rotate(360deg);transform:rotate(360deg)}}@-ms-keyframes _cssload-spin_akex8_1{to{-ms-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes _cssload-spin_akex8_1{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes _cssload-spin_akex8_1{to{-moz-transform:rotate(360deg);transform:rotate(360deg)}}._button_fafaj_1{display:inline-flex;align-items:center;justify-content:center;position:relative;font-family:inherit;font-weight:500;line-height:1.5;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;user-select:none;border:1px solid transparent;transition:all .15s ease-in-out;background-color:transparent;margin:0}._button_fafaj_1:focus-visible{outline:2px solid #4573d9;outline-offset:2px}._button_fafaj_1:focus:not(:focus-visible){outline:none}._button--variant-primary_fafaj_26{background-color:#4573d9;color:#fff;border-color:#4573d9}._button--variant-primary_fafaj_26:hover:not(:disabled){background-color:#4573d9d9}._button--variant-primary_fafaj_26:active:not(:disabled){background-color:#2858c3}._button--variant-primary--disabled_fafaj_37,._button--variant-primary_fafaj_26:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:#c8c7cc;color:gray;border-color:#80808080}._button--variant-default_fafaj_45{background-color:#fff;color:#2a2a2a;border-color:#5252524d}._button--variant-default_fafaj_45:hover:not(:disabled){border-color:#4573d9;color:#4573d9}._button--variant-default_fafaj_45:active:not(:disabled){border-color:#2858c3;color:#2858c3}._button--variant-default--disabled_fafaj_58,._button--variant-default_fafaj_45:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:#c8c7cc;color:gray;border-color:#80808080}._button--variant-secondary_fafaj_66{background-color:#d3e8fa;color:#4573d9;border-color:transparent}._button--variant-secondary_fafaj_66:hover:not(:disabled){background-color:#d3e8fad9;border-color:transparent;color:#2858c3}._button--variant-secondary_fafaj_66:active:not(:disabled){background-color:#a5d0f5;border-color:transparent;color:#2858c3}._button--variant-secondary--disabled_fafaj_81,._button--variant-secondary_fafaj_66:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:#c8c7cc;color:gray;border-color:transparent}._button--variant-text_fafaj_89{background-color:transparent;color:#2a2a2a;border-color:transparent;border:none}._button--variant-text_fafaj_89:hover:not(:disabled){background-color:transparent;border-color:transparent;color:#2a2a2a99}._button--variant-text_fafaj_89:active:not(:disabled){background-color:transparent;border-color:transparent;color:#000}._button--variant-text--disabled_fafaj_105,._button--variant-text_fafaj_89:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:transparent;color:gray;border-color:transparent}._button--variant-link_fafaj_113{background-color:transparent;color:#4573d9;border-color:transparent;border:none}._button--variant-link_fafaj_113:hover:not(:disabled){background-color:transparent;border-color:transparent;color:#4573d9}._button--variant-link_fafaj_113:active:not(:disabled){background-color:transparent;border-color:transparent;color:#1f4599}._button--variant-link--disabled_fafaj_129,._button--variant-link_fafaj_113:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:transparent;color:gray;border-color:transparent}._button--variant-danger_fafaj_137{background-color:#fee;color:#d72d40}._button--variant-danger_fafaj_137:hover:not(:disabled){background-color:#ffe4e4}._button--variant-danger_fafaj_137:active:not(:disabled){background-color:#fbb}._button--variant-danger--disabled_fafaj_147,._button--variant-danger_fafaj_137:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:#c8c7cc;color:gray;border-color:#80808080}._button--size-small_fafaj_155{padding:.25rem .6875rem;border-radius:.5rem;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._button--size-medium_fafaj_163{padding:.46875rem .9375rem;border-radius:.625rem;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._button--size-large_fafaj_171{padding:.625rem 1.25rem;border-radius:.75rem;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._button--variant-text_fafaj_89,._button--variant-link_fafaj_113{padding:0}._button--loading_fafaj_182{position:relative;pointer-events:none}._button--loading_fafaj_182 ._button__loader_fafaj_186{margin-left:.625rem}._button--loading_fafaj_182 ._button__loader_fafaj_186 div div{border-top-color:gray;border-bottom-color:gray}._button__content_fafaj_193{display:inline-flex;align-items:center;justify-content:center;gap:.3125rem}._container_1dkro_1{display:flex;max-width:max-content;background-color:#f4f7fa;border-radius:50px;position:relative}._container_1dkro_1 button{border:none;background-color:transparent;border-radius:50px;color:#2a2a2a;z-index:1;padding:.25rem 1rem}._container_1dkro_1 button._activeButton_1dkro_16,._container_1dkro_1 button._activeButton_1dkro_16:hover{color:#fff}._container_1dkro_1 ._slider_1dkro_22{height:100%;position:absolute;border-radius:50px;background-color:#4573d9;transition:transform .3s ease-in-out}._card_1cqzz_1{display:block;padding:1rem;white-space:pre;border-radius:1rem;background-size:cover;background-repeat:no-repeat;background-position:center}._card_1cqzz_1 span{font-family:Navigo,RobotoRegular,sans-serif;font-weight:500;font-size:1rem;line-height:1.25rem}._link_1cqzz_17{cursor:pointer}._link_1cqzz_17:hover span{display:inline-block;transition:transform .5s ease;transform:scale(1.03)}._mainBlue_1cqzz_26{background-color:#4573d9;color:#fff!important}._mainBlue__link_1cqzz_30{transition:filter .3s ease}._mainBlue__link_1cqzz_30:hover{filter:saturate(120%) brightness(1.05)}._lightBlue_1cqzz_37{background-color:#d3e8fa;color:#2a2a2a!important}._lightBlue__link_1cqzz_41{transition:filter .3s ease}._lightBlue__link_1cqzz_41:hover{filter:saturate(150%)}._darkBlue_1cqzz_48{background-color:#001a3d;color:#fff!important}._darkBlue__link_1cqzz_52{transition:filter .3s ease}._darkBlue__link_1cqzz_52:hover{filter:saturate(120%) brightness(1.2)}._carouselWrapper_12142_1{position:relative;z-index:20;width:100%}._carousel_12142_1{position:relative;width:100%;padding-bottom:3rem}._viewport_12142_13{position:relative;width:100%;overflow:hidden}._slide_12142_19{display:none;width:100%}._activeSlide_12142_24{display:block}._itemContent_12142_28{display:flex;align-items:center;justify-content:center;width:100%;height:100%}._controls_12142_36{position:absolute;right:0;bottom:0;left:0;z-index:5;display:flex;align-items:center;justify-content:center;gap:.625rem}._carouselControl_12142_48{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;padding:0;border:0;border-radius:50%;background-color:#fff;color:#000;box-shadow:0 4px 8px #0000001a;cursor:pointer;opacity:1;transition:opacity .15s ease,transform .15s ease}._carouselControl_12142_48:hover{opacity:.65}._carouselControl_12142_48:active{transform:scale(.96)}._prevIcon_12142_71,._nextIcon_12142_72{display:block;width:1.25rem;height:1.25rem;background-image:url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M17.2929%209.29289C17.6834%208.90237%2018.3166%208.90237%2018.7071%209.29289C19.0976%209.68342%2019.0976%2010.3166%2018.7071%2010.7071L12.7071%2016.7071C12.3285%2017.0857%2011.7189%2017.0989%2011.3243%2016.7372L5.32428%2011.2372C4.91716%2010.864%204.88965%2010.2314%205.26285%209.82427C5.63604%209.41715%206.26861%209.38965%206.67573%209.76284L11.9699%2014.6159L17.2929%209.29289Z'%20fill='currentColor'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:50%;background-size:100% 100%}._prevIcon_12142_71{transform:rotate(90deg)}._nextIcon_12142_72{transform:rotate(-90deg)}._indicators_12142_90{z-index:2;display:flex;justify-content:center;padding:0;margin:0;list-style:none;gap:.375rem}._indicators_12142_90 button{width:.75rem;height:.75rem;padding:0;border:0;border-radius:50%;background:#0000001a;transition:background .25s,transform .25s;flex-shrink:0;cursor:pointer}._indicators_12142_90 button:hover{background-color:#c8c7cc}._indicators_12142_90 ._activeIndicator_12142_115{background:#00000080}._overlay_1pnex_1{position:fixed;padding:.5rem .75rem;background:#2a2a2a;color:#fff;font-size:.875rem;line-height:1.25rem;white-space:nowrap;border-radius:.25rem;pointer-events:none;z-index:20000;animation:_fadeIn_1pnex_1 .15s ease-out;box-shadow:0 2px 8px #00000026}._arrow_1pnex_16{position:absolute;width:.5rem;height:.5rem;border:.25rem solid transparent}._arrow_1pnex_16._top_1pnex_22{bottom:100%;left:50%;transform:translate(-50%);border-bottom-color:#2a2a2a}._arrow_1pnex_16._bottom_1pnex_28{top:100%;left:50%;transform:translate(-50%);border-top-color:#2a2a2a}._arrow_1pnex_16._left_1pnex_34{right:100%;top:50%;transform:translateY(-50%);border-right-color:#2a2a2a}._arrow_1pnex_16._right_1pnex_40{left:100%;top:50%;transform:translateY(-50%);border-left-color:#2a2a2a}@keyframes _fadeIn_1pnex_1{0%{opacity:0}to{opacity:1}}._wrapper_ukjvp_1{display:inline-flex}._trigger_ukjvp_5{display:inline-flex;align-items:center;gap:.125rem;text-decoration:underline;cursor:pointer;background:none;border:none;padding:0;font:inherit;text-align:left;color:#4573d9;transition:color .3s ease}._trigger_ukjvp_5:hover{color:#4573d9}._trigger_ukjvp_5 a,._trigger_ukjvp_5 a:hover,._trigger_ukjvp_5 a:focus-visible{text-decoration:none}._trigger_ukjvp_5:focus-visible{outline:2px solid #4573d9;outline-offset:2px}._trigger_iconOnly_ukjvp_32{text-decoration:none;color:#525252;line-height:1;min-height:0;padding:0}._trigger_iconOnly_ukjvp_32:hover{color:#4573d9}._icon_ukjvp_43{width:.875rem;height:.875rem;flex-shrink:0}._icon_ukjvp_43 path{fill:currentColor}._anchor_rpda1_1{position:fixed;pointer-events:none}._tooltip_rpda1_6{z-index:50;max-width:17.5rem;border:none;background-color:#fff;color:#2a2a2a;border-radius:.75rem;padding:.5rem .75rem;box-shadow:0 4px 20px #00000026}._tooltip_rpda1_6 .radix-tooltip-arrow{fill:#fff}._anchor_1qyyn_1{position:fixed;pointer-events:none}._triggerWrap_1qyyn_6{display:inline-flex;cursor:pointer}._popover_1qyyn_11{background-color:#fff;border-radius:8px;padding:24px;max-width:400px;min-width:400px;box-shadow:0 4px 20px #0000004d;position:relative;z-index:10}._popover_1qyyn_11 .arrow{position:absolute;display:block;width:.625rem;height:.625rem}._popover_1qyyn_11 .arrow:before{content:"";position:absolute;left:11px;width:100%;height:100%;background:#fff;transform:rotate(45deg);box-shadow:0 -4px 8px -4px #00000080}._popover_1qyyn_11[x-placement^=top-start] .arrow{bottom:-.625rem}._popover_1qyyn_11[x-placement^=top-start] .arrow:before{content:"";top:-5px}._popover_1qyyn_11[x-placement^=bottom-start] .arrow{top:-.625rem}._popover_1qyyn_11[x-placement^=bottom-start] .arrow:before{bottom:-5px}._popover_1qyyn_11[x-placement^=bottom-center] .arrow{top:-.625rem}._popover_1qyyn_11[x-placement^=bottom-center] .arrow:before{bottom:-5px;left:0}._popover_1qyyn_11[x-placement^=right-start] .arrow{top:-.625rem}._popover_1qyyn_11[x-placement^=right-start] .arrow:before{bottom:-5px;left:-28px}._emptyComponent_1wdgn_1{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:.75rem;color:#c8c7cc}._svgWrapper_1wdgn_11{margin-bottom:8px;display:flex;justify-content:center;align-items:center;color:#c8c7cc}._svgWrapper_1wdgn_11 svg{width:3.75rem;height:3.75rem}._title_1wdgn_23{font-size:16px;font-weight:500}._subtitle_1wdgn_28{margin:4px 0 8px}._container_xa163_1{width:100%;display:flex;flex-direction:column}._container_xa163_1 ._header_xa163_6{display:flex;justify-content:space-between;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._container_xa163_1 ._header_icon_xa163_14{display:flex;align-items:center;padding-top:.25rem;cursor:pointer}._container_xa163_1 ._header_icon_xa163_14 ._iconTransition_xa163_20{transition:all .15s}._container_xa163_1 ._header_icon_xa163_14 ._rotateIcon_xa163_23{transform:rotate(180deg)}._container_xa163_1 ._content_xa163_26{overflow:hidden;transition:height .3s ease;word-break:break-word}._container_xa163_1 ._content_xa163_26._padding_xa163_31{padding-top:.5rem}._collapsableBlock_86gg6_1{background-color:#fff;border-radius:1.5rem;padding:2rem}._collapsableBlock_86gg6_1 ._header_86gg6_6 span{font-family:Navigo,RobotoRegular,sans-serif;font-weight:500;font-size:1.125rem;line-height:1.5rem}._collapsableBlock_86gg6_1 ._headerWithInfoTooltip_86gg6_12{width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-right:.75rem}._collapsableBlock_86gg6_1 ._headerWithInfoTooltip_86gg6_12 ._infoIcon_86gg6_20{padding-top:.25rem}._caption_ltp0o_1{font-family:Navigo,RobotoRegular,sans-serif;font-style:normal;font-weight:400;font-size:12px;line-height:20px;margin:0;transition:.15s;animation-name:_fadeIn_ltp0o_1;animation-iteration-count:1;animation-timing-function:ease-in;animation-duration:.1s;opacity:1}._caption_neutral_ltp0o_16{color:#525252}._caption_error_ltp0o_20{color:#d72d40}._caption_success_ltp0o_24{color:#00a582}@keyframes _fadeIn_ltp0o_1{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}._fullWidth_ltp0o_38{white-space:nowrap}._label_1i8xb_1{font-family:Navigo,RobotoRegular,sans-serif;font-size:.625rem;line-height:.875rem;font-weight:400;font-size:10px;line-height:14px;color:gray}._label__text_1i8xb_11{margin-bottom:.375rem}._label_inline_1i8xb_14 ._label__text_1i8xb_11{margin-bottom:0}._labelRow_1kh14_1{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:4px}._helpIcon_1kh14_9{display:inline-flex;align-items:center;justify-content:center;align-self:center;width:20px;height:20px;padding:0;border:none;background:transparent;color:#aebfde;cursor:help;flex-shrink:0;border-radius:50%;transition:color .15s ease}._helpIcon_1kh14_9:hover{color:#4573d9}._helpIcon_1kh14_9:focus-visible{outline:1px solid #4573d9;outline-offset:2px}._helpIconSvg_1kh14_33{width:16px;height:16px;stroke-width:1.75}._wrapper_19g1g_1{font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.25rem;color:#2a2a2a;padding:.1875rem 1rem .1875rem .5rem;background-color:#f4f7fa;border:1px solid #aebfde;border-radius:.375rem;display:flex;align-items:center}._wrapper_small_19g1g_14{padding:.25rem 1rem}._wrapper_19g1g_1 ._iconCross_19g1g_17{margin-left:.625rem;margin-right:-.125rem;cursor:pointer;width:12px;height:12px;flex-shrink:0}._wrapper_19g1g_1 ._iconCross_small_19g1g_25{flex-shrink:0;width:9px;height:9px}._wrapper_94m4o_1{justify-content:center;width:100%}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5{width:100%;min-height:48px;display:flex;align-items:center;justify-content:space-between;border:1px solid #aebfde;background:#fff;border-radius:.375rem;padding:6px 6px 6px 12px;cursor:pointer}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5._error_94m4o_17{border:1px solid #d72d40}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5._disabled_94m4o_20{pointer-events:none;background-color:#c8c7cc4d}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5._disabled_94m4o_20 button{color:#525252!important}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5:focus{outline:1px solid #4573d9}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5._error_94m4o_17:focus{outline:1px solid #d72d40}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._tagContainer_94m4o_33{display:flex;gap:.25rem;flex-wrap:wrap}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._selectedOptionContainer_94m4o_38{display:flex;width:calc(100% - 7.5rem);text-align:left}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._selectedOptionContainer_94m4o_38 ._selectedOption_94m4o_38{word-break:break-word;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._selectedOptionContainer_94m4o_38 ._placeHolder_94m4o_49{width:100%;color:#525252}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53{position:relative;padding:0 .3125rem;display:flex;justify-items:center}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._deleteIcon_94m4o_59{z-index:5;max-height:34px;padding:0}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._deleteIcon_94m4o_59 span{width:24px;background:#fff;line-height:12px}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._deleteIcon_94m4o_59 svg{width:18px;height:18px}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._deleteIcon_94m4o_59 svg path{fill:gray}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._deleteIcon_94m4o_59:hover svg path{fill:#525252}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._divider_94m4o_79{padding:6px 8px}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._divider_94m4o_79 div{border-left:1px #aebfde solid;width:0;height:20px;min-height:20px}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._arrowIcon_94m4o_88{max-height:34px;padding:0;cursor:pointer;width:100%;justify-content:end}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._arrowIcon_94m4o_88 svg{width:16px;height:16px;transition:transform .15s ease}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._arrowIcon_94m4o_88:hover{color:#2a2a2a}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._arrowIconExpanded_94m4o_103 svg{transform:rotate(180deg)}._dropdown_94m4o_107{z-index:10000;background:#fff;width:100%;box-shadow:0 2px 7px #00000040;border-radius:8px;padding:12px 0 12px 12px;opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease}._dropdown_visible_94m4o_118{opacity:1;visibility:visible}._dropdown_94m4o_107>div{padding-right:6px;scrollbar-gutter:stable;overflow:hidden}._dropdown_94m4o_107 ul{list-style:none;padding:0;margin:0;overflow-y:auto}._dropdown_94m4o_107 ul._withSearch_94m4o_133{height:254px}._dropdown_94m4o_107 ._search_94m4o_136{height:2.25rem;width:100%;border-radius:1rem;background-color:#f4f7fa;padding:.375rem 16px;display:flex;flex-direction:row;align-items:center;border:1px solid #aebfde;position:relative;margin-bottom:.625rem}._dropdown_94m4o_107 ._search__icon_94m4o_149{margin-right:8px;width:18px;height:18px}._dropdown_94m4o_107 ._search__input_94m4o_154{width:100%;height:100%;background:#f4f7fa;border:none;padding:0 70px 0 0;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._dropdown_94m4o_107 ._search__input_94m4o_154::placeholder{color:#525252}._dropdown_94m4o_107 ._search__input_94m4o_154::-webkit-input-placeholder{color:#525252}._dropdown_94m4o_107 ._search__input_94m4o_154::-moz-placeholder{color:#525252}._dropdown_94m4o_107 ._search__input_94m4o_154:-ms-input-placeholder{color:#525252}._dropdown_94m4o_107 ._search__input_94m4o_154:-moz-placeholder{color:#525252}._dropdown_94m4o_107 ._option_94m4o_184{padding:10px 12px;cursor:default;border-radius:4px}._dropdown_94m4o_107 ._option_94m4o_184 ._selectedOption_94m4o_38{text-overflow:ellipsis}._dropdown_94m4o_107 ._option_94m4o_184:not(._dropdown_94m4o_107 ._option_active_94m4o_192):hover{background-color:#f4f7fa}._dropdown_94m4o_107 ._option_active_94m4o_192{background-color:#f4f7fa}._dropdown_94m4o_107 ._option_active_next_active_94m4o_198{border-bottom-left-radius:0;border-bottom-right-radius:0}._dropdown_94m4o_107 ._option_active_prev_active_94m4o_202{border-top-left-radius:0;border-top-right-radius:0}._empty_94m4o_207{width:100%;padding:.625rem 3.75rem;display:flex;flex-direction:column;gap:.625rem}._empty__image_94m4o_214{height:130px;background-size:130px;background-repeat:no-repeat;background-position:50% 0}._empty__text_94m4o_220{text-align:center;color:#525252;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._tableTemplate_94m4o_229{display:flex;flex-direction:column;height:100%;gap:12px}._tableContainer_94m4o_236{flex:1;min-height:0;overflow:auto;border:1px solid #dde5f5;border-radius:8px;background:#fff}._table_94m4o_229{width:100%;border-collapse:collapse;font-size:14px;line-height:20px}._table_94m4o_229 th{position:sticky;top:0;z-index:1;padding:10px 16px;text-align:center;color:#525252;background:#fff;border-bottom:1px solid #dde5f5;font-weight:500}._table_94m4o_229 td{padding:10px 16px;color:#001a3d;text-align:center}._table_94m4o_229 tbody tr{cursor:pointer;transition:background-color .15s ease}._table_94m4o_229 tbody tr:nth-child(odd){background:#f4f7fa99}._table_94m4o_229 tbody tr:hover{background:#d3e8fa}._activeRow_94m4o_278{background:#d3e8fa!important}._activeRow_94m4o_278 td{font-weight:600}._checkboxCell_94m4o_285{width:44px;text-align:center;padding-left:12px!important;padding-right:8px!important}._checkbox_94m4o_285{width:16px;height:16px;cursor:pointer;accent-color:#4573d9;margin:0}._footerTotal_94m4o_300{color:#525252;font-size:13px;line-height:18px;padding:0 4px 4px}._wrapper_4ju0w_1{width:100%}._input_4ju0w_5{width:100%;min-height:48px;display:flex;align-items:center;justify-content:space-between;gap:16px;border:1px solid #aebfde;background:#fff;border-radius:.375rem;padding:6px 12px;cursor:pointer;transition:border-color .15s ease,box-shadow .15s ease,background-color .15s ease}._input_4ju0w_5:focus,._input_4ju0w_5:focus-visible,._input_4ju0w_5:hover{outline:none;border-color:#4573d9;box-shadow:0 0 0 2px #4573d914}._error_4ju0w_25{border-color:#d72d40}._error_4ju0w_25:focus,._error_4ju0w_25:focus-visible,._error_4ju0w_25:hover{border-color:#d72d40;box-shadow:0 0 0 2px #d72d4014}._disabled_4ju0w_33{pointer-events:none;background-color:#c8c7cc4d;color:#525252}._selectedOption_4ju0w_39{min-width:0;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#2a2a2a;font-size:14px;line-height:20px}._placeholder_4ju0w_50{color:#525252}._actions_4ju0w_54{display:inline-flex;align-items:center;flex-shrink:0;gap:10px}._clearButton_4ju0w_61{width:24px;height:24px}._clearButton_4ju0w_61 svg{width:16px;height:16px}._selectButton_4ju0w_70{color:#4573d9;white-space:nowrap;font-size:14px;line-height:20px}._dialogContent_4ju0w_77{width:calc(100vw - 32px);max-width:780px;max-height:calc(100vh - 32px);display:flex;flex-direction:column;gap:16px;border:none;border-radius:18px;background:#fff;padding:28px 32px 24px;box-shadow:0 24px 70px #0000003d;overflow:hidden}._dialogHeader_4ju0w_92{display:block;text-align:left}._dialogTitle_4ju0w_97{color:#001a3d;font-size:20px;line-height:26px;font-weight:700}._search_4ju0w_104{min-height:36px;display:flex;align-items:center;gap:10px;border:1px solid #aebfde;border-radius:999px;background:#f4f7fa;padding:5px 12px 5px 24px;position:relative}._search_4ju0w_104:focus-within{border-color:#4573d9;box-shadow:0 0 0 2px #4573d914}._searchIcon_4ju0w_120{width:18px;height:18px;flex-shrink:0;color:#525252}._searchIcon_4ju0w_120 path{stroke:#525252;stroke-width:1.4}._searchInput_4ju0w_131{min-width:0;flex:1;border:0;outline:0;background:transparent;color:#001a3d;font-weight:500;font-size:15px;line-height:22px}._searchInput_4ju0w_131::placeholder{color:#525252}._searchInput_4ju0w_131::-webkit-input-placeholder{color:#525252}._searchInput_4ju0w_131::-moz-placeholder{color:#525252}._searchInput_4ju0w_131:-ms-input-placeholder{color:#525252}._searchInput_4ju0w_131:-moz-placeholder{color:#525252}._searchSpinner_4ju0w_162{flex-shrink:0}._tableContainer_4ju0w_166{min-height:280px;max-height:min(48vh,390px);overflow:auto;border:1px solid #dde5f5;border-radius:10px;background:#fff}._table_4ju0w_166{width:100%;border-collapse:collapse}._table_4ju0w_166 th{position:sticky;top:0;z-index:1;padding:12px 24px;text-align:left;color:#525252;background:#fff;border-bottom:1px solid #dde5f5;font-weight:500;font-size:14px;line-height:20px}._table_4ju0w_166 td{padding:13px 24px;color:#001a3d;font-size:15px;line-height:22px}._table_4ju0w_166 tbody tr{cursor:pointer;transition:background-color .15s ease}._table_4ju0w_166 tbody tr:nth-child(odd){background:#f4f7fab8}._table_4ju0w_166 tbody tr:hover{background:#d3e8fa}._activeRow_4ju0w_209{background:#d3e8fa!important}._activeRow_4ju0w_209 td{font-weight:700}._emptyState_4ju0w_216{min-height:220px;display:flex;align-items:center;justify-content:center}._dialogFooter_4ju0w_223{display:flex;align-items:center;justify-content:space-between;gap:12px;padding-top:0}._pagination_4ju0w_231,._footerActions_4ju0w_232{display:flex;align-items:center;gap:10px}._footerActions_4ju0w_232{justify-content:flex-end;flex-wrap:wrap}._dialogFooter_4ju0w_223 button{min-height:36px;padding:7px 14px;font-size:14px;line-height:20px;border-radius:10px}._pageInfo_4ju0w_251{color:#525252;white-space:nowrap;font-size:14px;line-height:20px}@media(max-width:680px){._dialogContent_4ju0w_77{padding:22px 16px 18px;border-radius:14px}._dialogFooter_4ju0w_223{align-items:stretch;flex-direction:column}._pagination_4ju0w_231,._footerActions_4ju0w_232{justify-content:space-between;flex-wrap:wrap}._table_4ju0w_166 th,._table_4ju0w_166 td{padding:12px 14px}}._wrapper_15kqr_1{width:100%}._input_15kqr_5{width:100%;min-height:48px;display:flex;align-items:center;justify-content:space-between;gap:16px;border:1px solid #aebfde;background:#fff;border-radius:.375rem;padding:6px 12px;cursor:pointer;transition:border-color .15s ease,box-shadow .15s ease,background-color .15s ease}._input_15kqr_5:focus,._input_15kqr_5:focus-visible,._input_15kqr_5:hover{outline:none;border-color:#4573d9;box-shadow:0 0 0 2px #4573d914}._error_15kqr_25{border-color:#d72d40}._error_15kqr_25:focus,._error_15kqr_25:focus-visible,._error_15kqr_25:hover{border-color:#d72d40;box-shadow:0 0 0 2px #d72d4014}._disabled_15kqr_33{pointer-events:none;background-color:#c8c7cc4d;color:#525252}._selectedOption_15kqr_39{min-width:0;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#2a2a2a;font-size:14px;line-height:20px}._placeholder_15kqr_50{color:#525252}._actions_15kqr_54{display:inline-flex;align-items:center;flex-shrink:0;gap:10px}._clearButton_15kqr_61{width:24px;height:24px}._clearButton_15kqr_61 svg{width:16px;height:16px}._selectButton_15kqr_70{color:#4573d9;white-space:nowrap;font-size:14px;line-height:20px}._dialogContent_15kqr_77{width:calc(100vw - 32px);max-width:720px;max-height:calc(100vh - 32px);display:flex;flex-direction:column;gap:16px;border:none;border-radius:18px;background:#fff;padding:28px 32px 24px;box-shadow:0 24px 70px #0000003d;overflow:hidden}._dialogHeader_15kqr_92{display:block;text-align:left}._dialogTitle_15kqr_97{color:#001a3d;font-size:20px;line-height:26px;font-weight:700}._search_15kqr_104{min-height:36px;display:flex;align-items:center;gap:10px;border:1px solid #aebfde;border-radius:999px;background:#f4f7fa;padding:5px 12px 5px 24px;position:relative}._search_15kqr_104:focus-within{border-color:#4573d9;box-shadow:0 0 0 2px #4573d914}._searchIcon_15kqr_120{width:18px;height:18px;flex-shrink:0;color:#525252}._searchIcon_15kqr_120 path{stroke:#525252;stroke-width:1.4}._searchInput_15kqr_131{min-width:0;flex:1;border:0;outline:0;background:transparent;color:#001a3d;font-weight:500;font-size:15px;line-height:22px}._searchInput_15kqr_131::placeholder{color:#525252}._searchInput_15kqr_131::-webkit-input-placeholder{color:#525252}._searchInput_15kqr_131::-moz-placeholder{color:#525252}._searchInput_15kqr_131:-ms-input-placeholder{color:#525252}._searchInput_15kqr_131:-moz-placeholder{color:#525252}._searchSpinner_15kqr_162{flex-shrink:0}._treeContainer_15kqr_166{min-height:280px;max-height:min(48vh,420px);overflow:auto;border:1px solid #dde5f5;border-radius:10px;background:#fff;padding:6px 0}._row_15kqr_176{display:flex;align-items:center;gap:6px;padding:8px 16px;cursor:pointer;color:#001a3d;font-size:15px;line-height:22px;transition:background-color .15s ease}._row_15kqr_176:hover,._row_active_15kqr_191{background:#d3e8fa}._row_active_15kqr_191 ._nodeLabel_15kqr_194{font-weight:700}._row_match_15kqr_198 ._nodeLabel_15kqr_194{color:#4573d9}._chevron_15kqr_202{width:22px;height:22px;display:inline-flex;align-items:center;justify-content:center;border:0;background:transparent;cursor:pointer;color:#525252;border-radius:4px;flex-shrink:0;transition:transform .15s ease,background-color .15s ease}._chevron_15kqr_202:hover{background:#4573d91a;color:#4573d9}._chevron_15kqr_202 svg{width:12px;height:12px;transform:rotate(-90deg);transition:transform .15s ease}._chevronExpanded_15kqr_227 svg{transform:rotate(0)}._chevronPlaceholder_15kqr_231{width:22px;height:22px;flex-shrink:0}._nodeSpinner_15kqr_237{margin-left:4px}._nodeLabel_15kqr_194{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._emptyState_15kqr_249,._loadingState_15kqr_256{min-height:220px;display:flex;align-items:center;justify-content:center}._dialogFooter_15kqr_263{display:flex;align-items:center;justify-content:flex-end;gap:10px;padding-top:0}._dialogFooter_15kqr_263 button{min-height:36px;padding:7px 14px;font-size:14px;line-height:20px;border-radius:10px}@media(max-width:680px){._dialogContent_15kqr_77{padding:22px 16px 18px;border-radius:14px}._dialogFooter_15kqr_263{flex-direction:column-reverse;align-items:stretch}}._wrapper_1wain_1{position:relative;overflow:visible}._tabs_1wain_6{display:flex;position:relative;white-space:nowrap;align-items:flex-end;overflow:visible;isolation:isolate;z-index:2;margin-bottom:-1px}._tabs_1wain_6 ._tabItem_1wain_16{font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.25rem;font-weight:500;display:flex;align-items:center;justify-content:center;padding:0 16px;width:180px;height:45px;cursor:pointer;position:relative;color:gray;background-color:#f4f7fa;border:1px solid #dde5f5;border-top-left-radius:12px;border-top-right-radius:12px;text-align:center;margin-left:-12px;z-index:2;margin-bottom:0}._tabs_1wain_6 ._tabItem_1wain_16:first-child{margin-left:0}._tabs_1wain_6 ._tabItem_1wain_16:last-child{margin-right:0}._tabs_1wain_6 ._tabItem_1wain_16._active_1wain_46{background:#fff;color:#4573d9;border-bottom:none;z-index:10}._tabs_1wain_6 ._tabItem_1wain_16._active_1wain_46:first-child:before{content:"";position:absolute;bottom:0;left:-1px;width:1px;height:12px;background:#dde5f5}._tabs_1wain_6 ._tabItem_1wain_16 ._before_1wain_61,._tabs_1wain_6 ._tabItem_1wain_16 ._after_1wain_62{position:absolute;bottom:0;width:20px;height:20px;overflow:hidden;pointer-events:none}._tabs_1wain_6 ._tabItem_1wain_16 ._before_1wain_61{left:-20px}._tabs_1wain_6 ._tabItem_1wain_16 ._before_1wain_61:before{content:"";position:absolute;right:0;bottom:0;width:20px;height:20px;border-right:1px solid #dde5f5;border-bottom:1px solid #dde5f5;border-bottom-right-radius:12px;box-shadow:10px 10px 0 10px #fff}._tabs_1wain_6 ._tabItem_1wain_16 ._after_1wain_62{right:-20px}._tabs_1wain_6 ._tabItem_1wain_16 ._after_1wain_62:before{content:"";position:absolute;bottom:0;left:0;width:20px;height:20px;border-left:1px solid #dde5f5;border-bottom:1px solid #dde5f5;border-bottom-left-radius:12px;box-shadow:-10px 10px 0 10px #fff}._panel_1wain_101{position:relative;z-index:1;min-height:56px;padding:16px 20px;border:1px solid #dde5f5;border-radius:0 0 12px 12px;background-color:#fff}._wrapper_1xj0t_1{width:100%;display:flex;align-items:center;gap:0}._itemBlock_1xj0t_8{display:inline-flex;flex-direction:column;align-items:center;gap:8px;flex-shrink:0}._step_1xj0t_16{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;background:#4573d9;color:#fff;font-weight:600;font-size:14px;line-height:1;flex-shrink:0;border:0;padding:0;cursor:default;transition:background-color .2s ease,color .2s ease,transform .15s ease,box-shadow .2s ease}._step_1xj0t_16 svg{width:14px;height:14px}._clickable_1xj0t_39{cursor:pointer}._clickable_1xj0t_39:hover{transform:scale(1.05)}._step_inactive_1xj0t_46{background:#d3e8fa;color:#fff}._step_current_1xj0t_51{box-shadow:0 0 0 4px #4573d92e}._connector_1xj0t_55{flex:1;height:1px;background:#dde5f5;min-width:24px}._connector_active_1xj0t_62{background:#4573d9}._label_1xj0t_66{font-size:12px;line-height:16px;color:#525252;white-space:nowrap;text-align:center}._label_active_1xj0t_74{color:#001a3d;font-weight:600}._container_1whkx_1{position:relative}._container_1whkx_1 ._tabs_1whkx_4{display:flex;gap:32px;white-space:nowrap;border-bottom:2px solid #c8c7cc;width:min-content}._container_1whkx_1 ._tabs_1whkx_4 ._line_1whkx_11{padding:0;background-color:#4573d9;bottom:-2px;height:2px;position:absolute;transition:left .22s ease-out,width .22s ease-out;pointer-events:none;z-index:1}._container_1whkx_1 ._tabs_1whkx_4 ._tabItem_1whkx_21{font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.25rem;padding:16px 0;cursor:pointer;transition:all .15s ease-out;position:relative}._container_1whkx_1 ._tabs_1whkx_4 ._tabItem_1whkx_21:hover{color:#4573d9}._container_1whkx_1 ._tabs_1whkx_4 ._tabItem_1whkx_21 ._header_1whkx_34{position:absolute;top:-.625rem;left:0;color:gray;font-size:12px;font-weight:400}._container_1whkx_1 ._tabs_1whkx_4 ._tabItem_1whkx_21 ._notificationChanges_1whkx_42{display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-width:.9375rem;min-height:.9375rem;aspect-ratio:1;padding:0;color:#fff;background-color:#d72d40;border-radius:50%;font-size:10px;font-weight:600;line-height:1;right:-14px;position:absolute;top:.375rem}._container_1whkx_1 ._tabs_hasAnimatedIndicator_1whkx_61{position:relative}._container_1whkx_1 ._tabs_hasAnimatedIndicator_1whkx_61 ._tabItem_1whkx_21._active_1whkx_64:after{border-bottom-width:0}._wrapper_rkn19_1{justify-content:center;width:100%}._container_rkn19_6{width:100%}._input_rkn19_10{width:100%;min-height:48px;border:1px solid #aebfde;background:#fff;border-radius:.375rem;padding:6px 12px;outline:none;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._input_rkn19_10::placeholder{color:#525252}._input_rkn19_10::-webkit-input-placeholder{color:#525252}._input_rkn19_10::-moz-placeholder{color:#525252}._input_rkn19_10:-ms-input-placeholder{color:#525252}._input_rkn19_10:-moz-placeholder{color:#525252}._input_rkn19_10:focus{outline:1px solid #4573d9}._input_rkn19_10._error_rkn19_45{border:1px solid #d72d40}._input_rkn19_10._error_rkn19_45:focus{outline:1px solid #d72d40}._input_rkn19_10._disabled_rkn19_51{pointer-events:none;background-color:#c8c7cc4d;color:#525252}._wrapper_1sqfs_1{display:flex;flex-direction:column;width:100%;margin-bottom:12px}._trigger_1sqfs_8{box-sizing:border-box;display:flex;width:100%;min-height:48px;align-items:center;justify-content:space-between;gap:8px;border:1px solid #aebfde;background:#fff;border-radius:.375rem;padding:6px 12px;text-align:left;outline:none;cursor:pointer;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._trigger_1sqfs_8:focus{outline:1px solid #4573d9}._trigger_1sqfs_8:disabled{pointer-events:none;background-color:#c8c7cc4d;color:#525252;cursor:default}._trigger_1sqfs_8._error_1sqfs_37{border:1px solid #d72d40}._trigger_1sqfs_8._error_1sqfs_37:focus{outline:1px solid #d72d40}._triggerValue_1sqfs_44{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._triggerIcon_1sqfs_51{width:16px;height:16px;flex-shrink:0;opacity:.6}._wrapper_166fe_1{display:flex;flex-direction:column;gap:.375rem;width:100%}._field_166fe_8{display:inline-flex;align-items:flex-start;gap:.75rem;cursor:pointer;width:fit-content;max-width:100%}._field_166fe_8._disabled_166fe_16{cursor:not-allowed}._nativeInput_166fe_20{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}._box_166fe_32{position:relative;flex-shrink:0;display:flex;align-items:center;justify-content:center;width:20px;height:20px;border:1px solid #aebfde;border-radius:.375rem;background:#fff;transition:border-color .15s ease,background-color .15s ease,box-shadow .15s ease}._field_166fe_8:not(._disabled_166fe_16):hover ._box_166fe_32{border-color:#4573d9}._nativeInput_166fe_20:focus-visible+._box_166fe_32{outline:1px solid #4573d9;outline-offset:1px}._nativeInput_166fe_20:checked+._box_166fe_32{border-color:#4573d9;background:#4573d9}._nativeInput_166fe_20:disabled+._box_166fe_32{border-color:#aebfde;background:#c8c7cc4d;pointer-events:none}._nativeInput_166fe_20:checked:disabled+._box_166fe_32{background:#4573d973;border-color:#4573d973}._box_166fe_32._error_166fe_65{border-color:#d72d40}._field_166fe_8:not(._disabled_166fe_16):hover ._box_166fe_32._error_166fe_65{border-color:#d72d40}._nativeInput_166fe_20:checked+._box_166fe_32._error_166fe_65{background:#d72d40;border-color:#d72d40}._nativeInput_166fe_20:focus-visible+._box_166fe_32._error_166fe_65{outline-color:#d72d40}._checkIcon_166fe_79{width:12px;height:12px;color:#fff;opacity:0;transform:scale(.85);transition:opacity .12s ease,transform .12s ease}._nativeInput_166fe_20:checked+._box_166fe_32 ._checkIcon_166fe_79{opacity:1;transform:scale(1)}._labelText_166fe_92{font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem;color:#2a2a2a;padding-top:1px;-webkit-user-select:none;user-select:none}._field_166fe_8._disabled_166fe_16 ._labelText_166fe_92{color:#525252}._root_osjxx_1{width:100%;background:#fff;border-radius:1rem;border:1px solid rgba(221,229,245,.7);padding:1.5rem 1.75rem;box-shadow:0 1px 2px #0f172a0a,0 12px 32px -18px #4573d940;color:#001a3d}._header_osjxx_11{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;margin-bottom:1.25rem;padding-bottom:1rem;border-bottom:1px solid rgba(221,229,245,.7)}._headerText_osjxx_21{display:flex;flex-direction:column;gap:.25rem}._eyebrow_osjxx_27{font-size:.6875rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:#4573d9}._title_osjxx_35{font-size:1.25rem;font-weight:700;color:#001a3d;line-height:1.2}._timeline_osjxx_42{display:flex;flex-direction:column}._level_osjxx_47{position:relative;display:grid;grid-template-columns:1.5rem 1fr;column-gap:1rem;padding-bottom:1.25rem}._level_osjxx_47:last-child{padding-bottom:0}._rail_osjxx_58{position:relative;display:flex;flex-direction:column;align-items:center}._railLine_osjxx_65{position:absolute;top:1.5rem;bottom:-.25rem;width:2px;background:#dde5f5;border-radius:2px}._railLine_completed_osjxx_74{background:#00a582}._railLine_toCurrent_osjxx_78{background:linear-gradient(to bottom,#00a582,#4573d9)}._marker_osjxx_82{position:relative;z-index:1;width:1.375rem;height:1.375rem;border-radius:50%;background:#fff;border:2px solid #c8c7cc;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;transition:box-shadow .2s ease,border-color .2s ease,background-color .2s ease}._marker_osjxx_82 svg{width:.75rem;height:.75rem}._marker_completed_osjxx_101{background:#00a582;border-color:#00a582;color:#fff}._marker_current_osjxx_107{border-color:#4573d9;background:#fff;box-shadow:0 0 0 4px #4573d92e}._marker_current_osjxx_107:after{content:"";width:.5rem;height:.5rem;border-radius:50%;background:#4573d9}._body_osjxx_120{min-width:0;padding-top:.0625rem}._levelHeader_osjxx_125{display:flex;align-items:center;gap:.5rem;margin-bottom:.625rem}._levelName_osjxx_132{font-size:.9375rem;font-weight:600;color:#525252;text-decoration:underline;text-decoration-color:#dde5f5;text-underline-offset:.25rem}._levelName_current_osjxx_141{color:#001a3d;font-weight:700;text-decoration-color:#4573d9}._levelName_completed_osjxx_147{color:#001a3d;font-weight:600}._iconButton_osjxx_152{display:inline-flex;align-items:center;justify-content:center;width:1.375rem;height:1.375rem;border-radius:50%;background:transparent;border:1px solid transparent;cursor:pointer;color:#525252;transition:background-color .15s ease,color .15s ease,border-color .15s ease;padding:0}._iconButton_osjxx_152 svg{width:.875rem;height:.875rem}._iconButton_osjxx_152:hover{background:#f4f7fa;color:#4573d9;border-color:#dde5f5}._iconButton_danger_osjxx_176:hover{background:#fee;color:#d72d40;border-color:#fee}._stages_osjxx_182{display:flex;flex-direction:column;gap:.625rem}._stage_osjxx_182{border:1px solid #dde5f5;border-radius:.75rem;padding:.75rem .875rem;background:#fff;transition:background-color .2s ease,border-color .2s ease}._stage_osjxx_182:hover{background:#f4f7fa99}._stage_current_osjxx_199{border-color:#4573d966;background:linear-gradient(180deg,#d3e8fa4d,#fff)}._stageHeader_osjxx_204{display:flex;align-items:center;justify-content:space-between;gap:.5rem;margin-bottom:.375rem}._stageName_osjxx_212{font-size:.8125rem;font-weight:700;color:#2a2a2a;letter-spacing:.02em;text-transform:uppercase}._stageActions_osjxx_220{display:inline-flex;align-items:center;flex-shrink:0;gap:.375rem}._approvers_osjxx_227{display:flex;flex-direction:column;gap:.25rem}._approver_osjxx_227{display:flex;align-items:flex-start;justify-content:space-between;gap:.625rem;padding:.25rem .125rem;border-radius:.375rem}._approverMain_osjxx_242{display:flex;flex-direction:column;gap:.125rem;min-width:0}._approverName_osjxx_249{font-size:.875rem;line-height:1.4;color:#001a3d}._approverName_pending_osjxx_255{color:#525252}._approverName_rejected_osjxx_259{color:#d72d40;font-weight:600}._approverName_approved_osjxx_264{color:#001a3d}._approverDate_osjxx_268{font-size:.75rem;color:gray}._rejectReason_osjxx_273{margin-top:.25rem;padding:.375rem .5rem;background:#fee;color:#d72d40;font-style:italic;font-size:.75rem;border-radius:.375rem}._empty_osjxx_283{display:inline-flex;align-items:center;gap:.375rem;padding:.25rem .5rem;background:#f9e1d7;color:#ff6b2c;border-radius:.375rem;font-size:.8125rem;font-weight:500}._empty_osjxx_283 svg{width:.875rem;height:.875rem;flex-shrink:0}._addStage_osjxx_300{display:inline-flex;align-items:center;gap:.25rem;margin-top:.25rem;background:transparent;border:1px dashed #aebfde;border-radius:.625rem;padding:.375rem .625rem;color:#4573d9;font-size:.8125rem;cursor:pointer;transition:all .15s ease}._addStage_osjxx_300:hover{background:#d3e8fa;border-color:#4573d9}._addStage_osjxx_300 svg{width:.875rem;height:.875rem}._addLevel_osjxx_323{margin-top:.25rem}._dialogContent_osjxx_327{display:flex;flex-direction:column;gap:.75rem}._dialogInput_osjxx_333{width:100%;padding:.625rem .75rem;font-size:.875rem;border:1px solid #dde5f5;border-radius:.5rem;outline:none;transition:border-color .15s ease,box-shadow .15s ease;color:#001a3d}._dialogInput_osjxx_333:focus{border-color:#4573d9;box-shadow:0 0 0 3px #4573d926}._dialogActions_osjxx_348{display:flex;justify-content:flex-end;gap:.5rem}._approverPickerWrap_osjxx_354{width:auto!important;max-width:100%;display:inline-flex;flex-shrink:0}._approverPickerInput_osjxx_361{width:auto!important;min-width:0!important;min-height:1.375rem!important;height:1.375rem!important;padding:0 .4375rem 0 .28125rem!important;border-radius:999px!important;border:1px solid transparent!important;background:transparent!important;box-shadow:none!important;color:#525252;display:inline-flex!important;align-items:center;justify-content:flex-start!important;gap:.21875rem!important}._approverPickerInput_osjxx_361>:first-child{flex:0 0 auto!important;min-width:0;overflow:visible!important;display:inline-flex!important;align-items:center;justify-content:center}._approverPickerInput_osjxx_361>:last-child{flex:0 0 auto!important;flex-shrink:0;display:inline-flex!important;align-items:center;gap:.21875rem}._approverPickerInput_osjxx_361 svg{width:.875rem;height:.875rem}._approverPickerInput_osjxx_361:hover{background:#f4f7fa!important;color:#4573d9;border-color:#dde5f5!important}._root_1426e_1{display:flex;flex-direction:column;gap:1.5rem;width:100%}._card_1426e_8{background-color:#fff;border-radius:1.5rem;padding:2rem;box-shadow:0 1px 2px #0f172a0a}._size_lg_1426e_15{padding:2.5rem}._section_1426e_19{display:flex;flex-direction:column;gap:1rem}._section_1426e_19+._section_1426e_19{padding-top:1.5rem;border-top:1px solid #dde5f5}._sectionHeader_1426e_29{display:flex;flex-direction:column;gap:.25rem;margin-bottom:.25rem}._sectionTitle_1426e_36{color:#4573d9;text-transform:none;letter-spacing:.01em;font-family:Navigo,RobotoRegular,sans-serif;font-weight:500;font-size:1rem;line-height:1.5rem}._sectionDescription_1426e_46{color:#525252;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.75rem;line-height:1.25rem}._fields_1426e_54{display:grid;grid-template-columns:1fr;row-gap:.25rem;column-gap:1.5rem}@media(min-width:900px){._fields_2col_1426e_62{grid-template-columns:1fr 1fr}}._field_1426e_54{display:grid;grid-template-columns:var(--cozy-detail-label-width, 14rem) 1fr;align-items:start;gap:1.25rem;padding:.625rem .75rem;margin:0 -.75rem;border-radius:.625rem;transition:background-color .18s ease}@media(max-width:640px){._field_1426e_54{grid-template-columns:1fr;gap:.25rem}}._field_span2_1426e_84{grid-column:1/-1}._field_interactive_1426e_88:hover{background-color:#f4f7fa}._label_1426e_92{color:#525252;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._value_1426e_100{color:#2a2a2a;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem;display:flex;flex-direction:column;gap:.25rem;min-width:0;word-break:break-word}._valueRow_1426e_113{display:inline-flex;align-items:baseline;gap:.5rem;flex-wrap:wrap}._copyTrigger_1426e_120{display:inline-flex;flex-shrink:0;transform:translateY(.125rem)}._copyableValue_1426e_126:not(:has(a)){text-decoration:underline;text-underline-offset:2px}._hint_1426e_131{color:gray;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.75rem;line-height:1.125rem}._empty_1426e_139{color:gray}._divider_1426e_143{height:1px;background-color:#dde5f5;border:none;margin:0}._loading_1426e_150{display:flex;align-items:center;justify-content:center;padding:3rem 0}._skeleton_1426e_157{display:flex;flex-direction:column;gap:.75rem}._skeleton_1426e_157>div{height:1.25rem;background:linear-gradient(90deg,#f4f7fa,#dde5f5,#f4f7fa);background-size:200% 100%;border-radius:.5rem;animation:_cozyShimmer_1426e_1 1.4s infinite linear}@keyframes _cozyShimmer_1426e_1{0%{background-position:200% 0}to{background-position:-200% 0}}._root_1z0dx_1{width:100%;background:#fff;border-radius:1rem;border:1px solid rgba(221,229,245,.7);padding:1.5rem 1.75rem;box-shadow:0 1px 2px #0f172a0a,0 12px 32px -18px #4573d940;color:#001a3d;display:flex;flex-direction:column;gap:1.25rem}._header_1z0dx_14{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;padding-bottom:1rem;border-bottom:1px solid rgba(221,229,245,.7)}._headerText_1z0dx_23{display:flex;flex-direction:column;gap:.25rem}._eyebrow_1z0dx_29{font-size:.6875rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:#4573d9}._title_1z0dx_37{font-size:1.25rem;font-weight:700;color:#001a3d;line-height:1.2}._counter_1z0dx_44{font-size:.8125rem;color:#525252;font-weight:500;padding:.25rem .625rem;background:#f4f7fa;border-radius:999px}._list_1z0dx_53{display:flex;flex-direction:column;gap:1rem}._loadOlderBtn_1z0dx_59{align-self:flex-start;display:inline-flex;align-items:center;gap:.375rem;background:transparent;border:1px dashed #aebfde;border-radius:999px;padding:.3125rem .75rem;color:#4573d9;font-size:.8125rem;font-weight:500;cursor:pointer;transition:all .15s ease}._loadOlderBtn_1z0dx_59:hover{background:#d3e8fa;border-color:#4573d9;border-style:solid}._loadOlderBtn_1z0dx_59:disabled{opacity:.6;cursor:default}._expandBtn_1z0dx_84{display:inline-flex;align-items:center;gap:.375rem;background:transparent;border:none;padding:.25rem 0;margin-top:.25rem;color:#4573d9;font-size:.8125rem;font-weight:600;cursor:pointer}._expandBtn_1z0dx_84:hover{text-decoration:underline}._item_1z0dx_102{display:grid;grid-template-columns:2.25rem 1fr;column-gap:.875rem;position:relative}._avatar_1z0dx_109{width:2.25rem;height:2.25rem;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;color:#fff;font-weight:600;font-size:.8125rem;letter-spacing:.02em;background:linear-gradient(135deg,#dee6f8,#4573d9 52%,#0e2c5c);flex-shrink:0;-webkit-user-select:none;user-select:none}._body_1z0dx_125{min-width:0;display:flex;flex-direction:column;gap:.375rem}._bubble_1z0dx_132{position:relative;background:linear-gradient(180deg,#f4f7fa99,#fff);border:1px solid #dde5f5;border-radius:0 .875rem .875rem;padding:.75rem .875rem .8125rem;transition:border-color .15s ease,box-shadow .15s ease}._bubble_1z0dx_132:hover{border-color:#4573d959;box-shadow:0 4px 14px -8px #4573d940}._bubble_1z0dx_132:hover ._actions_1z0dx_144{opacity:1}._bubble_deleted_1z0dx_148{background:#f4f7fa80;color:gray;font-style:italic}._meta_1z0dx_154{display:flex;align-items:baseline;gap:.5rem;flex-wrap:wrap;margin-bottom:.25rem}._author_1z0dx_162{font-size:.875rem;font-weight:700;color:#001a3d}._date_1z0dx_168{font-size:.75rem;color:gray}._editedTag_1z0dx_173{font-size:.6875rem;color:#525252;font-style:italic}._text_1z0dx_179{font-size:.9375rem;line-height:1.5;color:#001a3d;white-space:pre-wrap;word-wrap:break-word}._recipients_1z0dx_187{margin-top:.5rem;display:inline-flex;align-items:center;gap:.375rem;flex-wrap:wrap;font-size:.75rem;color:#525252}._recipients_1z0dx_187 svg{width:.875rem;height:.875rem;flex-shrink:0;opacity:.8}._attachments_1z0dx_203{margin-top:.5rem;display:flex;flex-wrap:wrap;gap:.375rem}._attachment_1z0dx_203{display:inline-flex;align-items:center;gap:.375rem;padding:.3125rem .5rem .3125rem .625rem;background:#fff;border:1px solid #dde5f5;border-radius:999px;font-size:.75rem;color:#001a3d;max-width:18rem}._attachment_1z0dx_203:hover{border-color:#4573d9;color:#4573d9}._attachmentName_1z0dx_227{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;cursor:pointer}._attachmentSize_1z0dx_234{color:gray;flex-shrink:0}._attachmentRemove_1z0dx_239{display:inline-flex;align-items:center;justify-content:center;width:1rem;height:1rem;border-radius:50%;border:none;background:transparent;color:#525252;cursor:pointer;padding:0}._attachmentRemove_1z0dx_239 svg{width:.6875rem;height:.6875rem}._attachmentRemove_1z0dx_239:hover{background:#fee;color:#d72d40}._attachmentSpinner_1z0dx_261{display:inline-flex;align-items:center;margin-left:.125rem}._actions_1z0dx_144{position:absolute;top:.5rem;right:.5rem;display:inline-flex;gap:.25rem;opacity:0;transition:opacity .15s ease}._iconButton_1z0dx_278{display:inline-flex;align-items:center;justify-content:center;width:1.5rem;height:1.5rem;border-radius:.375rem;background:#fff;border:1px solid #dde5f5;cursor:pointer;color:#525252;padding:0;transition:all .15s ease}._iconButton_1z0dx_278 svg{width:.875rem;height:.875rem}._iconButton_1z0dx_278:hover{background:#f4f7fa;color:#4573d9;border-color:#4573d9}._iconButton_danger_1z0dx_302:hover{background:#fee;color:#d72d40;border-color:#d72d40}._children_1z0dx_309{margin-top:.875rem;margin-left:1.125rem;padding-left:1.125rem;border-left:2px solid #dde5f5;display:flex;flex-direction:column;gap:1rem}._form_1z0dx_320{background:#fff;border:1px solid #dde5f5;border-radius:.875rem;padding:.75rem .875rem;display:flex;flex-direction:column;gap:.625rem}._form_root_1z0dx_330{background:linear-gradient(180deg,#d3e8fa40,#fff);border-color:#4573d940}._form_inline_1z0dx_335{margin-top:.625rem}._textarea_1z0dx_339{width:100%;min-height:4.5rem;resize:vertical;padding:.625rem .75rem;font-size:.9375rem;line-height:1.4;border:1px solid #dde5f5;border-radius:.625rem;outline:none;background:#fff;color:#001a3d;font-family:inherit;transition:border-color .15s ease,box-shadow .15s ease}._textarea_1z0dx_339:focus{border-color:#4573d9;box-shadow:0 0 0 3px #4573d926}._formRow_1z0dx_359{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.5rem}._formTools_1z0dx_367{display:inline-flex;align-items:center;gap:.375rem;flex-wrap:wrap}._formActions_1z0dx_374{display:inline-flex;align-items:center;gap:.5rem}._toolBtn_1z0dx_380{display:inline-flex;align-items:center;gap:.3125rem;background:#f4f7fa;border:1px solid transparent;border-radius:999px;padding:.3125rem .6875rem;font-size:.75rem;font-weight:500;color:#001a3d;cursor:pointer;transition:all .15s ease}._toolBtn_1z0dx_380 svg{width:.875rem;height:.875rem}._toolBtn_1z0dx_380:hover{background:#d3e8fa;color:#4573d9}._recipientsPickerWrap_1z0dx_403{width:auto!important;max-width:100%;display:inline-flex;flex-shrink:0}._recipientsPickerInput_1z0dx_410{width:auto!important;min-width:0!important;min-height:0!important;height:auto!important;padding:.3125rem .6875rem!important;border-radius:999px!important;border:1px solid transparent!important;background:#f4f7fa!important;box-shadow:none!important;color:#001a3d;font-size:.75rem;font-weight:500;line-height:1.2;display:inline-flex!important;align-items:center;justify-content:flex-start!important;gap:0!important;cursor:pointer;transition:all .15s ease}._recipientsPickerInput_1z0dx_410>:first-child{flex:0 0 auto!important;min-width:0;overflow:visible!important;display:inline-flex!important;align-items:center;color:#001a3d!important;font-size:.75rem;font-weight:500;white-space:nowrap}._recipientsPickerInput_1z0dx_410>:last-child{display:none!important}._recipientsPickerInput_1z0dx_410:hover{background:#d3e8fa!important;border-color:transparent!important;box-shadow:none!important}._recipientsPickerInput_1z0dx_410:hover>:first-child{color:#4573d9}._recipientsPickerInput_1z0dx_410:focus,._recipientsPickerInput_1z0dx_410:focus-visible{outline:none;border-color:transparent!important;box-shadow:none!important}._recipientsChips_1z0dx_459{display:flex;flex-wrap:wrap;gap:.3125rem}._chip_1z0dx_465{display:inline-flex;align-items:center;gap:.3125rem;padding:.1875rem .4375rem .1875rem .625rem;background:#d3e8fa99;color:#001a3d;border-radius:999px;font-size:.75rem}._chip_1z0dx_465 button{display:inline-flex;align-items:center;justify-content:center;width:.875rem;height:.875rem;border-radius:50%;border:none;background:transparent;color:#001a3d;cursor:pointer;padding:0}._chip_1z0dx_465 button svg{width:.625rem;height:.625rem}._chip_1z0dx_465 button:hover{background:#fff}._empty_1z0dx_496{padding:2rem 0}._skeleton_1z0dx_500{display:flex;flex-direction:column;gap:1rem;padding:1rem 0}._skeletonLine_1z0dx_507{height:.875rem;border-radius:.375rem;background:linear-gradient(90deg,#f4f7fa,#dde5f5,#f4f7fa);background-size:200% 100%;animation:_shimmer_1z0dx_1 1.4s ease-in-out infinite}@keyframes _shimmer_1z0dx_1{0%{background-position:200% 0}to{background-position:-200% 0}}._dialogContent_1z0dx_523{display:flex;flex-direction:column;gap:.75rem;font-size:.9375rem;color:#001a3d}._dialogActions_1z0dx_531{display:flex;justify-content:flex-end;gap:.5rem}._branchSpinner_1z0dx_537{display:inline-flex;align-items:center;margin-left:.375rem}._hiddenInput_1z0dx_543{display:none}._notice_1z0dx_547{font-size:.75rem;color:#525252;background:#fff1d8;border:1px solid rgba(255,163,0,.3);border-radius:.5rem;padding:.375rem .625rem}
|
|
1
|
+
.ui-library-placeholder{--ui-library-surface: oklch(.985 .004 247.858);--ui-library-surface-strong: oklch(1 0 0);--ui-library-text: oklch(.129 .042 264.695);--ui-library-muted: oklch(.554 .046 257.417);--ui-library-accent: oklch(.5762 .1643 263.7708);--ui-library-accent-text: oklch(.984 .003 247.858);--ui-library-border: oklch(.929 .013 255.508);display:grid;gap:.75rem;max-width:28rem;border:1px solid var(--ui-library-border);border-radius:.75rem;background:var(--ui-library-surface-strong);color:var(--ui-library-text);padding:1.25rem;box-shadow:0 1rem 2.5rem -2rem color-mix(in oklab,var(--ui-library-text) 35%,transparent);font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif}.ui-library-placeholder__badge{width:fit-content;border-radius:999px;background:var(--ui-library-surface);color:var(--ui-library-muted);padding:.25rem .625rem;font-size:.75rem;font-weight:600;line-height:1.25}.ui-library-placeholder__title{margin:0;font-size:1.125rem;font-weight:700;letter-spacing:0;line-height:1.4}.ui-library-placeholder__description{margin:0;color:var(--ui-library-muted);font-size:.875rem;line-height:1.6}.ui-library-placeholder__action{width:fit-content;border-radius:.5rem;background:var(--ui-library-accent);color:var(--ui-library-accent-text);padding:.625rem .875rem;font-size:.875rem;font-weight:600;line-height:1.2}.dark .ui-library-placeholder,.ui-library-placeholder[data-theme=dark]{--ui-library-surface: oklch(.279 .041 260.031);--ui-library-surface-strong: oklch(.208 .042 265.755);--ui-library-text: oklch(.984 .003 247.858);--ui-library-muted: oklch(.704 .04 256.788);--ui-library-accent: oklch(.5762 .1643 263.7708);--ui-library-accent-text: oklch(.208 .042 265.755);--ui-library-border: oklch(1 0 0 / 10%)}._block_tkxaf_1{background-color:#fff;border-radius:1.5rem;padding:2rem}._block_tkxaf_1 ._subtitle_tkxaf_6{color:#525252;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.75rem;line-height:1.5rem}._block_tkxaf_1 ._title_tkxaf_13{font-family:Navigo,RobotoRegular,sans-serif;font-weight:500;font-size:1.125rem;line-height:1.5rem}._cssloadContainer_akex8_1{width:100%;text-align:center}._cssloadSpeedingWheel_akex8_6{width:100px;height:100px;margin:0 auto;border:8px solid #4573d9;border-radius:50%;border-left-color:transparent;border-right-color:transparent;animation:_cssload-spin_akex8_1 1.25s infinite linear;-o-animation:_cssload-spin_akex8_1 1.25s infinite linear;-webkit-animation:_cssload-spin_akex8_1 1.25s infinite linear;-moz-animation:_cssload-spin_akex8_1 1.25s infinite linear}._bigSize_akex8_20{width:100px;height:100px;border-width:8px}._smallSize_akex8_26{width:40px;height:40px;border-width:4px}._extraSmallSize_akex8_32{width:20px;height:20px;border-width:2px}@keyframes _cssload-spin_akex8_1{to{transform:rotate(360deg)}}@-o-keyframes _cssload-spin_akex8_1{to{-o-transform:rotate(360deg);transform:rotate(360deg)}}@-ms-keyframes _cssload-spin_akex8_1{to{-ms-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes _cssload-spin_akex8_1{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes _cssload-spin_akex8_1{to{-moz-transform:rotate(360deg);transform:rotate(360deg)}}._button_fafaj_1{display:inline-flex;align-items:center;justify-content:center;position:relative;font-family:inherit;font-weight:500;line-height:1.5;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;user-select:none;border:1px solid transparent;transition:all .15s ease-in-out;background-color:transparent;margin:0}._button_fafaj_1:focus-visible{outline:2px solid #4573d9;outline-offset:2px}._button_fafaj_1:focus:not(:focus-visible){outline:none}._button--variant-primary_fafaj_26{background-color:#4573d9;color:#fff;border-color:#4573d9}._button--variant-primary_fafaj_26:hover:not(:disabled){background-color:#4573d9d9}._button--variant-primary_fafaj_26:active:not(:disabled){background-color:#2858c3}._button--variant-primary--disabled_fafaj_37,._button--variant-primary_fafaj_26:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:#c8c7cc;color:gray;border-color:#80808080}._button--variant-default_fafaj_45{background-color:#fff;color:#2a2a2a;border-color:#5252524d}._button--variant-default_fafaj_45:hover:not(:disabled){border-color:#4573d9;color:#4573d9}._button--variant-default_fafaj_45:active:not(:disabled){border-color:#2858c3;color:#2858c3}._button--variant-default--disabled_fafaj_58,._button--variant-default_fafaj_45:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:#c8c7cc;color:gray;border-color:#80808080}._button--variant-secondary_fafaj_66{background-color:#d3e8fa;color:#4573d9;border-color:transparent}._button--variant-secondary_fafaj_66:hover:not(:disabled){background-color:#d3e8fad9;border-color:transparent;color:#2858c3}._button--variant-secondary_fafaj_66:active:not(:disabled){background-color:#a5d0f5;border-color:transparent;color:#2858c3}._button--variant-secondary--disabled_fafaj_81,._button--variant-secondary_fafaj_66:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:#c8c7cc;color:gray;border-color:transparent}._button--variant-text_fafaj_89{background-color:transparent;color:#2a2a2a;border-color:transparent;border:none}._button--variant-text_fafaj_89:hover:not(:disabled){background-color:transparent;border-color:transparent;color:#2a2a2a99}._button--variant-text_fafaj_89:active:not(:disabled){background-color:transparent;border-color:transparent;color:#000}._button--variant-text--disabled_fafaj_105,._button--variant-text_fafaj_89:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:transparent;color:gray;border-color:transparent}._button--variant-link_fafaj_113{background-color:transparent;color:#4573d9;border-color:transparent;border:none}._button--variant-link_fafaj_113:hover:not(:disabled){background-color:transparent;border-color:transparent;color:#4573d9}._button--variant-link_fafaj_113:active:not(:disabled){background-color:transparent;border-color:transparent;color:#1f4599}._button--variant-link--disabled_fafaj_129,._button--variant-link_fafaj_113:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:transparent;color:gray;border-color:transparent}._button--variant-danger_fafaj_137{background-color:#fee;color:#d72d40}._button--variant-danger_fafaj_137:hover:not(:disabled){background-color:#ffe4e4}._button--variant-danger_fafaj_137:active:not(:disabled){background-color:#fbb}._button--variant-danger--disabled_fafaj_147,._button--variant-danger_fafaj_137:disabled{opacity:.65;pointer-events:none;cursor:not-allowed;background-color:#c8c7cc;color:gray;border-color:#80808080}._button--size-small_fafaj_155{padding:.25rem .6875rem;border-radius:.5rem;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._button--size-medium_fafaj_163{padding:.46875rem .9375rem;border-radius:.625rem;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._button--size-large_fafaj_171{padding:.625rem 1.25rem;border-radius:.75rem;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._button--variant-text_fafaj_89,._button--variant-link_fafaj_113{padding:0}._button--loading_fafaj_182{position:relative;pointer-events:none}._button--loading_fafaj_182 ._button__loader_fafaj_186{margin-left:.625rem}._button--loading_fafaj_182 ._button__loader_fafaj_186 div div{border-top-color:gray;border-bottom-color:gray}._button__content_fafaj_193{display:inline-flex;align-items:center;justify-content:center;gap:.3125rem}._container_1dkro_1{display:flex;max-width:max-content;background-color:#f4f7fa;border-radius:50px;position:relative}._container_1dkro_1 button{border:none;background-color:transparent;border-radius:50px;color:#2a2a2a;z-index:1;padding:.25rem 1rem}._container_1dkro_1 button._activeButton_1dkro_16,._container_1dkro_1 button._activeButton_1dkro_16:hover{color:#fff}._container_1dkro_1 ._slider_1dkro_22{height:100%;position:absolute;border-radius:50px;background-color:#4573d9;transition:transform .3s ease-in-out}._card_1cqzz_1{display:block;padding:1rem;white-space:pre;border-radius:1rem;background-size:cover;background-repeat:no-repeat;background-position:center}._card_1cqzz_1 span{font-family:Navigo,RobotoRegular,sans-serif;font-weight:500;font-size:1rem;line-height:1.25rem}._link_1cqzz_17{cursor:pointer}._link_1cqzz_17:hover span{display:inline-block;transition:transform .5s ease;transform:scale(1.03)}._mainBlue_1cqzz_26{background-color:#4573d9;color:#fff!important}._mainBlue__link_1cqzz_30{transition:filter .3s ease}._mainBlue__link_1cqzz_30:hover{filter:saturate(120%) brightness(1.05)}._lightBlue_1cqzz_37{background-color:#d3e8fa;color:#2a2a2a!important}._lightBlue__link_1cqzz_41{transition:filter .3s ease}._lightBlue__link_1cqzz_41:hover{filter:saturate(150%)}._darkBlue_1cqzz_48{background-color:#001a3d;color:#fff!important}._darkBlue__link_1cqzz_52{transition:filter .3s ease}._darkBlue__link_1cqzz_52:hover{filter:saturate(120%) brightness(1.2)}._carouselWrapper_12142_1{position:relative;z-index:20;width:100%}._carousel_12142_1{position:relative;width:100%;padding-bottom:3rem}._viewport_12142_13{position:relative;width:100%;overflow:hidden}._slide_12142_19{display:none;width:100%}._activeSlide_12142_24{display:block}._itemContent_12142_28{display:flex;align-items:center;justify-content:center;width:100%;height:100%}._controls_12142_36{position:absolute;right:0;bottom:0;left:0;z-index:5;display:flex;align-items:center;justify-content:center;gap:.625rem}._carouselControl_12142_48{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;padding:0;border:0;border-radius:50%;background-color:#fff;color:#000;box-shadow:0 4px 8px #0000001a;cursor:pointer;opacity:1;transition:opacity .15s ease,transform .15s ease}._carouselControl_12142_48:hover{opacity:.65}._carouselControl_12142_48:active{transform:scale(.96)}._prevIcon_12142_71,._nextIcon_12142_72{display:block;width:1.25rem;height:1.25rem;background-image:url("data:image/svg+xml,%3csvg%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M17.2929%209.29289C17.6834%208.90237%2018.3166%208.90237%2018.7071%209.29289C19.0976%209.68342%2019.0976%2010.3166%2018.7071%2010.7071L12.7071%2016.7071C12.3285%2017.0857%2011.7189%2017.0989%2011.3243%2016.7372L5.32428%2011.2372C4.91716%2010.864%204.88965%2010.2314%205.26285%209.82427C5.63604%209.41715%206.26861%209.38965%206.67573%209.76284L11.9699%2014.6159L17.2929%209.29289Z'%20fill='currentColor'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:50%;background-size:100% 100%}._prevIcon_12142_71{transform:rotate(90deg)}._nextIcon_12142_72{transform:rotate(-90deg)}._indicators_12142_90{z-index:2;display:flex;justify-content:center;padding:0;margin:0;list-style:none;gap:.375rem}._indicators_12142_90 button{width:.75rem;height:.75rem;padding:0;border:0;border-radius:50%;background:#0000001a;transition:background .25s,transform .25s;flex-shrink:0;cursor:pointer}._indicators_12142_90 button:hover{background-color:#c8c7cc}._indicators_12142_90 ._activeIndicator_12142_115{background:#00000080}._overlay_1pnex_1{position:fixed;padding:.5rem .75rem;background:#2a2a2a;color:#fff;font-size:.875rem;line-height:1.25rem;white-space:nowrap;border-radius:.25rem;pointer-events:none;z-index:20000;animation:_fadeIn_1pnex_1 .15s ease-out;box-shadow:0 2px 8px #00000026}._arrow_1pnex_16{position:absolute;width:.5rem;height:.5rem;border:.25rem solid transparent}._arrow_1pnex_16._top_1pnex_22{bottom:100%;left:50%;transform:translate(-50%);border-bottom-color:#2a2a2a}._arrow_1pnex_16._bottom_1pnex_28{top:100%;left:50%;transform:translate(-50%);border-top-color:#2a2a2a}._arrow_1pnex_16._left_1pnex_34{right:100%;top:50%;transform:translateY(-50%);border-right-color:#2a2a2a}._arrow_1pnex_16._right_1pnex_40{left:100%;top:50%;transform:translateY(-50%);border-left-color:#2a2a2a}@keyframes _fadeIn_1pnex_1{0%{opacity:0}to{opacity:1}}._wrapper_ukjvp_1{display:inline-flex}._trigger_ukjvp_5{display:inline-flex;align-items:center;gap:.125rem;text-decoration:underline;cursor:pointer;background:none;border:none;padding:0;font:inherit;text-align:left;color:#4573d9;transition:color .3s ease}._trigger_ukjvp_5:hover{color:#4573d9}._trigger_ukjvp_5 a,._trigger_ukjvp_5 a:hover,._trigger_ukjvp_5 a:focus-visible{text-decoration:none}._trigger_ukjvp_5:focus-visible{outline:2px solid #4573d9;outline-offset:2px}._trigger_iconOnly_ukjvp_32{text-decoration:none;color:#525252;line-height:1;min-height:0;padding:0}._trigger_iconOnly_ukjvp_32:hover{color:#4573d9}._icon_ukjvp_43{width:.875rem;height:.875rem;flex-shrink:0}._icon_ukjvp_43 path{fill:currentColor}._anchor_rpda1_1{position:fixed;pointer-events:none}._tooltip_rpda1_6{z-index:50;max-width:17.5rem;border:none;background-color:#fff;color:#2a2a2a;border-radius:.75rem;padding:.5rem .75rem;box-shadow:0 4px 20px #00000026}._tooltip_rpda1_6 .radix-tooltip-arrow{fill:#fff}._anchor_1qyyn_1{position:fixed;pointer-events:none}._triggerWrap_1qyyn_6{display:inline-flex;cursor:pointer}._popover_1qyyn_11{background-color:#fff;border-radius:8px;padding:24px;max-width:400px;min-width:400px;box-shadow:0 4px 20px #0000004d;position:relative;z-index:10}._popover_1qyyn_11 .arrow{position:absolute;display:block;width:.625rem;height:.625rem}._popover_1qyyn_11 .arrow:before{content:"";position:absolute;left:11px;width:100%;height:100%;background:#fff;transform:rotate(45deg);box-shadow:0 -4px 8px -4px #00000080}._popover_1qyyn_11[x-placement^=top-start] .arrow{bottom:-.625rem}._popover_1qyyn_11[x-placement^=top-start] .arrow:before{content:"";top:-5px}._popover_1qyyn_11[x-placement^=bottom-start] .arrow{top:-.625rem}._popover_1qyyn_11[x-placement^=bottom-start] .arrow:before{bottom:-5px}._popover_1qyyn_11[x-placement^=bottom-center] .arrow{top:-.625rem}._popover_1qyyn_11[x-placement^=bottom-center] .arrow:before{bottom:-5px;left:0}._popover_1qyyn_11[x-placement^=right-start] .arrow{top:-.625rem}._popover_1qyyn_11[x-placement^=right-start] .arrow:before{bottom:-5px;left:-28px}._emptyComponent_1wdgn_1{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:.75rem;color:#c8c7cc}._svgWrapper_1wdgn_11{margin-bottom:8px;display:flex;justify-content:center;align-items:center;color:#c8c7cc}._svgWrapper_1wdgn_11 svg{width:3.75rem;height:3.75rem}._title_1wdgn_23{font-size:16px;font-weight:500}._subtitle_1wdgn_28{margin:4px 0 8px}._container_xa163_1{width:100%;display:flex;flex-direction:column}._container_xa163_1 ._header_xa163_6{display:flex;justify-content:space-between;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._container_xa163_1 ._header_icon_xa163_14{display:flex;align-items:center;padding-top:.25rem;cursor:pointer}._container_xa163_1 ._header_icon_xa163_14 ._iconTransition_xa163_20{transition:all .15s}._container_xa163_1 ._header_icon_xa163_14 ._rotateIcon_xa163_23{transform:rotate(180deg)}._container_xa163_1 ._content_xa163_26{overflow:hidden;transition:height .3s ease;word-break:break-word}._container_xa163_1 ._content_xa163_26._padding_xa163_31{padding-top:.5rem}._collapsableBlock_86gg6_1{background-color:#fff;border-radius:1.5rem;padding:2rem}._collapsableBlock_86gg6_1 ._header_86gg6_6 span{font-family:Navigo,RobotoRegular,sans-serif;font-weight:500;font-size:1.125rem;line-height:1.5rem}._collapsableBlock_86gg6_1 ._headerWithInfoTooltip_86gg6_12{width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-right:.75rem}._collapsableBlock_86gg6_1 ._headerWithInfoTooltip_86gg6_12 ._infoIcon_86gg6_20{padding-top:.25rem}._caption_ltp0o_1{font-family:Navigo,RobotoRegular,sans-serif;font-style:normal;font-weight:400;font-size:12px;line-height:20px;margin:0;transition:.15s;animation-name:_fadeIn_ltp0o_1;animation-iteration-count:1;animation-timing-function:ease-in;animation-duration:.1s;opacity:1}._caption_neutral_ltp0o_16{color:#525252}._caption_error_ltp0o_20{color:#d72d40}._caption_success_ltp0o_24{color:#00a582}@keyframes _fadeIn_ltp0o_1{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}._fullWidth_ltp0o_38{white-space:nowrap}._label_1i8xb_1{font-family:Navigo,RobotoRegular,sans-serif;font-size:.625rem;line-height:.875rem;font-weight:400;font-size:10px;line-height:14px;color:gray}._label__text_1i8xb_11{margin-bottom:.375rem}._label_inline_1i8xb_14 ._label__text_1i8xb_11{margin-bottom:0}._labelRow_1kh14_1{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:4px}._helpIcon_1kh14_9{display:inline-flex;align-items:center;justify-content:center;align-self:center;width:20px;height:20px;padding:0;border:none;background:transparent;color:#aebfde;cursor:help;flex-shrink:0;border-radius:50%;transition:color .15s ease}._helpIcon_1kh14_9:hover{color:#4573d9}._helpIcon_1kh14_9:focus-visible{outline:1px solid #4573d9;outline-offset:2px}._helpIconSvg_1kh14_33{width:16px;height:16px;stroke-width:1.75}._wrapper_19g1g_1{font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.25rem;color:#2a2a2a;padding:.1875rem 1rem .1875rem .5rem;background-color:#f4f7fa;border:1px solid #aebfde;border-radius:.375rem;display:flex;align-items:center}._wrapper_small_19g1g_14{padding:.25rem 1rem}._wrapper_19g1g_1 ._iconCross_19g1g_17{margin-left:.625rem;margin-right:-.125rem;cursor:pointer;width:12px;height:12px;flex-shrink:0}._wrapper_19g1g_1 ._iconCross_small_19g1g_25{flex-shrink:0;width:9px;height:9px}._wrapper_94m4o_1{justify-content:center;width:100%}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5{width:100%;min-height:48px;display:flex;align-items:center;justify-content:space-between;border:1px solid #aebfde;background:#fff;border-radius:.375rem;padding:6px 6px 6px 12px;cursor:pointer}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5._error_94m4o_17{border:1px solid #d72d40}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5._disabled_94m4o_20{pointer-events:none;background-color:#c8c7cc4d}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5._disabled_94m4o_20 button{color:#525252!important}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5:focus{outline:1px solid #4573d9}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5._error_94m4o_17:focus{outline:1px solid #d72d40}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._tagContainer_94m4o_33{display:flex;gap:.25rem;flex-wrap:wrap}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._selectedOptionContainer_94m4o_38{display:flex;width:calc(100% - 7.5rem);text-align:left}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._selectedOptionContainer_94m4o_38 ._selectedOption_94m4o_38{word-break:break-word;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._selectedOptionContainer_94m4o_38 ._placeHolder_94m4o_49{width:100%;color:#525252}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53{position:relative;padding:0 .3125rem;display:flex;justify-items:center}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._deleteIcon_94m4o_59{z-index:5;max-height:34px;padding:0}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._deleteIcon_94m4o_59 span{width:24px;background:#fff;line-height:12px}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._deleteIcon_94m4o_59 svg{width:18px;height:18px}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._deleteIcon_94m4o_59 svg path{fill:gray}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._deleteIcon_94m4o_59:hover svg path{fill:#525252}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._divider_94m4o_79{padding:6px 8px}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._divider_94m4o_79 div{border-left:1px #aebfde solid;width:0;height:20px;min-height:20px}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._arrowIcon_94m4o_88{max-height:34px;padding:0;cursor:pointer;width:100%;justify-content:end}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._arrowIcon_94m4o_88 svg{width:16px;height:16px;transition:transform .15s ease}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._arrowIcon_94m4o_88:hover{color:#2a2a2a}._wrapper_94m4o_1 ._container_94m4o_5 ._input_94m4o_5 ._iconContainer_94m4o_53 ._arrowIconExpanded_94m4o_103 svg{transform:rotate(180deg)}._dropdown_94m4o_107{z-index:10000;background:#fff;width:100%;box-shadow:0 2px 7px #00000040;border-radius:8px;padding:12px 0 12px 12px;opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease}._dropdown_visible_94m4o_118{opacity:1;visibility:visible}._dropdown_94m4o_107>div{padding-right:6px;scrollbar-gutter:stable;overflow:hidden}._dropdown_94m4o_107 ul{list-style:none;padding:0;margin:0;overflow-y:auto}._dropdown_94m4o_107 ul._withSearch_94m4o_133{height:254px}._dropdown_94m4o_107 ._search_94m4o_136{height:2.25rem;width:100%;border-radius:1rem;background-color:#f4f7fa;padding:.375rem 16px;display:flex;flex-direction:row;align-items:center;border:1px solid #aebfde;position:relative;margin-bottom:.625rem}._dropdown_94m4o_107 ._search__icon_94m4o_149{margin-right:8px;width:18px;height:18px}._dropdown_94m4o_107 ._search__input_94m4o_154{width:100%;height:100%;background:#f4f7fa;border:none;padding:0 70px 0 0;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._dropdown_94m4o_107 ._search__input_94m4o_154::placeholder{color:#525252}._dropdown_94m4o_107 ._search__input_94m4o_154::-webkit-input-placeholder{color:#525252}._dropdown_94m4o_107 ._search__input_94m4o_154::-moz-placeholder{color:#525252}._dropdown_94m4o_107 ._search__input_94m4o_154:-ms-input-placeholder{color:#525252}._dropdown_94m4o_107 ._search__input_94m4o_154:-moz-placeholder{color:#525252}._dropdown_94m4o_107 ._option_94m4o_184{padding:10px 12px;cursor:default;border-radius:4px}._dropdown_94m4o_107 ._option_94m4o_184 ._selectedOption_94m4o_38{text-overflow:ellipsis}._dropdown_94m4o_107 ._option_94m4o_184:not(._dropdown_94m4o_107 ._option_active_94m4o_192):hover{background-color:#f4f7fa}._dropdown_94m4o_107 ._option_active_94m4o_192{background-color:#f4f7fa}._dropdown_94m4o_107 ._option_active_next_active_94m4o_198{border-bottom-left-radius:0;border-bottom-right-radius:0}._dropdown_94m4o_107 ._option_active_prev_active_94m4o_202{border-top-left-radius:0;border-top-right-radius:0}._empty_94m4o_207{width:100%;padding:.625rem 3.75rem;display:flex;flex-direction:column;gap:.625rem}._empty__image_94m4o_214{height:130px;background-size:130px;background-repeat:no-repeat;background-position:50% 0}._empty__text_94m4o_220{text-align:center;color:#525252;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._tableTemplate_94m4o_229{display:flex;flex-direction:column;height:100%;gap:12px}._tableContainer_94m4o_236{flex:1;min-height:0;overflow:auto;border:1px solid #dde5f5;border-radius:8px;background:#fff}._table_94m4o_229{width:100%;border-collapse:collapse;font-size:14px;line-height:20px}._table_94m4o_229 th{position:sticky;top:0;z-index:1;padding:10px 16px;text-align:center;color:#525252;background:#fff;border-bottom:1px solid #dde5f5;font-weight:500}._table_94m4o_229 td{padding:10px 16px;color:#001a3d;text-align:center}._table_94m4o_229 tbody tr{cursor:pointer;transition:background-color .15s ease}._table_94m4o_229 tbody tr:nth-child(odd){background:#f4f7fa99}._table_94m4o_229 tbody tr:hover{background:#d3e8fa}._activeRow_94m4o_278{background:#d3e8fa!important}._activeRow_94m4o_278 td{font-weight:600}._checkboxCell_94m4o_285{width:44px;text-align:center;padding-left:12px!important;padding-right:8px!important}._checkbox_94m4o_285{width:16px;height:16px;cursor:pointer;accent-color:#4573d9;margin:0}._footerTotal_94m4o_300{color:#525252;font-size:13px;line-height:18px;padding:0 4px 4px}._wrapper_4ju0w_1{width:100%}._input_4ju0w_5{width:100%;min-height:48px;display:flex;align-items:center;justify-content:space-between;gap:16px;border:1px solid #aebfde;background:#fff;border-radius:.375rem;padding:6px 12px;cursor:pointer;transition:border-color .15s ease,box-shadow .15s ease,background-color .15s ease}._input_4ju0w_5:focus,._input_4ju0w_5:focus-visible,._input_4ju0w_5:hover{outline:none;border-color:#4573d9;box-shadow:0 0 0 2px #4573d914}._error_4ju0w_25{border-color:#d72d40}._error_4ju0w_25:focus,._error_4ju0w_25:focus-visible,._error_4ju0w_25:hover{border-color:#d72d40;box-shadow:0 0 0 2px #d72d4014}._disabled_4ju0w_33{pointer-events:none;background-color:#c8c7cc4d;color:#525252}._selectedOption_4ju0w_39{min-width:0;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#2a2a2a;font-size:14px;line-height:20px}._placeholder_4ju0w_50{color:#525252}._actions_4ju0w_54{display:inline-flex;align-items:center;flex-shrink:0;gap:10px}._clearButton_4ju0w_61{width:24px;height:24px}._clearButton_4ju0w_61 svg{width:16px;height:16px}._selectButton_4ju0w_70{color:#4573d9;white-space:nowrap;font-size:14px;line-height:20px}._dialogContent_4ju0w_77{width:calc(100vw - 32px);max-width:780px;max-height:calc(100vh - 32px);display:flex;flex-direction:column;gap:16px;border:none;border-radius:18px;background:#fff;padding:28px 32px 24px;box-shadow:0 24px 70px #0000003d;overflow:hidden}._dialogHeader_4ju0w_92{display:block;text-align:left}._dialogTitle_4ju0w_97{color:#001a3d;font-size:20px;line-height:26px;font-weight:700}._search_4ju0w_104{min-height:36px;display:flex;align-items:center;gap:10px;border:1px solid #aebfde;border-radius:999px;background:#f4f7fa;padding:5px 12px 5px 24px;position:relative}._search_4ju0w_104:focus-within{border-color:#4573d9;box-shadow:0 0 0 2px #4573d914}._searchIcon_4ju0w_120{width:18px;height:18px;flex-shrink:0;color:#525252}._searchIcon_4ju0w_120 path{stroke:#525252;stroke-width:1.4}._searchInput_4ju0w_131{min-width:0;flex:1;border:0;outline:0;background:transparent;color:#001a3d;font-weight:500;font-size:15px;line-height:22px}._searchInput_4ju0w_131::placeholder{color:#525252}._searchInput_4ju0w_131::-webkit-input-placeholder{color:#525252}._searchInput_4ju0w_131::-moz-placeholder{color:#525252}._searchInput_4ju0w_131:-ms-input-placeholder{color:#525252}._searchInput_4ju0w_131:-moz-placeholder{color:#525252}._searchSpinner_4ju0w_162{flex-shrink:0}._tableContainer_4ju0w_166{min-height:280px;max-height:min(48vh,390px);overflow:auto;border:1px solid #dde5f5;border-radius:10px;background:#fff}._table_4ju0w_166{width:100%;border-collapse:collapse}._table_4ju0w_166 th{position:sticky;top:0;z-index:1;padding:12px 24px;text-align:left;color:#525252;background:#fff;border-bottom:1px solid #dde5f5;font-weight:500;font-size:14px;line-height:20px}._table_4ju0w_166 td{padding:13px 24px;color:#001a3d;font-size:15px;line-height:22px}._table_4ju0w_166 tbody tr{cursor:pointer;transition:background-color .15s ease}._table_4ju0w_166 tbody tr:nth-child(odd){background:#f4f7fab8}._table_4ju0w_166 tbody tr:hover{background:#d3e8fa}._activeRow_4ju0w_209{background:#d3e8fa!important}._activeRow_4ju0w_209 td{font-weight:700}._emptyState_4ju0w_216{min-height:220px;display:flex;align-items:center;justify-content:center}._dialogFooter_4ju0w_223{display:flex;align-items:center;justify-content:space-between;gap:12px;padding-top:0}._pagination_4ju0w_231,._footerActions_4ju0w_232{display:flex;align-items:center;gap:10px}._footerActions_4ju0w_232{justify-content:flex-end;flex-wrap:wrap}._dialogFooter_4ju0w_223 button{min-height:36px;padding:7px 14px;font-size:14px;line-height:20px;border-radius:10px}._pageInfo_4ju0w_251{color:#525252;white-space:nowrap;font-size:14px;line-height:20px}@media(max-width:680px){._dialogContent_4ju0w_77{padding:22px 16px 18px;border-radius:14px}._dialogFooter_4ju0w_223{align-items:stretch;flex-direction:column}._pagination_4ju0w_231,._footerActions_4ju0w_232{justify-content:space-between;flex-wrap:wrap}._table_4ju0w_166 th,._table_4ju0w_166 td{padding:12px 14px}}._wrapper_15kqr_1{width:100%}._input_15kqr_5{width:100%;min-height:48px;display:flex;align-items:center;justify-content:space-between;gap:16px;border:1px solid #aebfde;background:#fff;border-radius:.375rem;padding:6px 12px;cursor:pointer;transition:border-color .15s ease,box-shadow .15s ease,background-color .15s ease}._input_15kqr_5:focus,._input_15kqr_5:focus-visible,._input_15kqr_5:hover{outline:none;border-color:#4573d9;box-shadow:0 0 0 2px #4573d914}._error_15kqr_25{border-color:#d72d40}._error_15kqr_25:focus,._error_15kqr_25:focus-visible,._error_15kqr_25:hover{border-color:#d72d40;box-shadow:0 0 0 2px #d72d4014}._disabled_15kqr_33{pointer-events:none;background-color:#c8c7cc4d;color:#525252}._selectedOption_15kqr_39{min-width:0;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#2a2a2a;font-size:14px;line-height:20px}._placeholder_15kqr_50{color:#525252}._actions_15kqr_54{display:inline-flex;align-items:center;flex-shrink:0;gap:10px}._clearButton_15kqr_61{width:24px;height:24px}._clearButton_15kqr_61 svg{width:16px;height:16px}._selectButton_15kqr_70{color:#4573d9;white-space:nowrap;font-size:14px;line-height:20px}._dialogContent_15kqr_77{width:calc(100vw - 32px);max-width:720px;max-height:calc(100vh - 32px);display:flex;flex-direction:column;gap:16px;border:none;border-radius:18px;background:#fff;padding:28px 32px 24px;box-shadow:0 24px 70px #0000003d;overflow:hidden}._dialogHeader_15kqr_92{display:block;text-align:left}._dialogTitle_15kqr_97{color:#001a3d;font-size:20px;line-height:26px;font-weight:700}._search_15kqr_104{min-height:36px;display:flex;align-items:center;gap:10px;border:1px solid #aebfde;border-radius:999px;background:#f4f7fa;padding:5px 12px 5px 24px;position:relative}._search_15kqr_104:focus-within{border-color:#4573d9;box-shadow:0 0 0 2px #4573d914}._searchIcon_15kqr_120{width:18px;height:18px;flex-shrink:0;color:#525252}._searchIcon_15kqr_120 path{stroke:#525252;stroke-width:1.4}._searchInput_15kqr_131{min-width:0;flex:1;border:0;outline:0;background:transparent;color:#001a3d;font-weight:500;font-size:15px;line-height:22px}._searchInput_15kqr_131::placeholder{color:#525252}._searchInput_15kqr_131::-webkit-input-placeholder{color:#525252}._searchInput_15kqr_131::-moz-placeholder{color:#525252}._searchInput_15kqr_131:-ms-input-placeholder{color:#525252}._searchInput_15kqr_131:-moz-placeholder{color:#525252}._searchSpinner_15kqr_162{flex-shrink:0}._treeContainer_15kqr_166{min-height:280px;max-height:min(48vh,420px);overflow:auto;border:1px solid #dde5f5;border-radius:10px;background:#fff;padding:6px 0}._row_15kqr_176{display:flex;align-items:center;gap:6px;padding:8px 16px;cursor:pointer;color:#001a3d;font-size:15px;line-height:22px;transition:background-color .15s ease}._row_15kqr_176:hover,._row_active_15kqr_191{background:#d3e8fa}._row_active_15kqr_191 ._nodeLabel_15kqr_194{font-weight:700}._row_match_15kqr_198 ._nodeLabel_15kqr_194{color:#4573d9}._chevron_15kqr_202{width:22px;height:22px;display:inline-flex;align-items:center;justify-content:center;border:0;background:transparent;cursor:pointer;color:#525252;border-radius:4px;flex-shrink:0;transition:transform .15s ease,background-color .15s ease}._chevron_15kqr_202:hover{background:#4573d91a;color:#4573d9}._chevron_15kqr_202 svg{width:12px;height:12px;transform:rotate(-90deg);transition:transform .15s ease}._chevronExpanded_15kqr_227 svg{transform:rotate(0)}._chevronPlaceholder_15kqr_231{width:22px;height:22px;flex-shrink:0}._nodeSpinner_15kqr_237{margin-left:4px}._nodeLabel_15kqr_194{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._emptyState_15kqr_249,._loadingState_15kqr_256{min-height:220px;display:flex;align-items:center;justify-content:center}._dialogFooter_15kqr_263{display:flex;align-items:center;justify-content:flex-end;gap:10px;padding-top:0}._dialogFooter_15kqr_263 button{min-height:36px;padding:7px 14px;font-size:14px;line-height:20px;border-radius:10px}@media(max-width:680px){._dialogContent_15kqr_77{padding:22px 16px 18px;border-radius:14px}._dialogFooter_15kqr_263{flex-direction:column-reverse;align-items:stretch}}._wrapper_1wain_1{position:relative;overflow:visible}._tabs_1wain_6{display:flex;position:relative;white-space:nowrap;align-items:flex-end;overflow:visible;isolation:isolate;z-index:2;margin-bottom:-1px}._tabs_1wain_6 ._tabItem_1wain_16{font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.25rem;font-weight:500;display:flex;align-items:center;justify-content:center;padding:0 16px;width:180px;height:45px;cursor:pointer;position:relative;color:gray;background-color:#f4f7fa;border:1px solid #dde5f5;border-top-left-radius:12px;border-top-right-radius:12px;text-align:center;margin-left:-12px;z-index:2;margin-bottom:0}._tabs_1wain_6 ._tabItem_1wain_16:first-child{margin-left:0}._tabs_1wain_6 ._tabItem_1wain_16:last-child{margin-right:0}._tabs_1wain_6 ._tabItem_1wain_16._active_1wain_46{background:#fff;color:#4573d9;border-bottom:none;z-index:10}._tabs_1wain_6 ._tabItem_1wain_16._active_1wain_46:first-child:before{content:"";position:absolute;bottom:0;left:-1px;width:1px;height:12px;background:#dde5f5}._tabs_1wain_6 ._tabItem_1wain_16 ._before_1wain_61,._tabs_1wain_6 ._tabItem_1wain_16 ._after_1wain_62{position:absolute;bottom:0;width:20px;height:20px;overflow:hidden;pointer-events:none}._tabs_1wain_6 ._tabItem_1wain_16 ._before_1wain_61{left:-20px}._tabs_1wain_6 ._tabItem_1wain_16 ._before_1wain_61:before{content:"";position:absolute;right:0;bottom:0;width:20px;height:20px;border-right:1px solid #dde5f5;border-bottom:1px solid #dde5f5;border-bottom-right-radius:12px;box-shadow:10px 10px 0 10px #fff}._tabs_1wain_6 ._tabItem_1wain_16 ._after_1wain_62{right:-20px}._tabs_1wain_6 ._tabItem_1wain_16 ._after_1wain_62:before{content:"";position:absolute;bottom:0;left:0;width:20px;height:20px;border-left:1px solid #dde5f5;border-bottom:1px solid #dde5f5;border-bottom-left-radius:12px;box-shadow:-10px 10px 0 10px #fff}._panel_1wain_101{position:relative;z-index:1;min-height:56px;padding:16px 20px;border:1px solid #dde5f5;border-radius:0 0 12px 12px;background-color:#fff}._wrapper_1xj0t_1{width:100%;display:flex;align-items:center;gap:0}._itemBlock_1xj0t_8{display:inline-flex;flex-direction:column;align-items:center;gap:8px;flex-shrink:0}._step_1xj0t_16{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;background:#4573d9;color:#fff;font-weight:600;font-size:14px;line-height:1;flex-shrink:0;border:0;padding:0;cursor:default;transition:background-color .2s ease,color .2s ease,transform .15s ease,box-shadow .2s ease}._step_1xj0t_16 svg{width:14px;height:14px}._clickable_1xj0t_39{cursor:pointer}._clickable_1xj0t_39:hover{transform:scale(1.05)}._step_inactive_1xj0t_46{background:#d3e8fa;color:#fff}._step_current_1xj0t_51{box-shadow:0 0 0 4px #4573d92e}._connector_1xj0t_55{flex:1;height:1px;background:#dde5f5;min-width:24px}._connector_active_1xj0t_62{background:#4573d9}._label_1xj0t_66{font-size:12px;line-height:16px;color:#525252;white-space:nowrap;text-align:center}._label_active_1xj0t_74{color:#001a3d;font-weight:600}._container_1whkx_1{position:relative}._container_1whkx_1 ._tabs_1whkx_4{display:flex;gap:32px;white-space:nowrap;border-bottom:2px solid #c8c7cc;width:min-content}._container_1whkx_1 ._tabs_1whkx_4 ._line_1whkx_11{padding:0;background-color:#4573d9;bottom:-2px;height:2px;position:absolute;transition:left .22s ease-out,width .22s ease-out;pointer-events:none;z-index:1}._container_1whkx_1 ._tabs_1whkx_4 ._tabItem_1whkx_21{font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.25rem;padding:16px 0;cursor:pointer;transition:all .15s ease-out;position:relative}._container_1whkx_1 ._tabs_1whkx_4 ._tabItem_1whkx_21:hover{color:#4573d9}._container_1whkx_1 ._tabs_1whkx_4 ._tabItem_1whkx_21 ._header_1whkx_34{position:absolute;top:-.625rem;left:0;color:gray;font-size:12px;font-weight:400}._container_1whkx_1 ._tabs_1whkx_4 ._tabItem_1whkx_21 ._notificationChanges_1whkx_42{display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box;min-width:.9375rem;min-height:.9375rem;aspect-ratio:1;padding:0;color:#fff;background-color:#d72d40;border-radius:50%;font-size:10px;font-weight:600;line-height:1;right:-14px;position:absolute;top:.375rem}._container_1whkx_1 ._tabs_hasAnimatedIndicator_1whkx_61{position:relative}._container_1whkx_1 ._tabs_hasAnimatedIndicator_1whkx_61 ._tabItem_1whkx_21._active_1whkx_64:after{border-bottom-width:0}._wrapper_rkn19_1{justify-content:center;width:100%}._container_rkn19_6{width:100%}._input_rkn19_10{width:100%;min-height:48px;border:1px solid #aebfde;background:#fff;border-radius:.375rem;padding:6px 12px;outline:none;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._input_rkn19_10::placeholder{color:#525252}._input_rkn19_10::-webkit-input-placeholder{color:#525252}._input_rkn19_10::-moz-placeholder{color:#525252}._input_rkn19_10:-ms-input-placeholder{color:#525252}._input_rkn19_10:-moz-placeholder{color:#525252}._input_rkn19_10:focus{outline:1px solid #4573d9}._input_rkn19_10._error_rkn19_45{border:1px solid #d72d40}._input_rkn19_10._error_rkn19_45:focus{outline:1px solid #d72d40}._input_rkn19_10._disabled_rkn19_51{pointer-events:none;background-color:#c8c7cc4d;color:#525252}._wrapper_10aju_1{justify-content:center;width:100%}._container_10aju_6{width:100%}._textarea_10aju_10{width:100%;min-height:4.5rem;resize:vertical;border:1px solid #aebfde;background:#fff;border-radius:.375rem;padding:6px 12px;outline:none;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._textarea_10aju_10::placeholder{color:#525252}._textarea_10aju_10::-webkit-input-placeholder{color:#525252}._textarea_10aju_10::-moz-placeholder{color:#525252}._textarea_10aju_10:-ms-input-placeholder{color:#525252}._textarea_10aju_10:-moz-placeholder{color:#525252}._textarea_10aju_10:focus{outline:1px solid #4573d9}._textarea_10aju_10._error_10aju_46{border:1px solid #d72d40}._textarea_10aju_10._error_10aju_46:focus{outline:1px solid #d72d40}._textarea_10aju_10._disabled_10aju_52{pointer-events:none;background-color:#c8c7cc4d;color:#525252}._wrapper_1sqfs_1{display:flex;flex-direction:column;width:100%;margin-bottom:12px}._trigger_1sqfs_8{box-sizing:border-box;display:flex;width:100%;min-height:48px;align-items:center;justify-content:space-between;gap:8px;border:1px solid #aebfde;background:#fff;border-radius:.375rem;padding:6px 12px;text-align:left;outline:none;cursor:pointer;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._trigger_1sqfs_8:focus{outline:1px solid #4573d9}._trigger_1sqfs_8:disabled{pointer-events:none;background-color:#c8c7cc4d;color:#525252;cursor:default}._trigger_1sqfs_8._error_1sqfs_37{border:1px solid #d72d40}._trigger_1sqfs_8._error_1sqfs_37:focus{outline:1px solid #d72d40}._triggerValue_1sqfs_44{min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._triggerIcon_1sqfs_51{width:16px;height:16px;flex-shrink:0;opacity:.6}._wrapper_1mrfs_1{display:flex;flex-direction:column;gap:.375rem;width:100%}._field_1mrfs_8{display:inline-flex;align-items:flex-start;gap:.75rem;width:fit-content;max-width:100%}._field_1mrfs_8._disabled_1mrfs_15{cursor:not-allowed}._control_1mrfs_19{display:inline-flex;flex-shrink:0;cursor:pointer}._field_1mrfs_8._disabled_1mrfs_15 ._control_1mrfs_19{cursor:not-allowed}._labelWithTooltip_1mrfs_28{margin-bottom:0;align-items:flex-start;padding-top:1px;flex:1;min-width:0}._nativeInput_1mrfs_36{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}._box_1mrfs_48{position:relative;flex-shrink:0;display:flex;align-items:center;justify-content:center;width:20px;height:20px;border:1px solid #aebfde;border-radius:.375rem;background:#fff;transition:border-color .15s ease,background-color .15s ease,box-shadow .15s ease}._field_1mrfs_8:not(._disabled_1mrfs_15) ._control_1mrfs_19:hover ._box_1mrfs_48{border-color:#4573d9}._nativeInput_1mrfs_36:focus-visible+._box_1mrfs_48{outline:1px solid #4573d9;outline-offset:1px}._nativeInput_1mrfs_36:checked+._box_1mrfs_48{border-color:#4573d9;background:#4573d9}._nativeInput_1mrfs_36:disabled+._box_1mrfs_48{border-color:#aebfde;background:#c8c7cc4d;pointer-events:none}._nativeInput_1mrfs_36:checked:disabled+._box_1mrfs_48{background:#4573d973;border-color:#4573d973}._box_1mrfs_48._error_1mrfs_81{border-color:#d72d40}._field_1mrfs_8:not(._disabled_1mrfs_15) ._control_1mrfs_19:hover ._box_1mrfs_48._error_1mrfs_81{border-color:#d72d40}._nativeInput_1mrfs_36:checked+._box_1mrfs_48._error_1mrfs_81{background:#d72d40;border-color:#d72d40}._nativeInput_1mrfs_36:focus-visible+._box_1mrfs_48._error_1mrfs_81{outline-color:#d72d40}._checkIcon_1mrfs_95{width:12px;height:12px;color:#fff;opacity:0;transform:scale(.85);transition:opacity .12s ease,transform .12s ease}._nativeInput_1mrfs_36:checked+._box_1mrfs_48 ._checkIcon_1mrfs_95{opacity:1;transform:scale(1)}._labelText_1mrfs_108{font-family:Navigo,RobotoRegular,sans-serif;font-size:.875rem;line-height:1.5rem;color:#2a2a2a;padding-top:1px;-webkit-user-select:none;user-select:none;cursor:pointer;font-weight:400}._field_1mrfs_8._disabled_1mrfs_15 ._labelText_1mrfs_108{color:#525252;cursor:not-allowed}._root_osjxx_1{width:100%;background:#fff;border-radius:1rem;border:1px solid rgba(221,229,245,.7);padding:1.5rem 1.75rem;box-shadow:0 1px 2px #0f172a0a,0 12px 32px -18px #4573d940;color:#001a3d}._header_osjxx_11{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;margin-bottom:1.25rem;padding-bottom:1rem;border-bottom:1px solid rgba(221,229,245,.7)}._headerText_osjxx_21{display:flex;flex-direction:column;gap:.25rem}._eyebrow_osjxx_27{font-size:.6875rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:#4573d9}._title_osjxx_35{font-size:1.25rem;font-weight:700;color:#001a3d;line-height:1.2}._timeline_osjxx_42{display:flex;flex-direction:column}._level_osjxx_47{position:relative;display:grid;grid-template-columns:1.5rem 1fr;column-gap:1rem;padding-bottom:1.25rem}._level_osjxx_47:last-child{padding-bottom:0}._rail_osjxx_58{position:relative;display:flex;flex-direction:column;align-items:center}._railLine_osjxx_65{position:absolute;top:1.5rem;bottom:-.25rem;width:2px;background:#dde5f5;border-radius:2px}._railLine_completed_osjxx_74{background:#00a582}._railLine_toCurrent_osjxx_78{background:linear-gradient(to bottom,#00a582,#4573d9)}._marker_osjxx_82{position:relative;z-index:1;width:1.375rem;height:1.375rem;border-radius:50%;background:#fff;border:2px solid #c8c7cc;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;transition:box-shadow .2s ease,border-color .2s ease,background-color .2s ease}._marker_osjxx_82 svg{width:.75rem;height:.75rem}._marker_completed_osjxx_101{background:#00a582;border-color:#00a582;color:#fff}._marker_current_osjxx_107{border-color:#4573d9;background:#fff;box-shadow:0 0 0 4px #4573d92e}._marker_current_osjxx_107:after{content:"";width:.5rem;height:.5rem;border-radius:50%;background:#4573d9}._body_osjxx_120{min-width:0;padding-top:.0625rem}._levelHeader_osjxx_125{display:flex;align-items:center;gap:.5rem;margin-bottom:.625rem}._levelName_osjxx_132{font-size:.9375rem;font-weight:600;color:#525252;text-decoration:underline;text-decoration-color:#dde5f5;text-underline-offset:.25rem}._levelName_current_osjxx_141{color:#001a3d;font-weight:700;text-decoration-color:#4573d9}._levelName_completed_osjxx_147{color:#001a3d;font-weight:600}._iconButton_osjxx_152{display:inline-flex;align-items:center;justify-content:center;width:1.375rem;height:1.375rem;border-radius:50%;background:transparent;border:1px solid transparent;cursor:pointer;color:#525252;transition:background-color .15s ease,color .15s ease,border-color .15s ease;padding:0}._iconButton_osjxx_152 svg{width:.875rem;height:.875rem}._iconButton_osjxx_152:hover{background:#f4f7fa;color:#4573d9;border-color:#dde5f5}._iconButton_danger_osjxx_176:hover{background:#fee;color:#d72d40;border-color:#fee}._stages_osjxx_182{display:flex;flex-direction:column;gap:.625rem}._stage_osjxx_182{border:1px solid #dde5f5;border-radius:.75rem;padding:.75rem .875rem;background:#fff;transition:background-color .2s ease,border-color .2s ease}._stage_osjxx_182:hover{background:#f4f7fa99}._stage_current_osjxx_199{border-color:#4573d966;background:linear-gradient(180deg,#d3e8fa4d,#fff)}._stageHeader_osjxx_204{display:flex;align-items:center;justify-content:space-between;gap:.5rem;margin-bottom:.375rem}._stageName_osjxx_212{font-size:.8125rem;font-weight:700;color:#2a2a2a;letter-spacing:.02em;text-transform:uppercase}._stageActions_osjxx_220{display:inline-flex;align-items:center;flex-shrink:0;gap:.375rem}._approvers_osjxx_227{display:flex;flex-direction:column;gap:.25rem}._approver_osjxx_227{display:flex;align-items:flex-start;justify-content:space-between;gap:.625rem;padding:.25rem .125rem;border-radius:.375rem}._approverMain_osjxx_242{display:flex;flex-direction:column;gap:.125rem;min-width:0}._approverName_osjxx_249{font-size:.875rem;line-height:1.4;color:#001a3d}._approverName_pending_osjxx_255{color:#525252}._approverName_rejected_osjxx_259{color:#d72d40;font-weight:600}._approverName_approved_osjxx_264{color:#001a3d}._approverDate_osjxx_268{font-size:.75rem;color:gray}._rejectReason_osjxx_273{margin-top:.25rem;padding:.375rem .5rem;background:#fee;color:#d72d40;font-style:italic;font-size:.75rem;border-radius:.375rem}._empty_osjxx_283{display:inline-flex;align-items:center;gap:.375rem;padding:.25rem .5rem;background:#f9e1d7;color:#ff6b2c;border-radius:.375rem;font-size:.8125rem;font-weight:500}._empty_osjxx_283 svg{width:.875rem;height:.875rem;flex-shrink:0}._addStage_osjxx_300{display:inline-flex;align-items:center;gap:.25rem;margin-top:.25rem;background:transparent;border:1px dashed #aebfde;border-radius:.625rem;padding:.375rem .625rem;color:#4573d9;font-size:.8125rem;cursor:pointer;transition:all .15s ease}._addStage_osjxx_300:hover{background:#d3e8fa;border-color:#4573d9}._addStage_osjxx_300 svg{width:.875rem;height:.875rem}._addLevel_osjxx_323{margin-top:.25rem}._dialogContent_osjxx_327{display:flex;flex-direction:column;gap:.75rem}._dialogInput_osjxx_333{width:100%;padding:.625rem .75rem;font-size:.875rem;border:1px solid #dde5f5;border-radius:.5rem;outline:none;transition:border-color .15s ease,box-shadow .15s ease;color:#001a3d}._dialogInput_osjxx_333:focus{border-color:#4573d9;box-shadow:0 0 0 3px #4573d926}._dialogActions_osjxx_348{display:flex;justify-content:flex-end;gap:.5rem}._approverPickerWrap_osjxx_354{width:auto!important;max-width:100%;display:inline-flex;flex-shrink:0}._approverPickerInput_osjxx_361{width:auto!important;min-width:0!important;min-height:1.375rem!important;height:1.375rem!important;padding:0 .4375rem 0 .28125rem!important;border-radius:999px!important;border:1px solid transparent!important;background:transparent!important;box-shadow:none!important;color:#525252;display:inline-flex!important;align-items:center;justify-content:flex-start!important;gap:.21875rem!important}._approverPickerInput_osjxx_361>:first-child{flex:0 0 auto!important;min-width:0;overflow:visible!important;display:inline-flex!important;align-items:center;justify-content:center}._approverPickerInput_osjxx_361>:last-child{flex:0 0 auto!important;flex-shrink:0;display:inline-flex!important;align-items:center;gap:.21875rem}._approverPickerInput_osjxx_361 svg{width:.875rem;height:.875rem}._approverPickerInput_osjxx_361:hover{background:#f4f7fa!important;color:#4573d9;border-color:#dde5f5!important}._root_1426e_1{display:flex;flex-direction:column;gap:1.5rem;width:100%}._card_1426e_8{background-color:#fff;border-radius:1.5rem;padding:2rem;box-shadow:0 1px 2px #0f172a0a}._size_lg_1426e_15{padding:2.5rem}._section_1426e_19{display:flex;flex-direction:column;gap:1rem}._section_1426e_19+._section_1426e_19{padding-top:1.5rem;border-top:1px solid #dde5f5}._sectionHeader_1426e_29{display:flex;flex-direction:column;gap:.25rem;margin-bottom:.25rem}._sectionTitle_1426e_36{color:#4573d9;text-transform:none;letter-spacing:.01em;font-family:Navigo,RobotoRegular,sans-serif;font-weight:500;font-size:1rem;line-height:1.5rem}._sectionDescription_1426e_46{color:#525252;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.75rem;line-height:1.25rem}._fields_1426e_54{display:grid;grid-template-columns:1fr;row-gap:.25rem;column-gap:1.5rem}@media(min-width:900px){._fields_2col_1426e_62{grid-template-columns:1fr 1fr}}._field_1426e_54{display:grid;grid-template-columns:var(--cozy-detail-label-width, 14rem) 1fr;align-items:start;gap:1.25rem;padding:.625rem .75rem;margin:0 -.75rem;border-radius:.625rem;transition:background-color .18s ease}@media(max-width:640px){._field_1426e_54{grid-template-columns:1fr;gap:.25rem}}._field_span2_1426e_84{grid-column:1/-1}._field_interactive_1426e_88:hover{background-color:#f4f7fa}._label_1426e_92{color:#525252;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem}._value_1426e_100{color:#2a2a2a;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.875rem;line-height:1.5rem;display:flex;flex-direction:column;gap:.25rem;min-width:0;word-break:break-word}._valueRow_1426e_113{display:inline-flex;align-items:baseline;gap:.5rem;flex-wrap:wrap}._copyTrigger_1426e_120{display:inline-flex;flex-shrink:0;transform:translateY(.125rem)}._copyableValue_1426e_126:not(:has(a)){text-decoration:underline;text-underline-offset:2px}._hint_1426e_131{color:gray;font-family:Navigo,RobotoRegular,sans-serif;font-weight:400;font-size:.75rem;line-height:1.125rem}._empty_1426e_139{color:gray}._divider_1426e_143{height:1px;background-color:#dde5f5;border:none;margin:0}._loading_1426e_150{display:flex;align-items:center;justify-content:center;padding:3rem 0}._skeleton_1426e_157{display:flex;flex-direction:column;gap:.75rem}._skeleton_1426e_157>div{height:1.25rem;background:linear-gradient(90deg,#f4f7fa,#dde5f5,#f4f7fa);background-size:200% 100%;border-radius:.5rem;animation:_cozyShimmer_1426e_1 1.4s infinite linear}@keyframes _cozyShimmer_1426e_1{0%{background-position:200% 0}to{background-position:-200% 0}}._root_1z0dx_1{width:100%;background:#fff;border-radius:1rem;border:1px solid rgba(221,229,245,.7);padding:1.5rem 1.75rem;box-shadow:0 1px 2px #0f172a0a,0 12px 32px -18px #4573d940;color:#001a3d;display:flex;flex-direction:column;gap:1.25rem}._header_1z0dx_14{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;padding-bottom:1rem;border-bottom:1px solid rgba(221,229,245,.7)}._headerText_1z0dx_23{display:flex;flex-direction:column;gap:.25rem}._eyebrow_1z0dx_29{font-size:.6875rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:#4573d9}._title_1z0dx_37{font-size:1.25rem;font-weight:700;color:#001a3d;line-height:1.2}._counter_1z0dx_44{font-size:.8125rem;color:#525252;font-weight:500;padding:.25rem .625rem;background:#f4f7fa;border-radius:999px}._list_1z0dx_53{display:flex;flex-direction:column;gap:1rem}._loadOlderBtn_1z0dx_59{align-self:flex-start;display:inline-flex;align-items:center;gap:.375rem;background:transparent;border:1px dashed #aebfde;border-radius:999px;padding:.3125rem .75rem;color:#4573d9;font-size:.8125rem;font-weight:500;cursor:pointer;transition:all .15s ease}._loadOlderBtn_1z0dx_59:hover{background:#d3e8fa;border-color:#4573d9;border-style:solid}._loadOlderBtn_1z0dx_59:disabled{opacity:.6;cursor:default}._expandBtn_1z0dx_84{display:inline-flex;align-items:center;gap:.375rem;background:transparent;border:none;padding:.25rem 0;margin-top:.25rem;color:#4573d9;font-size:.8125rem;font-weight:600;cursor:pointer}._expandBtn_1z0dx_84:hover{text-decoration:underline}._item_1z0dx_102{display:grid;grid-template-columns:2.25rem 1fr;column-gap:.875rem;position:relative}._avatar_1z0dx_109{width:2.25rem;height:2.25rem;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;color:#fff;font-weight:600;font-size:.8125rem;letter-spacing:.02em;background:linear-gradient(135deg,#dee6f8,#4573d9 52%,#0e2c5c);flex-shrink:0;-webkit-user-select:none;user-select:none}._body_1z0dx_125{min-width:0;display:flex;flex-direction:column;gap:.375rem}._bubble_1z0dx_132{position:relative;background:linear-gradient(180deg,#f4f7fa99,#fff);border:1px solid #dde5f5;border-radius:0 .875rem .875rem;padding:.75rem .875rem .8125rem;transition:border-color .15s ease,box-shadow .15s ease}._bubble_1z0dx_132:hover{border-color:#4573d959;box-shadow:0 4px 14px -8px #4573d940}._bubble_1z0dx_132:hover ._actions_1z0dx_144{opacity:1}._bubble_deleted_1z0dx_148{background:#f4f7fa80;color:gray;font-style:italic}._meta_1z0dx_154{display:flex;align-items:baseline;gap:.5rem;flex-wrap:wrap;margin-bottom:.25rem}._author_1z0dx_162{font-size:.875rem;font-weight:700;color:#001a3d}._date_1z0dx_168{font-size:.75rem;color:gray}._editedTag_1z0dx_173{font-size:.6875rem;color:#525252;font-style:italic}._text_1z0dx_179{font-size:.9375rem;line-height:1.5;color:#001a3d;white-space:pre-wrap;word-wrap:break-word}._recipients_1z0dx_187{margin-top:.5rem;display:inline-flex;align-items:center;gap:.375rem;flex-wrap:wrap;font-size:.75rem;color:#525252}._recipients_1z0dx_187 svg{width:.875rem;height:.875rem;flex-shrink:0;opacity:.8}._attachments_1z0dx_203{margin-top:.5rem;display:flex;flex-wrap:wrap;gap:.375rem}._attachment_1z0dx_203{display:inline-flex;align-items:center;gap:.375rem;padding:.3125rem .5rem .3125rem .625rem;background:#fff;border:1px solid #dde5f5;border-radius:999px;font-size:.75rem;color:#001a3d;max-width:18rem}._attachment_1z0dx_203:hover{border-color:#4573d9;color:#4573d9}._attachmentName_1z0dx_227{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;cursor:pointer}._attachmentSize_1z0dx_234{color:gray;flex-shrink:0}._attachmentRemove_1z0dx_239{display:inline-flex;align-items:center;justify-content:center;width:1rem;height:1rem;border-radius:50%;border:none;background:transparent;color:#525252;cursor:pointer;padding:0}._attachmentRemove_1z0dx_239 svg{width:.6875rem;height:.6875rem}._attachmentRemove_1z0dx_239:hover{background:#fee;color:#d72d40}._attachmentSpinner_1z0dx_261{display:inline-flex;align-items:center;margin-left:.125rem}._actions_1z0dx_144{position:absolute;top:.5rem;right:.5rem;display:inline-flex;gap:.25rem;opacity:0;transition:opacity .15s ease}._iconButton_1z0dx_278{display:inline-flex;align-items:center;justify-content:center;width:1.5rem;height:1.5rem;border-radius:.375rem;background:#fff;border:1px solid #dde5f5;cursor:pointer;color:#525252;padding:0;transition:all .15s ease}._iconButton_1z0dx_278 svg{width:.875rem;height:.875rem}._iconButton_1z0dx_278:hover{background:#f4f7fa;color:#4573d9;border-color:#4573d9}._iconButton_danger_1z0dx_302:hover{background:#fee;color:#d72d40;border-color:#d72d40}._children_1z0dx_309{margin-top:.875rem;margin-left:1.125rem;padding-left:1.125rem;border-left:2px solid #dde5f5;display:flex;flex-direction:column;gap:1rem}._form_1z0dx_320{background:#fff;border:1px solid #dde5f5;border-radius:.875rem;padding:.75rem .875rem;display:flex;flex-direction:column;gap:.625rem}._form_root_1z0dx_330{background:linear-gradient(180deg,#d3e8fa40,#fff);border-color:#4573d940}._form_inline_1z0dx_335{margin-top:.625rem}._textarea_1z0dx_339{width:100%;min-height:4.5rem;resize:vertical;padding:.625rem .75rem;font-size:.9375rem;line-height:1.4;border:1px solid #dde5f5;border-radius:.625rem;outline:none;background:#fff;color:#001a3d;font-family:inherit;transition:border-color .15s ease,box-shadow .15s ease}._textarea_1z0dx_339:focus{border-color:#4573d9;box-shadow:0 0 0 3px #4573d926}._formRow_1z0dx_359{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.5rem}._formTools_1z0dx_367{display:inline-flex;align-items:center;gap:.375rem;flex-wrap:wrap}._formActions_1z0dx_374{display:inline-flex;align-items:center;gap:.5rem}._toolBtn_1z0dx_380{display:inline-flex;align-items:center;gap:.3125rem;background:#f4f7fa;border:1px solid transparent;border-radius:999px;padding:.3125rem .6875rem;font-size:.75rem;font-weight:500;color:#001a3d;cursor:pointer;transition:all .15s ease}._toolBtn_1z0dx_380 svg{width:.875rem;height:.875rem}._toolBtn_1z0dx_380:hover{background:#d3e8fa;color:#4573d9}._recipientsPickerWrap_1z0dx_403{width:auto!important;max-width:100%;display:inline-flex;flex-shrink:0}._recipientsPickerInput_1z0dx_410{width:auto!important;min-width:0!important;min-height:0!important;height:auto!important;padding:.3125rem .6875rem!important;border-radius:999px!important;border:1px solid transparent!important;background:#f4f7fa!important;box-shadow:none!important;color:#001a3d;font-size:.75rem;font-weight:500;line-height:1.2;display:inline-flex!important;align-items:center;justify-content:flex-start!important;gap:0!important;cursor:pointer;transition:all .15s ease}._recipientsPickerInput_1z0dx_410>:first-child{flex:0 0 auto!important;min-width:0;overflow:visible!important;display:inline-flex!important;align-items:center;color:#001a3d!important;font-size:.75rem;font-weight:500;white-space:nowrap}._recipientsPickerInput_1z0dx_410>:last-child{display:none!important}._recipientsPickerInput_1z0dx_410:hover{background:#d3e8fa!important;border-color:transparent!important;box-shadow:none!important}._recipientsPickerInput_1z0dx_410:hover>:first-child{color:#4573d9}._recipientsPickerInput_1z0dx_410:focus,._recipientsPickerInput_1z0dx_410:focus-visible{outline:none;border-color:transparent!important;box-shadow:none!important}._recipientsChips_1z0dx_459{display:flex;flex-wrap:wrap;gap:.3125rem}._chip_1z0dx_465{display:inline-flex;align-items:center;gap:.3125rem;padding:.1875rem .4375rem .1875rem .625rem;background:#d3e8fa99;color:#001a3d;border-radius:999px;font-size:.75rem}._chip_1z0dx_465 button{display:inline-flex;align-items:center;justify-content:center;width:.875rem;height:.875rem;border-radius:50%;border:none;background:transparent;color:#001a3d;cursor:pointer;padding:0}._chip_1z0dx_465 button svg{width:.625rem;height:.625rem}._chip_1z0dx_465 button:hover{background:#fff}._empty_1z0dx_496{padding:2rem 0}._skeleton_1z0dx_500{display:flex;flex-direction:column;gap:1rem;padding:1rem 0}._skeletonLine_1z0dx_507{height:.875rem;border-radius:.375rem;background:linear-gradient(90deg,#f4f7fa,#dde5f5,#f4f7fa);background-size:200% 100%;animation:_shimmer_1z0dx_1 1.4s ease-in-out infinite}@keyframes _shimmer_1z0dx_1{0%{background-position:200% 0}to{background-position:-200% 0}}._dialogContent_1z0dx_523{display:flex;flex-direction:column;gap:.75rem;font-size:.9375rem;color:#001a3d}._dialogActions_1z0dx_531{display:flex;justify-content:flex-end;gap:.5rem}._branchSpinner_1z0dx_537{display:inline-flex;align-items:center;margin-left:.375rem}._hiddenInput_1z0dx_543{display:none}._notice_1z0dx_547{font-size:.75rem;color:#525252;background:#fff1d8;border:1px solid rgba(255,163,0,.3);border-radius:.5rem;padding:.375rem .625rem}._root_1uhrx_1{position:relative;display:flex;flex-direction:column;width:var(--cozy-sidenav-w, 280px);height:100%;min-height:0;overflow:hidden;border-radius:1.25rem;transition:width .28s cubic-bezier(.22,1,.36,1),background-color .3s ease;font-family:inherit}._collapsed_1uhrx_14{width:var(--cozy-sidenav-w-collapsed, 76px)}._variant_classic_1uhrx_19{background:#fff;border:1px solid #dde5f5;color:#2a2a2a}._variant_classic_1uhrx_19 ._sectionTitle_1uhrx_24{color:gray;text-transform:uppercase;letter-spacing:.06em;font-size:.6875rem;font-weight:600;padding:0 .75rem}._variant_classic_1uhrx_19 ._item_1uhrx_32{color:#2a2a2a}._variant_classic_1uhrx_19 ._item_1uhrx_32:hover:not(:disabled){background:color-mix(in oklab,#4573d9 8%,transparent)}._variant_classic_1uhrx_19 ._item_1uhrx_32._item_active_1uhrx_38{background:color-mix(in oklab,#4573d9 12%,transparent);color:#001a3d;font-weight:600}._variant_classic_1uhrx_19 ._item_1uhrx_32._item_active_1uhrx_38:before{content:"";position:absolute;left:-.75rem;top:20%;bottom:20%;width:3px;border-radius:0 3px 3px 0;background:#4573d9}._variant_classic_1uhrx_19 ._user_1uhrx_53{background:transparent}._variant_classic_1uhrx_19 ._badge_1uhrx_56{background:color-mix(in oklab,#4573d9 14%,transparent);color:#001a3d}._variant_classic_1uhrx_19 ._footer_1uhrx_60{border-top:1px solid #dde5f5}._variant_aurora_1uhrx_65{background:radial-gradient(120% 70% at 0% 0%,rgba(120,140,255,.16),transparent 60%),radial-gradient(100% 80% at 100% 100%,rgba(80,200,255,.12),transparent 60%),linear-gradient(180deg,#0b1530,#0a112b 60%,#08102a);color:#e6ecff;border:1px solid rgba(255,255,255,.06);box-shadow:0 30px 80px -40px #0a143cb3,inset 0 1px #ffffff0a}._variant_aurora_1uhrx_65 ._sectionTitle_1uhrx_24{color:#e6ecff73;text-transform:uppercase;letter-spacing:.1em;font-size:.625rem;font-weight:600;padding:0 .75rem}._variant_aurora_1uhrx_65 ._sectionDot_1uhrx_79{width:18px;height:1px;background:#ffffff1f;margin:.25rem auto .5rem}._variant_aurora_1uhrx_65 ._item_1uhrx_32{color:#e6ecffc7}._variant_aurora_1uhrx_65 ._item_1uhrx_32 ._icon_1uhrx_88{background:#ffffff0d;border:1px solid rgba(255,255,255,.06);color:#e6ecffe6}._variant_aurora_1uhrx_65 ._item_1uhrx_32:hover:not(:disabled){background:#ffffff0a;color:#fff}._variant_aurora_1uhrx_65 ._item_1uhrx_32:hover:not(:disabled) ._icon_1uhrx_88{background:#ffffff14}._variant_aurora_1uhrx_65 ._item_1uhrx_32._item_active_1uhrx_38{color:#fff;background:linear-gradient(135deg,#6382ff47,#3c5adc2e);border:1px solid rgba(140,170,255,.28);box-shadow:0 8px 24px -10px #506ef08c,inset 0 1px #ffffff14}._variant_aurora_1uhrx_65 ._item_1uhrx_32._item_active_1uhrx_38 ._icon_1uhrx_88{background:linear-gradient(135deg,#6f8dff,#4d6bf0);border-color:transparent;color:#fff}._variant_aurora_1uhrx_65 ._badge_1uhrx_56{background:#ffffff1a;color:#fff}._variant_aurora_1uhrx_65 ._user_1uhrx_53{background:#ffffff0a;border:1px solid rgba(255,255,255,.08);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}._variant_aurora_1uhrx_65 ._userName_1uhrx_120{color:#fff}._variant_aurora_1uhrx_65 ._userRole_1uhrx_123{color:#e6ecff8c}._variant_aurora_1uhrx_65 ._avatar_1uhrx_126{box-shadow:0 0 0 2px #ffffff14,0 0 0 4px #7896ff2e}._variant_aurora_1uhrx_65 ._avatarInitials_1uhrx_129{background:linear-gradient(135deg,#6f8dff,#4d6bf0);color:#fff}._variant_aurora_1uhrx_65 ._footer_1uhrx_60{border-top:1px solid rgba(255,255,255,.06);color:#e6ecffc7}._variant_aurora_1uhrx_65 ._footer_1uhrx_60 button,._variant_aurora_1uhrx_65 ._footer_1uhrx_60 a{color:#e6ecffc7}._variant_aurora_1uhrx_65 ._footer_1uhrx_60 button:hover:not(:disabled),._variant_aurora_1uhrx_65 ._footer_1uhrx_60 a:hover:not(:disabled){color:#fff}._variant_aurora_1uhrx_65 ._collapseBtn_1uhrx_145{color:#e6ecffb3;background:#ffffff0a;border-color:#ffffff14}._variant_aurora_1uhrx_65 ._collapseBtn_1uhrx_145:hover{background:#ffffff14;color:#fff}._variant_aurora_1uhrx_65 ._divider_1uhrx_154{background:#ffffff14}._blob_1uhrx_159{position:absolute;pointer-events:none;border-radius:50%;filter:blur(40px);opacity:.55;z-index:0}._blob_a_1uhrx_168{top:-40px;left:-40px;width:180px;height:180px;background:radial-gradient(circle,#5a7bff 0%,transparent 70%)}._blob_b_1uhrx_176{bottom:-50px;right:-50px;width:220px;height:220px;background:radial-gradient(circle,#3ed0ff 0%,transparent 70%);opacity:.35}._header_1uhrx_186{position:relative;z-index:1;display:flex;align-items:center;gap:.5rem;padding:1rem .875rem .875rem}._user_1uhrx_53{display:flex;align-items:center;gap:.75rem;flex:1 1 auto;min-width:0;padding:.5rem;border:1px solid transparent;border-radius:.875rem;background:transparent;text-align:left;cursor:default;transition:background-color .18s ease}._user_clickable_1uhrx_210{cursor:pointer}._user_clickable_1uhrx_210:hover{background:#7f7f7f0f}._userSlot_1uhrx_217{flex:1 1 auto;min-width:0}._avatar_1uhrx_126{position:relative;flex:0 0 auto;width:40px;height:40px;border-radius:50%;overflow:visible;background:#dde5f5;display:flex;align-items:center;justify-content:center}._avatar_1uhrx_126 img{width:100%;height:100%;object-fit:cover;border-radius:50%}._avatarInitials_1uhrx_129{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-weight:600;font-size:.875rem;color:#001a3d;background:#d3e8fa;border-radius:50%}._avatarBadge_1uhrx_254{position:absolute;right:-2px;bottom:-2px;z-index:1;min-width:12px;height:12px;border-radius:999px;background:#00a582;border:2px solid currentColor;color:#fff}._userText_1uhrx_267{display:flex;flex-direction:column;min-width:0;line-height:1.2}._userName_1uhrx_120{font-weight:600;font-size:.9375rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._userRole_1uhrx_123{margin-top:2px;font-size:.75rem;color:gray;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._collapseBtn_1uhrx_145{flex:0 0 auto;width:28px;height:28px;border-radius:8px;border:1px solid #dde5f5;background:#fff;color:#525252;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;transition:background-color .18s,color .18s,border-color .18s}._collapseBtn_1uhrx_145:hover{background:#f4f7fa}._collapseIcon_1uhrx_309{display:inline-flex;transform:rotate(90deg);transition:transform .25s ease}._collapseIcon_rot_1uhrx_315{transform:rotate(-90deg)}._bodyWrap_1uhrx_320{position:relative;flex:1 1 auto;min-height:0;z-index:1}._body_1uhrx_320{height:100%;overflow-y:auto;padding:.5rem .75rem 1rem;scrollbar-width:none;-ms-overflow-style:none}._body_1uhrx_320::-webkit-scrollbar{display:none}._bodyContent_1uhrx_338{display:flex;flex-direction:column;gap:.75rem}._section_1uhrx_24{display:flex;flex-direction:column;gap:.25rem}._sectionTitle_1uhrx_24{padding:.5rem .75rem .25rem}._list_1uhrx_354{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:2px}._itemWrap_1uhrx_363{list-style:none}._item_1uhrx_32{position:relative;display:flex;align-items:center;gap:.75rem;width:100%;padding:.5rem .75rem;min-height:40px;border-radius:.75rem;border:1px solid transparent;background:transparent;cursor:pointer;font:inherit;font-size:.875rem;text-align:left;text-decoration:none;color:inherit;transition:background-color .18s ease,color .18s ease,border-color .18s ease,box-shadow .25s ease}._item_1uhrx_32:focus-visible{outline:2px solid #4573d9;outline-offset:2px}._item_disabled_1uhrx_391{cursor:not-allowed;opacity:.45}._item_nested_1uhrx_396{padding-left:1.5rem;min-height:36px;font-size:.8125rem}._item_scrollEdgeBottom_1uhrx_402{filter:blur(1px);opacity:.92;transition:filter .15s ease,opacity .15s ease}._icon_1uhrx_88,._iconStub_1uhrx_409{flex:0 0 auto;width:28px;height:28px;border-radius:8px;display:inline-flex;align-items:center;justify-content:center;transition:background-color .2s ease,color .2s ease}._icon_1uhrx_88 svg,._iconStub_1uhrx_409 svg{width:16px;height:16px}._label_1uhrx_425{flex:1 1 auto;min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._badge_1uhrx_56{flex:0 0 auto;font-size:.6875rem;font-weight:600;padding:2px 8px;border-radius:999px;line-height:1.4}._chev_1uhrx_442{flex:0 0 auto;display:inline-flex;transition:transform .25s ease;opacity:.6}._chev_open_1uhrx_449{transform:rotate(180deg)}._sub_1uhrx_454{overflow:hidden;max-height:0;opacity:0;transition:max-height .28s ease,opacity .2s ease}._sub_open_1uhrx_461{max-height:600px;opacity:1}._subList_1uhrx_466{list-style:none;margin:0;padding:2px 0 4px;display:flex;flex-direction:column;gap:2px}._collapsed_1uhrx_14 ._header_1uhrx_186{padding:.875rem .5rem;flex-direction:column;gap:.5rem}._collapsed_1uhrx_14 ._user_1uhrx_53{justify-content:center;padding:0;gap:0}._collapsed_1uhrx_14 ._body_1uhrx_320{padding:.5rem .5rem 1rem}._collapsed_1uhrx_14 ._item_1uhrx_32{padding:.5rem;justify-content:center}._collapsed_1uhrx_14 ._item_active_1uhrx_38:before{display:none}._collapsed_1uhrx_14 ._sectionTitle_1uhrx_24{display:none}._collapsed_1uhrx_14 ._footer_1uhrx_60{padding:.75rem .5rem;justify-content:center}._divider_1uhrx_154{height:1px;margin:.5rem 0;background:#dde5f5}._custom_1uhrx_510{padding:.25rem .75rem}._footer_1uhrx_60{position:relative;z-index:1;padding:.75rem .875rem 1rem;display:flex;align-items:center;gap:.5rem}
|
|
2
2
|
|
|
3
3
|
/* cozy-ui: Tailwind utilities for ui primitives (Calendar, etc.) */
|
|
4
4
|
/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
|