@ultraviolet/plus 3.1.8 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ContentCardGroup/styles.css.js +0 -1
- package/dist/components/FAQ/styles.css.js +1 -0
- package/dist/components/Navigation/Navigation.d.ts +13 -2
- package/dist/components/Navigation/Navigation.d.ts.map +1 -1
- package/dist/components/Navigation/Navigation.js +2 -0
- package/dist/components/Navigation/NavigationProvider.d.ts +3 -1
- package/dist/components/Navigation/NavigationProvider.d.ts.map +1 -1
- package/dist/components/Navigation/NavigationProvider.js +6 -3
- package/dist/components/Navigation/components/Group.d.ts +2 -1
- package/dist/components/Navigation/components/Group.d.ts.map +1 -1
- package/dist/components/Navigation/components/Group.js +10 -2
- package/dist/components/Navigation/components/Item.d.ts +6 -2
- package/dist/components/Navigation/components/Item.d.ts.map +1 -1
- package/dist/components/Navigation/components/Item.js +7 -2
- package/dist/components/Navigation/components/PinnedItems.d.ts.map +1 -1
- package/dist/components/Navigation/components/PinnedItems.js +3 -2
- package/dist/components/Navigation/components/ShowHide.d.ts +16 -0
- package/dist/components/Navigation/components/ShowHide.d.ts.map +1 -0
- package/dist/components/Navigation/components/ShowHide.js +76 -0
- package/dist/components/Navigation/components/styles.css.d.ts +1 -0
- package/dist/components/Navigation/components/styles.css.d.ts.map +1 -1
- package/dist/components/Navigation/components/styles.css.js +3 -1
- package/dist/components/Navigation/styles.css.js +1 -0
- package/dist/components/Navigation/variables.css.js +0 -1
- package/dist/plus.css +1 -1
- package/package.json +3 -3
|
@@ -6,12 +6,13 @@ import type { NavigationProps } from './types';
|
|
|
6
6
|
*/
|
|
7
7
|
export declare const Navigation: {
|
|
8
8
|
({ "data-testid": dataTestId, children, className, id, logo, onToggleExpand, onWidthResize, style, }: NavigationProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
Group: ({ children, label, style }: {
|
|
9
|
+
Group: ({ children, label, style, additionalData, }: {
|
|
10
10
|
children: import("react").ReactNode;
|
|
11
11
|
label: string;
|
|
12
12
|
style?: import("react").CSSProperties;
|
|
13
|
+
additionalData?: import("react").ReactNode;
|
|
13
14
|
}) => import("react/jsx-runtime").JSX.Element | null;
|
|
14
|
-
Item: import("react").MemoExoticComponent<({ children, categoryIcon, label, labelDescription, subLabel, badgeText, badgeSentiment, href, target, rel, onToggle, onClickPinUnpin, toggle, active, noPinButton, type, as, disabled, noExpand, index, id, "data-testid": dataTestId, style, }: {
|
|
15
|
+
Item: import("react").MemoExoticComponent<({ children, categoryIcon, label, labelDescription, subLabel, badgeText, badgeSentiment, href, target, rel, onToggle, onClickPinUnpin, toggle, active, noPinButton, type, as, disabled, noExpand, index, id, "data-testid": dataTestId, style, alwaysVisible, }: {
|
|
15
16
|
children?: import("react").ReactNode;
|
|
16
17
|
categoryIcon?: import("react").ReactNode;
|
|
17
18
|
label: string;
|
|
@@ -32,6 +33,7 @@ export declare const Navigation: {
|
|
|
32
33
|
index?: number;
|
|
33
34
|
as?: import("react").ElementType;
|
|
34
35
|
noExpand?: boolean;
|
|
36
|
+
alwaysVisible?: boolean;
|
|
35
37
|
disabled?: boolean;
|
|
36
38
|
'data-testid'?: string;
|
|
37
39
|
style?: import("react").CSSProperties;
|
|
@@ -44,5 +46,14 @@ export declare const Navigation: {
|
|
|
44
46
|
style?: import("react").CSSProperties;
|
|
45
47
|
}) => import("react/jsx-runtime").JSX.Element | null;
|
|
46
48
|
Separator: () => import("react/jsx-runtime").JSX.Element;
|
|
49
|
+
ShowHide: import("react").MemoExoticComponent<({ showContent, hideContent, onShowHide, tooltip, "data-testid": dataTestId, style, }: {
|
|
50
|
+
showContent: import("react").ReactNode;
|
|
51
|
+
hideContent: import("react").ReactNode;
|
|
52
|
+
onShowHide?: (expanded: "show" | "hide") => void;
|
|
53
|
+
disabled?: boolean;
|
|
54
|
+
tooltip?: string;
|
|
55
|
+
'data-testid'?: string;
|
|
56
|
+
style?: import("react").CSSProperties;
|
|
57
|
+
}) => import("react/jsx-runtime").JSX.Element>;
|
|
47
58
|
};
|
|
48
59
|
//# sourceMappingURL=Navigation.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Navigation.d.ts","sourceRoot":"","sources":["../../../src/components/Navigation/Navigation.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"Navigation.d.ts","sourceRoot":"","sources":["../../../src/components/Navigation/Navigation.tsx"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AAE9C;;;;GAIG;AACH,eAAO,MAAM,UAAU;0GASpB,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYjB,CAAA"}
|
|
@@ -4,6 +4,7 @@ import { Group } from "./components/Group.js";
|
|
|
4
4
|
import { Item } from "./components/Item.js";
|
|
5
5
|
import { PinnedItems } from "./components/PinnedItems.js";
|
|
6
6
|
import { Separator } from "./components/Separator.js";
|
|
7
|
+
import { ShowHide } from "./components/ShowHide.js";
|
|
7
8
|
import { NavigationContent } from "./NavigationContent.js";
|
|
8
9
|
const Navigation = ({
|
|
9
10
|
"data-testid": dataTestId,
|
|
@@ -31,6 +32,7 @@ Navigation.Group = Group;
|
|
|
31
32
|
Navigation.Item = Item;
|
|
32
33
|
Navigation.PinnedItems = PinnedItems;
|
|
33
34
|
Navigation.Separator = Separator;
|
|
35
|
+
Navigation.ShowHide = ShowHide;
|
|
34
36
|
export {
|
|
35
37
|
Navigation
|
|
36
38
|
};
|
|
@@ -43,6 +43,7 @@ type ContextProps = {
|
|
|
43
43
|
setAllowNavigationResize: (value: boolean) => void;
|
|
44
44
|
shouldAnimate?: boolean;
|
|
45
45
|
animationType?: AnimationType;
|
|
46
|
+
showHide?: 'show' | 'hide';
|
|
46
47
|
};
|
|
47
48
|
export declare const NavigationContext: import("react").Context<ContextProps>;
|
|
48
49
|
export declare const useNavigation: () => ContextProps;
|
|
@@ -86,7 +87,8 @@ type NavigationProviderProps = {
|
|
|
86
87
|
* type of animation
|
|
87
88
|
*/
|
|
88
89
|
animationType?: AnimationType;
|
|
90
|
+
showHide?: 'show' | 'hide';
|
|
89
91
|
};
|
|
90
|
-
export declare const NavigationProvider: ({ children, pinnedFeature, initialPinned, initialExpanded, locales, pinLimit, onExpandChange, initialWidth, initialAllowNavigationResize, animation: shouldAnimate, animationType, }: NavigationProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
92
|
+
export declare const NavigationProvider: ({ children, pinnedFeature, initialPinned, initialExpanded, locales, pinLimit, onExpandChange, initialWidth, initialAllowNavigationResize, animation: shouldAnimate, animationType, showHide, }: NavigationProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
91
93
|
export {};
|
|
92
94
|
//# sourceMappingURL=NavigationProvider.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NavigationProvider.d.ts","sourceRoot":"","sources":["../../../src/components/Navigation/NavigationProvider.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAW3D,OAAO,iBAAiB,MAAM,cAAc,CAAA;AAC5C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAE3C,KAAK,IAAI,GAAG;IACV,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAA;IACpC,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,YAAY,KAAK,IAAI,CAAA;CACrD,CAAA;AAED,KAAK,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;AAEjC,KAAK,aAAa,GAAG,QAAQ,GAAG,SAAS,CAAA;AAEzC,KAAK,YAAY,GAAG;IAClB,QAAQ,EAAE,OAAO,CAAA;IACjB,YAAY,EAAE,CAAC,MAAM,CAAC,EAAE,OAAO,KAAK,IAAI,CAAA;IACxC,SAAS,EAAE,OAAO,GAAG,QAAQ,GAAG,UAAU,CAAA;IAC1C,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,eAAe,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IAC5C,OAAO,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,EAAE,CAAA;IACnC,SAAS,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,EAAE,CAAA;IACrC,WAAW,EAAE,MAAM,EAAE,CAAA;IACrB,QAAQ,EAAE,MAAM,CAAA;IAChB,aAAa,EAAE,SAAS,CAAC,cAAc,GAAG,IAAI,CAAC,CAAA;IAC/C,OAAO,EAAE,MAAM,CAAC,MAAM,OAAO,iBAAiB,EAAE,MAAM,CAAC,CAAA;IACvD,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IACjC;;;OAGG;IACH,YAAY,EAAE;IACZ;;OAEG;IACH,YAAY,EAAE,MAAM;IACpB;;OAEG;IACH,QAAQ,EAAE,MAAM,KACb,MAAM,EAAE,CAAA;IACb,KAAK,EAAE,KAAK,CAAA;IACZ,YAAY,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAA;IAC7B,cAAc,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IACzC,qBAAqB,EAAE,OAAO,CAAA;IAC9B,wBAAwB,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAA;IAClD,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,aAAa,CAAC,EAAE,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"NavigationProvider.d.ts","sourceRoot":"","sources":["../../../src/components/Navigation/NavigationProvider.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAW3D,OAAO,iBAAiB,MAAM,cAAc,CAAA;AAC5C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,SAAS,CAAA;AAE3C,KAAK,IAAI,GAAG;IACV,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAA;IACpC,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,YAAY,KAAK,IAAI,CAAA;CACrD,CAAA;AAED,KAAK,KAAK,GAAG,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAAA;AAEjC,KAAK,aAAa,GAAG,QAAQ,GAAG,SAAS,CAAA;AAEzC,KAAK,YAAY,GAAG;IAClB,QAAQ,EAAE,OAAO,CAAA;IACjB,YAAY,EAAE,CAAC,MAAM,CAAC,EAAE,OAAO,KAAK,IAAI,CAAA;IACxC,SAAS,EAAE,OAAO,GAAG,QAAQ,GAAG,UAAU,CAAA;IAC1C,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,eAAe,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IAC5C,OAAO,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,EAAE,CAAA;IACnC,SAAS,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,EAAE,CAAA;IACrC,WAAW,EAAE,MAAM,EAAE,CAAA;IACrB,QAAQ,EAAE,MAAM,CAAA;IAChB,aAAa,EAAE,SAAS,CAAC,cAAc,GAAG,IAAI,CAAC,CAAA;IAC/C,OAAO,EAAE,MAAM,CAAC,MAAM,OAAO,iBAAiB,EAAE,MAAM,CAAC,CAAA;IACvD,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAA;IACjC;;;OAGG;IACH,YAAY,EAAE;IACZ;;OAEG;IACH,YAAY,EAAE,MAAM;IACpB;;OAEG;IACH,QAAQ,EAAE,MAAM,KACb,MAAM,EAAE,CAAA;IACb,KAAK,EAAE,KAAK,CAAA;IACZ,YAAY,EAAE,QAAQ,CAAC,KAAK,CAAC,CAAA;IAC7B,cAAc,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IACzC,qBAAqB,EAAE,OAAO,CAAA;IAC9B,wBAAwB,EAAE,CAAC,KAAK,EAAE,OAAO,KAAK,IAAI,CAAA;IAClD,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,aAAa,CAAC,EAAE,aAAa,CAAA;IAC7B,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;CAC3B,CAAA;AAGD,eAAO,MAAM,iBAAiB,uCAwB5B,CAAA;AAGF,eAAO,MAAM,aAAa,oBAAsC,CAAA;AAEhE,KAAK,uBAAuB,GAAG;IAC7B,QAAQ,EAAE,SAAS,CAAA;IACnB,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB;;;OAGG;IACH,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,EAAE,CAAA;IACxB;;;OAGG;IACH,eAAe,CAAC,EAAE,OAAO,CAAA;IACzB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,OAAO,iBAAiB,EAAE,MAAM,CAAC,CAAA;IACxD;;OAEG;IACH,cAAc,CAAC,EAAE,CAAC,QAAQ,EAAE,OAAO,KAAK,IAAI,CAAA;IAC5C;;OAEG;IACH,4BAA4B,CAAC,EAAE,OAAO,CAAA;IACtC;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB;;OAEG;IACH,aAAa,CAAC,EAAE,aAAa,CAAA;IAC7B,QAAQ,CAAC,EAAE,MAAM,GAAG,MAAM,CAAA;CAC3B,CAAA;AAED,eAAO,MAAM,kBAAkB,GAAI,gMAahC,uBAAuB,4CAyIzB,CAAA"}
|
|
@@ -45,7 +45,8 @@ const NavigationProvider = ({
|
|
|
45
45
|
initialWidth = NAVIGATION_WIDTH,
|
|
46
46
|
initialAllowNavigationResize = true,
|
|
47
47
|
animation: shouldAnimate = true,
|
|
48
|
-
animationType
|
|
48
|
+
animationType,
|
|
49
|
+
showHide
|
|
49
50
|
}) => {
|
|
50
51
|
const [expanded, setExpanded] = useState(initialExpanded);
|
|
51
52
|
const [pinnedItems, setPinnedItems] = useState(initialPinned ?? []);
|
|
@@ -138,7 +139,8 @@ const NavigationProvider = ({
|
|
|
138
139
|
shouldAnimate,
|
|
139
140
|
toggleExpand,
|
|
140
141
|
unpinItem,
|
|
141
|
-
width
|
|
142
|
+
width,
|
|
143
|
+
showHide
|
|
142
144
|
}),
|
|
143
145
|
[
|
|
144
146
|
expanded,
|
|
@@ -155,7 +157,8 @@ const NavigationProvider = ({
|
|
|
155
157
|
items,
|
|
156
158
|
allowNavigationResize,
|
|
157
159
|
shouldAnimate,
|
|
158
|
-
animationType
|
|
160
|
+
animationType,
|
|
161
|
+
showHide
|
|
159
162
|
]
|
|
160
163
|
);
|
|
161
164
|
return /* @__PURE__ */ jsx(NavigationContext.Provider, { value, children });
|
|
@@ -3,7 +3,8 @@ type GroupProps = {
|
|
|
3
3
|
children: ReactNode;
|
|
4
4
|
label: string;
|
|
5
5
|
style?: CSSProperties;
|
|
6
|
+
additionalData?: ReactNode;
|
|
6
7
|
};
|
|
7
|
-
export declare const Group: ({ children, label, style }: GroupProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
8
|
+
export declare const Group: ({ children, label, style, additionalData, }: GroupProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
8
9
|
export {};
|
|
9
10
|
//# sourceMappingURL=Group.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Group.d.ts","sourceRoot":"","sources":["../../../../src/components/Navigation/components/Group.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAKrD,KAAK,UAAU,GAAG;IAChB,QAAQ,EAAE,SAAS,CAAA;IACnB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"Group.d.ts","sourceRoot":"","sources":["../../../../src/components/Navigation/components/Group.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAKrD,KAAK,UAAU,GAAG;IAChB,QAAQ,EAAE,SAAS,CAAA;IACnB,KAAK,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,aAAa,CAAA;IACrB,cAAc,CAAC,EAAE,SAAS,CAAA;CAC3B,CAAA;AAED,eAAO,MAAM,KAAK,GAAI,6CAKnB,UAAU,mDA4CZ,CAAA"}
|
|
@@ -4,7 +4,12 @@ import { Stack, Text } from "@ultraviolet/ui";
|
|
|
4
4
|
import { Children } from "react";
|
|
5
5
|
import { useNavigation } from "../NavigationProvider.js";
|
|
6
6
|
import { navigationGroupStack, navigationGroupText } from "./styles.css.js";
|
|
7
|
-
const Group = ({
|
|
7
|
+
const Group = ({
|
|
8
|
+
children,
|
|
9
|
+
label,
|
|
10
|
+
style,
|
|
11
|
+
additionalData
|
|
12
|
+
}) => {
|
|
8
13
|
const context = useNavigation();
|
|
9
14
|
if (!context) {
|
|
10
15
|
throw new Error(
|
|
@@ -25,7 +30,10 @@ const Group = ({ children, label, style }) => {
|
|
|
25
30
|
prominence: "weak",
|
|
26
31
|
sentiment: "neutral",
|
|
27
32
|
variant: "bodySmallStrong",
|
|
28
|
-
children:
|
|
33
|
+
children: additionalData ? /* @__PURE__ */ jsxs(Stack, { direction: "row", justifyContent: "space-between", children: [
|
|
34
|
+
label,
|
|
35
|
+
additionalData
|
|
36
|
+
] }) : label
|
|
29
37
|
}
|
|
30
38
|
) : null,
|
|
31
39
|
children
|
|
@@ -18,7 +18,7 @@ type ItemProps = {
|
|
|
18
18
|
*/
|
|
19
19
|
labelDescription?: ReactNode;
|
|
20
20
|
/**
|
|
21
|
-
* It should be a unique id and will be used for pin/unpin feature.
|
|
21
|
+
* It should be a unique id and will be used for pin/unpin and show/hide feature.
|
|
22
22
|
*/
|
|
23
23
|
id: string;
|
|
24
24
|
/**
|
|
@@ -76,10 +76,14 @@ type ItemProps = {
|
|
|
76
76
|
* has sub items.
|
|
77
77
|
*/
|
|
78
78
|
noExpand?: boolean;
|
|
79
|
+
/**
|
|
80
|
+
* When set to true, the item is still visible even when `showHide='hide'` (NavigationProvider)
|
|
81
|
+
*/
|
|
82
|
+
alwaysVisible?: boolean;
|
|
79
83
|
disabled?: boolean;
|
|
80
84
|
'data-testid'?: string;
|
|
81
85
|
style?: CSSProperties;
|
|
82
86
|
};
|
|
83
|
-
export declare const Item: import("react").MemoExoticComponent<({ children, categoryIcon, label, labelDescription, subLabel, badgeText, badgeSentiment, href, target, rel, onToggle, onClickPinUnpin, toggle, active, noPinButton, type, as, disabled, noExpand, index, id, "data-testid": dataTestId, style, }: ItemProps) => import("react/jsx-runtime").JSX.Element | null>;
|
|
87
|
+
export declare const Item: import("react").MemoExoticComponent<({ children, categoryIcon, label, labelDescription, subLabel, badgeText, badgeSentiment, href, target, rel, onToggle, onClickPinUnpin, toggle, active, noPinButton, type, as, disabled, noExpand, index, id, "data-testid": dataTestId, style, alwaysVisible, }: ItemProps) => import("react/jsx-runtime").JSX.Element | null>;
|
|
84
88
|
export {};
|
|
85
89
|
//# sourceMappingURL=Item.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../../src/components/Navigation/components/Item.tsx"],"names":[],"mappings":"AAeA,OAAO,EACL,KAAK,EAON,MAAM,iBAAiB,CAAA;AAExB,OAAO,KAAK,EACV,cAAc,EACd,aAAa,EAEb,WAAW,EAEX,SAAS,EACV,MAAM,OAAO,CAAA;AAad,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AAyB5C,KAAK,QAAQ,GAAG,SAAS,GAAG,QAAQ,GAAG,aAAa,CAAA;AAMpD,KAAK,SAAS,GAAG;IACf,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAA;IACxB;;;OAGG;IACH,KAAK,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,gBAAgB,CAAC,EAAE,SAAS,CAAA;IAC5B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;IACV;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB;;;OAGG;IACH,cAAc,CAAC,EAAE,cAAc,CAAC,OAAO,KAAK,CAAC,CAAC,WAAW,CAAC,CAAA;IAC1D,IAAI,CAAC,EAAE,iBAAiB,CAAC,MAAM,CAAC,CAAA;IAChC,MAAM,CAAC,EAAE,iBAAiB,CAAC,QAAQ,CAAC,CAAA;IACpC,GAAG,CAAC,EAAE,iBAAiB,CAAC,KAAK,CAAC,CAAA;IAC9B;;;OAGG;IACH,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAA;IACpC,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,YAAY,KAAK,IAAI,CAAA;IACpD;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB;;OAEG;IACH,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;;;;;OAKG;IACH,EAAE,CAAC,EAAE,WAAW,CAAA;IAChB;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB,CAAA;AAOD,eAAO,MAAM,IAAI,
|
|
1
|
+
{"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../../src/components/Navigation/components/Item.tsx"],"names":[],"mappings":"AAeA,OAAO,EACL,KAAK,EAON,MAAM,iBAAiB,CAAA;AAExB,OAAO,KAAK,EACV,cAAc,EACd,aAAa,EAEb,WAAW,EAEX,SAAS,EACV,MAAM,OAAO,CAAA;AAad,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,UAAU,CAAA;AAyB5C,KAAK,QAAQ,GAAG,SAAS,GAAG,QAAQ,GAAG,aAAa,CAAA;AAMpD,KAAK,SAAS,GAAG;IACf,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAA;IACxB;;;OAGG;IACH,KAAK,EAAE,MAAM,CAAA;IACb;;OAEG;IACH,gBAAgB,CAAC,EAAE,SAAS,CAAA;IAC5B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;IACV;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB;;;OAGG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB;;;OAGG;IACH,cAAc,CAAC,EAAE,cAAc,CAAC,OAAO,KAAK,CAAC,CAAC,WAAW,CAAC,CAAA;IAC1D,IAAI,CAAC,EAAE,iBAAiB,CAAC,MAAM,CAAC,CAAA;IAChC,MAAM,CAAC,EAAE,iBAAiB,CAAC,QAAQ,CAAC,CAAA;IACpC,GAAG,CAAC,EAAE,iBAAiB,CAAC,KAAK,CAAC,CAAA;IAC9B;;;OAGG;IACH,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAA;IACpC,eAAe,CAAC,EAAE,CAAC,UAAU,EAAE,YAAY,KAAK,IAAI,CAAA;IACpD;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB;;OAEG;IACH,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;;;;;OAKG;IACH,EAAE,CAAC,EAAE,WAAW,CAAA;IAChB;;;OAGG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB,CAAA;AAOD,eAAO,MAAM,IAAI,uSA0BZ,SAAS,oDA2pBb,CAAA"}
|
|
@@ -36,7 +36,8 @@ const Item = memo(
|
|
|
36
36
|
index,
|
|
37
37
|
id,
|
|
38
38
|
"data-testid": dataTestId,
|
|
39
|
-
style
|
|
39
|
+
style,
|
|
40
|
+
alwaysVisible
|
|
40
41
|
}) => {
|
|
41
42
|
const context = useNavigation();
|
|
42
43
|
if (!context) {
|
|
@@ -57,7 +58,8 @@ const Item = memo(
|
|
|
57
58
|
animation,
|
|
58
59
|
registerItem,
|
|
59
60
|
shouldAnimate,
|
|
60
|
-
animationType
|
|
61
|
+
animationType,
|
|
62
|
+
showHide
|
|
61
63
|
} = context;
|
|
62
64
|
const makeRegisterRef = useRef(null);
|
|
63
65
|
useEffect(() => {
|
|
@@ -167,6 +169,9 @@ const Item = memo(
|
|
|
167
169
|
const showDraggableIcon = !noExpand && pinnedFeature && shouldShowPinnedButton && !disabled;
|
|
168
170
|
const showPinIcon = !(noExpand || disabled) && shouldShowPinnedButton && pinnedFeature;
|
|
169
171
|
const shouldHaveWeakText = !!children && !active && shouldShowPinnedButton && !disabled;
|
|
172
|
+
if (!alwaysVisible && showHide === "hide") {
|
|
173
|
+
return null;
|
|
174
|
+
}
|
|
170
175
|
if (expanded || !expanded && animation === "expand") {
|
|
171
176
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
172
177
|
/* @__PURE__ */ jsxs(
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PinnedItems.d.ts","sourceRoot":"","sources":["../../../../src/components/Navigation/components/PinnedItems.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,aAAa,EAAa,YAAY,EAAE,MAAM,OAAO,CAAA;AAWnE,KAAK,gBAAgB,GAAG;IACtB;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;;;OAGG;IACH,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAA;IACpC;;OAEG;IACH,SAAS,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IAC3C;;OAEG;IACH,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,KAAK,YAAY,CAAA;IAClE,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB,CAAA;AAED,eAAO,MAAM,WAAW,GAAI,sDAMzB,gBAAgB,
|
|
1
|
+
{"version":3,"file":"PinnedItems.d.ts","sourceRoot":"","sources":["../../../../src/components/Navigation/components/PinnedItems.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,aAAa,EAAa,YAAY,EAAE,MAAM,OAAO,CAAA;AAWnE,KAAK,gBAAgB,GAAG;IACtB;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB;;;OAGG;IACH,QAAQ,CAAC,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAA;IACpC;;OAEG;IACH,SAAS,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,EAAE,KAAK,IAAI,CAAA;IAC3C;;OAEG;IACH,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,YAAY,EAAE,MAAM,EAAE,MAAM,KAAK,YAAY,CAAA;IAClE,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB,CAAA;AAED,eAAO,MAAM,WAAW,GAAI,sDAMzB,gBAAgB,mDAuIlB,CAAA"}
|
|
@@ -27,7 +27,8 @@ const PinnedItems = ({
|
|
|
27
27
|
reorderItems,
|
|
28
28
|
expanded,
|
|
29
29
|
items,
|
|
30
|
-
animation
|
|
30
|
+
animation,
|
|
31
|
+
showHide
|
|
31
32
|
} = context;
|
|
32
33
|
const theme = useTheme();
|
|
33
34
|
const onDrop = useCallback(
|
|
@@ -63,7 +64,7 @@ const PinnedItems = ({
|
|
|
63
64
|
if (Object.keys(items).length === 0) {
|
|
64
65
|
return null;
|
|
65
66
|
}
|
|
66
|
-
if (pinnedFeature) {
|
|
67
|
+
if (pinnedFeature && showHide !== "hide") {
|
|
67
68
|
return /* @__PURE__ */ jsx("div", { style: { width: animation ? "100%" : void 0, ...style }, children: /* @__PURE__ */ jsxs(
|
|
68
69
|
Item,
|
|
69
70
|
{
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { CSSProperties, ReactNode } from 'react';
|
|
2
|
+
type ShowAllProp = {
|
|
3
|
+
showContent: ReactNode;
|
|
4
|
+
hideContent: ReactNode;
|
|
5
|
+
onShowHide?: (expanded: 'show' | 'hide') => void;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
/**
|
|
8
|
+
* Add a tooltip to display on hover when the navigation is not-exanped
|
|
9
|
+
*/
|
|
10
|
+
tooltip?: string;
|
|
11
|
+
'data-testid'?: string;
|
|
12
|
+
style?: CSSProperties;
|
|
13
|
+
};
|
|
14
|
+
export declare const ShowHide: import("react").MemoExoticComponent<({ showContent, hideContent, onShowHide, tooltip, "data-testid": dataTestId, style, }: ShowAllProp) => import("react/jsx-runtime").JSX.Element>;
|
|
15
|
+
export {};
|
|
16
|
+
//# sourceMappingURL=ShowHide.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ShowHide.d.ts","sourceRoot":"","sources":["../../../../src/components/Navigation/components/ShowHide.tsx"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAKrD,KAAK,WAAW,GAAG;IACjB,WAAW,EAAE,SAAS,CAAA;IACtB,WAAW,EAAE,SAAS,CAAA;IACtB,UAAU,CAAC,EAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,CAAA;IAChD,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB,CAAA;AAED,eAAO,MAAM,QAAQ,6HAQhB,WAAW,6CAwDf,CAAA"}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx } from "react/jsx-runtime";
|
|
3
|
+
import { ArrowUpIcon, ArrowDownIcon } from "@ultraviolet/icons";
|
|
4
|
+
import { Stack, Button } from "@ultraviolet/ui";
|
|
5
|
+
import { memo, useState } from "react";
|
|
6
|
+
import { useNavigation } from "../NavigationProvider.js";
|
|
7
|
+
import { navigationShowHideStack } from "./styles.css.js";
|
|
8
|
+
const ShowHide = memo(
|
|
9
|
+
({
|
|
10
|
+
showContent,
|
|
11
|
+
hideContent,
|
|
12
|
+
onShowHide,
|
|
13
|
+
tooltip,
|
|
14
|
+
"data-testid": dataTestId,
|
|
15
|
+
style
|
|
16
|
+
}) => {
|
|
17
|
+
const context = useNavigation();
|
|
18
|
+
if (!context) {
|
|
19
|
+
throw new Error(
|
|
20
|
+
"Navigation.ShowAll can only be used inside a NavigationProvider."
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
const { expanded, showHide } = context;
|
|
24
|
+
const [computedShown, setIsShown] = useState(showHide === "show");
|
|
25
|
+
const onClick = () => {
|
|
26
|
+
setIsShown(!computedShown);
|
|
27
|
+
onShowHide?.(computedShown ? "hide" : "show");
|
|
28
|
+
};
|
|
29
|
+
if (expanded) {
|
|
30
|
+
return /* @__PURE__ */ jsx(
|
|
31
|
+
Stack,
|
|
32
|
+
{
|
|
33
|
+
className: navigationShowHideStack,
|
|
34
|
+
justifyContent: "flex-end",
|
|
35
|
+
style,
|
|
36
|
+
children: /* @__PURE__ */ jsx(
|
|
37
|
+
Button,
|
|
38
|
+
{
|
|
39
|
+
"data-testid": dataTestId,
|
|
40
|
+
onClick,
|
|
41
|
+
sentiment: "primary",
|
|
42
|
+
size: "small",
|
|
43
|
+
style,
|
|
44
|
+
variant: "ghost",
|
|
45
|
+
children: computedShown ? hideContent : showContent
|
|
46
|
+
}
|
|
47
|
+
)
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
return /* @__PURE__ */ jsx(
|
|
52
|
+
Stack,
|
|
53
|
+
{
|
|
54
|
+
alignItems: "center",
|
|
55
|
+
className: navigationShowHideStack,
|
|
56
|
+
justifyContent: "flex-end",
|
|
57
|
+
style,
|
|
58
|
+
children: /* @__PURE__ */ jsx(
|
|
59
|
+
Button,
|
|
60
|
+
{
|
|
61
|
+
"data-testid": dataTestId,
|
|
62
|
+
onClick,
|
|
63
|
+
sentiment: "primary",
|
|
64
|
+
size: "small",
|
|
65
|
+
tooltip,
|
|
66
|
+
variant: "ghost",
|
|
67
|
+
children: computedShown ? /* @__PURE__ */ jsx(ArrowUpIcon, {}) : /* @__PURE__ */ jsx(ArrowDownIcon, {})
|
|
68
|
+
}
|
|
69
|
+
)
|
|
70
|
+
}
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
);
|
|
74
|
+
export {
|
|
75
|
+
ShowHide
|
|
76
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.css.d.ts","sourceRoot":"","sources":["../../../../src/components/Navigation/components/styles.css.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,mBAAmB;;;;;;;;;;EAkB9B,CAAA;AAEF,eAAO,MAAM,oBAAoB,QAAwC,CAAA;AAEzE,eAAO,MAAM,gCAAgC,QAsB3C,CAAA;AAEF,eAAO,MAAM,+BAA+B,QAE1C,CAAA;AAEF,eAAO,MAAM,6BAA6B;;;;;;;EAYxC,CAAA;AAEF,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"styles.css.d.ts","sourceRoot":"","sources":["../../../../src/components/Navigation/components/styles.css.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,mBAAmB;;;;;;;;;;EAkB9B,CAAA;AAEF,eAAO,MAAM,oBAAoB,QAAwC,CAAA;AAEzE,eAAO,MAAM,gCAAgC,QAsB3C,CAAA;AAEF,eAAO,MAAM,+BAA+B,QAE1C,CAAA;AAEF,eAAO,MAAM,6BAA6B;;;;;;;EAYxC,CAAA;AAEF,eAAO,MAAM,mBAAmB,QAG9B,CAAA;AAEF,eAAO,MAAM,uBAAuB,QAElC,CAAA"}
|
|
@@ -7,11 +7,13 @@ var navigationPinnedItemDropableArea = "uv_plus_nytpcy5";
|
|
|
7
7
|
var navigationPinnedItemRelativeDiv = "uv_plus_nytpcy6";
|
|
8
8
|
var navigationPinnedItemContainer = createRuntimeFn({ defaultClassName: "uv_plus_nytpcy7", variantClassNames: { expanded: { true: "uv_plus_nytpcy8" } }, defaultVariants: {}, compoundVariants: [] });
|
|
9
9
|
var navigationSeparator = "uv_plus_nytpcy9";
|
|
10
|
+
var navigationShowHideStack = "uv_plus_nytpcya";
|
|
10
11
|
export {
|
|
11
12
|
navigationGroupStack,
|
|
12
13
|
navigationGroupText,
|
|
13
14
|
navigationPinnedItemContainer,
|
|
14
15
|
navigationPinnedItemDropableArea,
|
|
15
16
|
navigationPinnedItemRelativeDiv,
|
|
16
|
-
navigationSeparator
|
|
17
|
+
navigationSeparator,
|
|
18
|
+
navigationShowHideStack
|
|
17
19
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* empty css */
|
|
1
2
|
/* empty css */
|
|
2
3
|
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
3
4
|
var navigationStickyFooter = createRuntimeFn({ defaultClassName: "uv_plus_19x50fv0", variantClassNames: { overflow: { false: "uv_plus_19x50fv1" } }, defaultVariants: { overflow: false }, compoundVariants: [] });
|
package/dist/plus.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.uv_plus_1sui13x0{cursor:not-allowed}.uv_plus_1sui13x1{background-color:#252a3b;position:absolute;right:var(--rwwhsl9u);top:var(--rwwhsl9u)}.uv_plus_1sui13x1:hover{background-color:#303445}.uv_plus_1sui13x1 svg>path{fill:#fff}.uv_plus_1sui13x2{position:relative;width:100%}.uv_plus_1sui13x4{pointer-events:none;-webkit-user-select:none;user-select:none}.uv_plus_1sui13x2 .cm-editor{background-color:#252a3b;border:1px solid transparent;border-radius:var(--rwwhsla4);font-family:var(--rwwhsld8);font-size:var(--rwwhsld9)}.uv_plus_1sui13x2 .cm-editor.cm-focused{border:1px solid var(--rwwhsl5m);box-shadow:var(--rwwhsl8m);outline:none}.uv_plus_1sui13x2 .cm-content{padding-block:var(--rwwhsl9v)}.uv_plus_1sui13x2 .cm-gutters{background-color:#303445}.uv_plus_1sui13x2 .cm-lineNumbers{padding-left:var(--rwwhsl9u)}.uv_plus_1sui13x2 .cm-gutterElement{color:#545454}.uv_plus_1sui13x2 .cm-scroller{border-radius:var(--rwwhsla4)}.uv_plus_1sui13x4 .cm-editor{background-color:#1e2335;color:#484b5a}.uv_plus_1sui13x4 .cm-line span,.uv_plus_1sui13x4 .cm-gutter-Element{color:#484b5a}.uv_plus_1sui13x4 .cm-cursor{border-left-color:transparent;display:none}.uv_plus_1sui13x4 .cm-selectionMatch{background-color:transparent}.uv_plus_1sui13x4 .cm-selectionLayer{display:none}.uv_plus_1sui13x4 .cm-editor.cm-focused{border:1px solid transparent;box-shadow:none}@property --uv_plus_u4r1ts1{syntax: "*"; inherits: false; initial-value: auto;}@property --uv_plus_u4r1ts2{syntax: "*"; inherits: false; initial-value: auto;}.uv_plus_u4r1ts3:hover{border:1px solid var(--rwwhsl5o);box-shadow:var(--rwwhsl8c);cursor:pointer}.uv_plus_u4r1ts4{background:var(--rwwhsl1i);border:1px solid var(--rwwhsl1v);border-radius:var(--rwwhsl85);color:var(--rwwhsl2j);display:block;overflow-wrap:break-word;padding:0;text-align:left;text-decoration:none}.uv_plus_u4r1ts4[disabled]{cursor:not-allowed}.uv_plus_u4r1ts4[disabled]:hover{border:1px solid var(--rwwhsl1v);box-shadow:none}.uv_plus_u4r1ts5{background:var(--rwwhsl1r);border-radius:var(--rwwhsl85);display:flex;padding:var(--rwwhsl9u);width:fit-content}.uv_plus_u4r1ts6{padding:0 var(--rwwhsl9w) var(--rwwhsl9w) var(--rwwhsl9w)}.uv_plus_u4r1ts7{padding:var(--rwwhsl9w) var(--rwwhsl9w) var(--rwwhsl9w) 0}.uv_plus_u4r1ts8{height:fit-content}.uv_plus_u4r1ts9{padding:var(--rwwhsl9w) var(--rwwhsl9w) 0 var(--rwwhsl9w)}.uv_plus_u4r1tsa{padding:var(--rwwhsl9w)}.uv_plus_u4r1tsb{padding:var(--rwwhsl9w) 0 var(--rwwhsl9w) var(--rwwhsl9w)}.uv_plus_u4r1tsc{object-fit:cover}.uv_plus_u4r1tsc[data-disabled=true]{filter:grayscale(1)}.uv_plus_u4r1tsd{border-radius:var(--rwwhsl85) var(--rwwhsl85) 0 0}.uv_plus_u4r1tse{border-radius:var(--rwwhsl85) 0 0 var(--rwwhsl85);max-height:var(--uv_plus_u4r1ts0)}.uv_plus_u4r1tsf{height:100%}.uv_plus_u4r1tsg{height:var(--uv_plus_u4r1ts1);width:var(--uv_plus_u4r1ts2)}.uv_plus_u4r1tsh{border-radius:var(--rwwhsl85) var(--rwwhsl85) 0 0}.uv_plus_u4r1tsi{border-radius:var(--rwwhsl85) 0 0 var(--rwwhsl85)}.uv_plus_u4r1tsj{padding:var(--rwwhsl9w)}.uv_plus_1gpmh3x0{min-width:0}.uv_plus_1gpmh3x1{background:var(--rwwhsl1r);border-radius:var(--rwwhsl85);display:inline-flex;padding:var(--rwwhsl9u)}.uv_plus_1gpmh3x2{height:100%;padding:var(--rwwhsl9w);text-decoration:none}.uv_plus_1gpmh3x2:first-child{border-radius:var(--rwwhsl85) var(--rwwhsl85) 0 0}.uv_plus_1gpmh3x2:hover{background:var(--rwwhsl1k)}.uv_plus_1gpmh3x2:last-child{border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85)}.uv_plus_1gpmh3x2:not(:first-child){border-top:1px solid var(--rwwhsl1v)}.uv_plus_1gpmh3x2 .uv_plus_1gpmh3x1{background:var(--rwwhsl1r)}.uv_plus_1gpmh3x2:hover .uv_plus_1gpmh3x1{background:none}.uv_plus_1gpmh3x3{height:100%}.uv_plus_1gpmh3x4{background:var(--rwwhsl1i);border:1px solid var(--rwwhsl1v);border-radius:var(--rwwhsl85);min-width:0}.uv_plus_1gpmh3x5{padding:var(--rwwhsl9w)}.uv_plus_1gpmh3x5:not(:first-child){border-top:1px solid var(--rwwhsl1v)}.uv_plus_1gpmh3x6{border-radius:var(--rwwhsl85);height:32px;width:32px}.uv_plus_16zcyo50{align-items:center;display:flex;margin:0 var(--rwwhsla0)}.uv_plus_16zcyo51{justify-content:flex-start}.uv_plus_16zcyo52{justify-content:flex-end}.uv_plus_16zcyo53{margin-top:var(--rwwhsl9w);text-align:center}.uv_plus_16zcyo54{display:flex;margin-bottom:var(--rwwhsl9v)}.uv_plus_16zcyo55{flex-direction:row-reverse}.uv_plus_16zcyo56{flex-direction:row}.uv_plus_16zcyo57{border-radius:var(--rwwhsl85);margin:var(--rwwhsl9w);margin-bottom:0;padding:var(--rwwhsl9w)}.uv_plus_16zcyo58{background-color:var(--rwwhsl1l)}.uv_plus_16zcyo59{background-color:var(--rwwhsl5g)}.uv_plus_16zcyo5a{align-self:flex-end;display:flex}.uv_plus_16zcyo5b{width:100%}.uv_plus_16zcyo5c{background-color:var(--rwwhsl1l);height:var(--rwwhsl9c);margin-right:var(--rwwhsl9u)}@keyframes uv_plus_wizdzu0{30%{transform:translate3d(-5px,0,0) rotate(5deg)}60%{transform:translate3d(-4px,0,0)}90%{transform:translate3d(-1px,0,0) rotate(-5deg)}0%,10%,40%,80%,to{transform:translateZ(0) rotate(0)}}@keyframes uv_plus_wizdzu1{30%{transform:translate3d(0,5px,0) rotate(5deg)}60%{transform:translate3d(0,-6px,0)}90%{transform:translate3d(0,-2px,0)}0%,10%,40%,80%,to{transform:translateZ(0) rotate(0)}}.uv_plus_wizdzu2{cursor:pointer;height:88px;transition:transform 1s cubic-bezier(.19,1,.22,1);width:88px}.uv_plus_wizdzu2:hover,.uv_plus_wizdzu2:focus{transform:scale(1.2)}.uv_plus_wizdzu3{animation:uv_plus_wizdzu0 1s ease infinite}.uv_plus_wizdzu4{animation:uv_plus_wizdzu1 1s ease infinite}.uv_plus_wizdzu5{transform:scale(1.2)}.uv_plus_dkdfcq0{fill:currentcolor;vertical-align:middle}.uv_plus_dkdfcqe{height:var(--rwwhsl9f);min-height:var(--rwwhsl9f);min-width:var(--rwwhsl9f);width:var(--rwwhsl9f)}.uv_plus_dkdfcqf{height:var(--rwwhsl9d);min-height:var(--rwwhsl9d);min-width:var(--rwwhsl9d);width:var(--rwwhsl9d)}.uv_plus_dkdfcqg{height:var(--rwwhsl9c);min-height:var(--rwwhsl9c);min-width:var(--rwwhsl9c);width:var(--rwwhsl9c)}.uv_plus_dkdfcqh{height:var(--rwwhsl9h);min-height:var(--rwwhsl9h);min-width:var(--rwwhsl9h);width:var(--rwwhsl9h)}.uv_plus_dkdfcqi{height:var(--rwwhsl9a);min-height:var(--rwwhsl9a);min-width:var(--rwwhsl9a);width:var(--rwwhsl9a)}.uv_plus_dkdfcqj{height:var(--rwwhsl9l);min-height:var(--rwwhsl9l);min-width:var(--rwwhsl9l);width:var(--rwwhsl9l)}.uv_plus_dkdfcqk{fill:var(--rwwhsl5t)}.uv_plus_dkdfcql{fill:var(--rwwhsl6h)}.uv_plus_dkdfcqm{fill:var(--rwwhsl28)}.uv_plus_dkdfcqn{fill:var(--rwwhsl75)}.uv_plus_dkdfcqo{fill:var(--rwwhslj)}.uv_plus_dkdfcqp{fill:var(--rwwhsl7t)}.uv_plus_dkdfcqq{fill:var(--rwwhsl17)}.uv_plus_dkdfcqr{fill:currentColor}.uv_plus_dkdfcqs{fill:var(--rwwhsl5t)}.uv_plus_dkdfcqt{fill:var(--rwwhsl6h)}.uv_plus_dkdfcqu{fill:var(--rwwhsl2b)}.uv_plus_dkdfcqv{fill:var(--rwwhsl75)}.uv_plus_dkdfcqw{fill:var(--rwwhslj)}.uv_plus_dkdfcqx{fill:var(--rwwhsl7t)}.uv_plus_dkdfcqy{fill:var(--rwwhsl17)}.uv_plus_dkdfcqz{fill:currentColor}.uv_plus_dkdfcq10{fill:var(--rwwhsl5t)}.uv_plus_dkdfcq11{fill:var(--rwwhsl6h)}.uv_plus_dkdfcq12{fill:var(--rwwhsl2d)}.uv_plus_dkdfcq13{fill:var(--rwwhsl75)}.uv_plus_dkdfcq14{fill:var(--rwwhslj)}.uv_plus_dkdfcq15{fill:var(--rwwhsl7t)}.uv_plus_dkdfcq16{fill:var(--rwwhsl17)}.uv_plus_dkdfcq17{fill:currentColor}.uv_plus_dkdfcq18{fill:var(--rwwhsl5t)}.uv_plus_dkdfcq19{fill:var(--rwwhsl6h)}.uv_plus_dkdfcq1a{fill:var(--rwwhsl2h)}.uv_plus_dkdfcq1b{fill:var(--rwwhsl75)}.uv_plus_dkdfcq1c{fill:var(--rwwhslj)}.uv_plus_dkdfcq1d{fill:var(--rwwhsl7t)}.uv_plus_dkdfcq1e{fill:var(--rwwhsl17)}.uv_plus_dkdfcq1f{fill:currentColor}.uv_plus_dkdfcq1g{fill:var(--rwwhsl5s)}.uv_plus_dkdfcq1h{fill:var(--rwwhsl6g)}.uv_plus_dkdfcq1i{fill:var(--rwwhsl27)}.uv_plus_dkdfcq1j{fill:var(--rwwhsl74)}.uv_plus_dkdfcq1k{fill:var(--rwwhsli)}.uv_plus_dkdfcq1l{fill:var(--rwwhsl7s)}.uv_plus_dkdfcq1m{fill:var(--rwwhsl16)}.uv_plus_dkdfcq1n{fill:currentColor}.uv_plus_dkdfcq1o{fill:var(--rwwhsl5s)}.uv_plus_dkdfcq1p{fill:var(--rwwhsl6g)}.uv_plus_dkdfcq1q{fill:var(--rwwhsl2a)}.uv_plus_dkdfcq1r{fill:var(--rwwhsl74)}.uv_plus_dkdfcq1s{fill:var(--rwwhsli)}.uv_plus_dkdfcq1t{fill:var(--rwwhsl7s)}.uv_plus_dkdfcq1u{fill:var(--rwwhsl16)}.uv_plus_dkdfcq1v{fill:currentColor}.uv_plus_dkdfcq1w{fill:var(--rwwhsl5s)}.uv_plus_dkdfcq1x{fill:var(--rwwhsl6g)}.uv_plus_dkdfcq1y{fill:var(--rwwhsl2c)}.uv_plus_dkdfcq1z{fill:var(--rwwhsl74)}.uv_plus_dkdfcq20{fill:var(--rwwhsli)}.uv_plus_dkdfcq21{fill:var(--rwwhsl7s)}.uv_plus_dkdfcq22{fill:var(--rwwhsl16)}.uv_plus_dkdfcq23{fill:currentColor}.uv_plus_dkdfcq24{fill:var(--rwwhsl5s)}.uv_plus_dkdfcq25{fill:var(--rwwhsl6g)}.uv_plus_dkdfcq26{fill:var(--rwwhsl2g)}.uv_plus_dkdfcq27{fill:var(--rwwhsl74)}.uv_plus_dkdfcq28{fill:var(--rwwhsli)}.uv_plus_dkdfcq29{fill:var(--rwwhsl7s)}.uv_plus_dkdfcq2a{fill:var(--rwwhsl16)}.uv_plus_dkdfcq2b{fill:currentColor}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcq7 .uv_plus_dkdfcq1g .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcq8 .uv_plus_dkdfcq1h .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcq9 .uv_plus_dkdfcq1i .fillStroke{fill:none;stroke:var(--rwwhsl27)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcqa .uv_plus_dkdfcq1j .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcqb .uv_plus_dkdfcq1k .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcqc .uv_plus_dkdfcq1l .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcqd .uv_plus_dkdfcq1m .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcq7 .uv_plus_dkdfcq1o .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcq8 .uv_plus_dkdfcq1p .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcq9 .uv_plus_dkdfcq1q .fillStroke{fill:none;stroke:var(--rwwhsl2a)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcqa .uv_plus_dkdfcq1r .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcqb .uv_plus_dkdfcq1s .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcqc .uv_plus_dkdfcq1t .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcqd .uv_plus_dkdfcq1u .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcq7 .uv_plus_dkdfcq1w .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcq8 .uv_plus_dkdfcq1x .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcq9 .uv_plus_dkdfcq1y .fillStroke{fill:none;stroke:var(--rwwhsl2c)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcqa .uv_plus_dkdfcq1z .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcqb .uv_plus_dkdfcq20 .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcqc .uv_plus_dkdfcq21 .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcqd .uv_plus_dkdfcq22 .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcq7 .uv_plus_dkdfcq24 .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcq8 .uv_plus_dkdfcq25 .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcq9 .uv_plus_dkdfcq26 .fillStroke{fill:none;stroke:var(--rwwhsl2g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcqa .uv_plus_dkdfcq27 .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcqb .uv_plus_dkdfcq28 .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcqc .uv_plus_dkdfcq29 .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcqd .uv_plus_dkdfcq2a .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_1fq6cbr0{height:var(--rwwhsl9k);min-width:var(--rwwhsl9k);width:var(--rwwhsl9k)}.uv_plus_1fq6cbr1{height:var(--rwwhsl9j);min-width:var(--rwwhsl9j);width:var(--rwwhsl9j)}.uv_plus_1fq6cbr2{height:var(--rwwhsl9h);min-width:var(--rwwhsl9h);width:var(--rwwhsl9h)}.uv_plus_1fq6cbr3{height:var(--rwwhsl9n);min-width:var(--rwwhsl9n);width:var(--rwwhsl9n)}.uv_plus_1fq6cbr4{height:var(--rwwhsl9f);min-width:var(--rwwhsl9f);width:var(--rwwhsl9f)}.uv_plus_1fq6cbr9 .fillWeak{fill:var(--rwwhsl4k)}.uv_plus_1fq6cbr9 g.fillWeak>*{fill:var(--rwwhsl4k)}.uv_plus_1fq6cbr9 path[fill].fillWeak{fill:var(--rwwhsl4k)}.uv_plus_1fq6cbr5 .fillWeak{fill:var(--rwwhsl4j)}.uv_plus_1fq6cbr5 g.fillWeak>*{fill:var(--rwwhsl4j)}.uv_plus_1fq6cbr5 path[fill].fillWeak{fill:var(--rwwhsl4j)}.uv_plus_1fq6cbra .fillWeak{fill:var(--rwwhsl48)}.uv_plus_1fq6cbra g.fillWeak>*{fill:var(--rwwhsl48)}.uv_plus_1fq6cbra path[fill].fillWeak{fill:var(--rwwhsl48)}.uv_plus_1fq6cbr6 .fillWeak{fill:var(--rwwhsl47)}.uv_plus_1fq6cbr6 g.fillWeak>*{fill:var(--rwwhsl47)}.uv_plus_1fq6cbr6 path[fill].fillWeak{fill:var(--rwwhsl47)}.uv_plus_1fq6cbrb .fillWeak{fill:var(--rwwhsl4q)}.uv_plus_1fq6cbrb g.fillWeak>*{fill:var(--rwwhsl4q)}.uv_plus_1fq6cbrb path[fill].fillWeak{fill:var(--rwwhsl4q)}.uv_plus_1fq6cbr7 .fillWeak{fill:var(--rwwhsl4p)}.uv_plus_1fq6cbr7 g.fillWeak>*{fill:var(--rwwhsl4p)}.uv_plus_1fq6cbr7 path[fill].fillWeak{fill:var(--rwwhsl4p)}.uv_plus_1fq6cbrc .fillWeak{fill:var(--rwwhsl4e)}.uv_plus_1fq6cbrc g.fillWeak>*{fill:var(--rwwhsl4e)}.uv_plus_1fq6cbrc path[fill].fillWeak{fill:var(--rwwhsl4e)}.uv_plus_1fq6cbr8 .fillWeak{fill:var(--rwwhsl4d)}.uv_plus_1fq6cbr8 g.fillWeak>*{fill:var(--rwwhsl4d)}.uv_plus_1fq6cbr8 path[fill].fillWeak{fill:var(--rwwhsl4d)}.uv_plus_1fq6cbr9 .fillStrong{fill:var(--rwwhsl4i)}.uv_plus_1fq6cbr9 g.fillStrong>*{fill:var(--rwwhsl4i)}.uv_plus_1fq6cbr9 path[fill].fillStrong{fill:var(--rwwhsl4i)}.uv_plus_1fq6cbr5 .fillStrong{fill:var(--rwwhsl4h)}.uv_plus_1fq6cbr5 g.fillStrong>*{fill:var(--rwwhsl4h)}.uv_plus_1fq6cbr5 path[fill].fillStrong{fill:var(--rwwhsl4h)}.uv_plus_1fq6cbra .fillStrong{fill:var(--rwwhsl46)}.uv_plus_1fq6cbra g.fillStrong>*{fill:var(--rwwhsl46)}.uv_plus_1fq6cbra path[fill].fillStrong{fill:var(--rwwhsl46)}.uv_plus_1fq6cbr6 .fillStrong{fill:var(--rwwhsl45)}.uv_plus_1fq6cbr6 g.fillStrong>*{fill:var(--rwwhsl45)}.uv_plus_1fq6cbr6 path[fill].fillStrong{fill:var(--rwwhsl45)}.uv_plus_1fq6cbrb .fillStrong{fill:var(--rwwhsl4o)}.uv_plus_1fq6cbrb g.fillStrong>*{fill:var(--rwwhsl4o)}.uv_plus_1fq6cbrb path[fill].fillStrong{fill:var(--rwwhsl4o)}.uv_plus_1fq6cbr7 .fillStrong{fill:var(--rwwhsl4n)}.uv_plus_1fq6cbr7 g.fillStrong>*{fill:var(--rwwhsl4n)}.uv_plus_1fq6cbr7 path[fill].fillStrong{fill:var(--rwwhsl4n)}.uv_plus_1fq6cbrc .fillStrong{fill:var(--rwwhsl4c)}.uv_plus_1fq6cbrc g.fillStrong>*{fill:var(--rwwhsl4c)}.uv_plus_1fq6cbrc path[fill].fillStrong{fill:var(--rwwhsl4c)}.uv_plus_1fq6cbr8 .fillStrong{fill:var(--rwwhsl4b)}.uv_plus_1fq6cbr8 g.fillStrong>*{fill:var(--rwwhsl4b)}.uv_plus_1fq6cbr8 path[fill].fillStrong{fill:var(--rwwhsl4b)}.uv_plus_1fq6cbr9 .fill{fill:var(--rwwhsl4g)}.uv_plus_1fq6cbr9 g.fill>*{fill:var(--rwwhsl4g)}.uv_plus_1fq6cbr9 path[fill].fill{fill:var(--rwwhsl4g)}.uv_plus_1fq6cbr5 .fill{fill:var(--rwwhsl4f)}.uv_plus_1fq6cbr5 g.fill>*{fill:var(--rwwhsl4f)}.uv_plus_1fq6cbr5 path[fill].fill{fill:var(--rwwhsl4f)}.uv_plus_1fq6cbra .fill{fill:var(--rwwhsl44)}.uv_plus_1fq6cbra g.fill>*{fill:var(--rwwhsl44)}.uv_plus_1fq6cbra path[fill].fill{fill:var(--rwwhsl44)}.uv_plus_1fq6cbr6 .fill{fill:var(--rwwhsl43)}.uv_plus_1fq6cbr6 g.fill>*{fill:var(--rwwhsl43)}.uv_plus_1fq6cbr6 path[fill].fill{fill:var(--rwwhsl43)}.uv_plus_1fq6cbrb .fill{fill:var(--rwwhsl4m)}.uv_plus_1fq6cbrb g.fill>*{fill:var(--rwwhsl4m)}.uv_plus_1fq6cbrb path[fill].fill{fill:var(--rwwhsl4m)}.uv_plus_1fq6cbr7 .fill{fill:var(--rwwhsl4l)}.uv_plus_1fq6cbr7 g.fill>*{fill:var(--rwwhsl4l)}.uv_plus_1fq6cbr7 path[fill].fill{fill:var(--rwwhsl4l)}.uv_plus_1fq6cbrc .fill{fill:var(--rwwhsl4a)}.uv_plus_1fq6cbrc g.fill>*{fill:var(--rwwhsl4a)}.uv_plus_1fq6cbrc path[fill].fill{fill:var(--rwwhsl4a)}.uv_plus_1fq6cbr8 .fill{fill:var(--rwwhsl49)}.uv_plus_1fq6cbr8 g.fill>*{fill:var(--rwwhsl49)}.uv_plus_1fq6cbr8 path[fill].fill{fill:var(--rwwhsl49)}.uv_plus_1ko5kn21{max-width:var(--uv_plus_1ko5kn20)}.uv_plus_1ko5kn22{margin-right:var(--rwwhsl9u);width:15px}.uv_plus_1ko5kn24{margin-left:var(--rwwhsla4)}.uv_plus_1ko5kn25{align-items:center;display:flex;flex-direction:row;justify-content:space-between;min-height:var(--rwwhsl9l);padding-bottom:var(--rwwhsl9u);padding-top:var(--rwwhsl9u);-webkit-box-pack:justify}.uv_plus_1ko5kn26{display:flex;flex-direction:column;height:var(--rwwhsl9k);justify-content:center;-webkit-box-pack:center}.uv_plus_1ko5kn27{animation:.8s uv_15brg2b3}.uv_plus_1ko5kn29{animation:uv_15brg2b3 .8s}.uv_plus_1ko5kn2a{text-align:right}.uv_plus_1ko5kn2b{display:flex;flex-direction:column;height:var(--rwwhsl9k);justify-content:center;text-align:initial;-webkit-box-pack:center}.uv_plus_1ko5kn2c{align-self:center;margin-left:var(--rwwhsl9u)}.uv_plus_1ko5kn2d{margin-left:var(--rwwhsl9u)}.uv_plus_1ko5kn2e{max-width:75%}.uv_plus_1ko5kn2f{vertical-align:text-top}.uv_plus_1ko5kn2g{text-decoration-color:var(--rwwhsl7m);text-decoration-line:line-through}.uv_plus_1ko5kn2h{align-items:center;color:var(--rwwhsl2m);font-size:16px;margin-right:var(--rwwhsla4);max-width:500px}.uv_plus_1ko5kn2i{display:inline-flex}.uv_plus_1ko5kn2j{display:flex}.uv_plus_1ko5kn2n{color:var(--rwwhsl2j);display:block;font-size:14px;line-height:8}.uv_plus_1ko5kn2o{align-items:center;color:var(--rwwhsl2m);display:inline-flex;font-weight:500;margin-right:4px}.uv_plus_1ko5kn2p{font-size:24px}.uv_plus_1ko5kn2q{font-size:16px;text-transform:capitalize}.uv_plus_1ko5kn2r,.uv_plus_1ko5kn2s{font-size:16px}.uv_plus_1ko5kn2t{-moz-appearance:textfield}.uv_plus_1ko5kn2t::-webkit-inner-spin-button,.uv_plus_1ko5kn2t::webkit-outer-spin-button{margin:0;-webkit-appearance:none}.uv_plus_sk5tga2{margin-right:var(--rwwhsl9u);width:15px}.uv_plus_sk5tga3{border:1px solid var(--rwwhsl1v);width:100%}.uv_plus_sk5tga4{border-radius:4px}.uv_plus_sk5tga5{border-radius:4px 4px 0}.uv_plus_sk5tga6{border-radius:4px;margin-top:var(--rwwhsl9v)}.uv_plus_sk5tga3>*{margin-top:0}.uv_plus_sk5tga3>*+*{margin-top:var(--rwwhsl9v)}.uv_plus_sk5tga7{background-color:var(--rwwhsl1i)}.uv_plus_sk5tga8{background-color:var(--rwwhsl1r);border-left:1px solid var(--rwwhsl1v);min-width:126px;width:30%}.uv_plus_sk5tga9{min-width:230px;padding-left:var(--uv_plus_sk5tga0);padding-right:var(--rwwhsl9v);position:relative;width:70%}.uv_plus_sk5tgaa:before{content:"";border-bottom:1px solid var(--rwwhsl1v);bottom:0;height:1px;left:0;margin-left:var(--rwwhsl9v);position:absolute;width:calc(100% - 32px)}.uv_plus_sk5tgab{background:var(--rwwhsl5g)}.uv_plus_sk5tgac{background-color:var(--rwwhsl5g);border-color:var(--rwwhsl1v);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);border-right:none;border-style:solid;border-width:0 1px 1px 1px;height:var(--rwwhsl9l);min-width:126px;width:30%}.uv_plus_sk5tgad{border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);border-right:1px solid var(--rwwhsl1v);margin:0;width:100%}.uv_plus_sk5tgae{align-items:center;color:var(--rwwhsl2j);display:flex;font-size:18px;font-weight:500;margin:0;padding:var(--rwwhsl9v)}.uv_plus_sk5tgaf{width:70%}.uv_plus_sk5tgag{align-items:start;float:right;max-width:200px;padding:var(--rwwhsl9v);text-align:left}.uv_plus_sk5tgah{position:absolute;top:calc(50% - 16px)}.uv_plus_sk5tgai{margin-left:-185px}.uv_plus_sk5tgaj{margin-left:-115px}.uv_plus_sk5tgak{border-left:1px solid var(--rwwhsl1v);min-width:200px;padding:0 24px}.uv_plus_sk5tgak:first-of-type,.uv_plus_sk5tgak:last-child{border:0}.uv_plus_sk5tgal{display:none}.uv_plus_sk5tgam{border:0}.uv_plus_sk5tgao{display:inline-block;font-size:12px;height:var(--rwwhsl9f);line-height:18;margin-right:var(--rwwhsl9u)}.uv_plus_sk5tgap{margin-top:var(--rwwhsl9w)}.uv_plus_sk5tgaq{margin-left:var(--rwwhsl9v);text-align:right}.uv_plus_sk5tgar{text-align:right}.uv_plus_sk5tgas{margin-right:var(--rwwhsl9u)}.uv_plus_sk5tgat{padding:0}.uv_plus_sk5tgau{background-color:var(--rwwhsl1i);display:flex;height:120px;justify-content:center;left:0;margin:var(--uv_plus_sk5tga1);position:fixed;right:0;transition:bottom .3s,box-shadow .3s;z-index:1}.uv_plus_sk5tgav{bottom:0;box-shadow:var(--rwwhsl8c)}.uv_plus_sk5tgaw{bottom:-120px;box-shadow:0}.uv_plus_sk5tgax{display:flex;flex-direction:row;justify-content:center;list-style:none;margin:0;padding:var(--rwwhsl9w) 0}.uv_plus_sk5tgay{display:flex;min-width:158px;padding:12px 0}.uv_plus_sk5tgaz{display:none}.uv_plus_sk5tga11{background:var(--rwwhsl1r);padding:var(--rwwhsl9v)}.uv_plus_sk5tga12{align-items:center;display:flex;flex-direction:row;gap:var(--rwwhsl9u);justify-content:center}@media(max-width:1800px){.uv_plus_sk5tgan{display:none}}.uv_plus_5imqkb0{padding:var(--rwwhsl9v);text-align:left}.uv_plus_h6pvpm1{align-items:start;display:flex;flex-direction:column;font-size:var(--rwwhsla9);line-height:var(--rwwhslac);margin:0;width:100%}.uv_plus_h6pvpm2{border-bottom:1px var(--rwwhsl1v) solid;padding-block:var(--rwwhsl9v);width:var(--uv_plus_h6pvpm0)}.uv_plus_h6pvpm2:first-of-type{padding-top:0}.uv_plus_h6pvpm2:last-of-type{border-bottom-color:transparent;padding-bottom:0}.uv_plus_h6pvpm2>*:not(:last-child){padding-right:var(--rwwhsl9v)}.uv_plus_h6pvpm3{align-items:center;color:var(--rwwhsl2m);display:inline-flex;font-weight:var(--rwwhslbg);min-width:0}.uv_plus_h6pvpm4{color:var(--rwwhsl2j);margin:0;min-width:0;width:100%}.uv_plus_h6pvpm5{display:inline-block;min-width:0;width:100%}.uv_plus_h6pvpm5>*{align-items:center;display:inline-flex;margin-right:var(--rwwhsl9u)}@keyframes uv_plus_1ngtn5a0{0%{max-height:50px}to{max-height:32px}}@keyframes uv_plus_1ngtn5a1{0%{margin-bottom:-8px;max-height:0;opacity:0}to{margin-bottom:0;max-height:40px;opacity:1}}.uv_plus_nytpcy0{height:calc(var(--rwwhslau) + var(--rwwhsl9u));padding-bottom:var(--rwwhsl9u);padding-left:var(--rwwhsl9u);transition:opacity .25s ease-in-out,height .25s ease-in-out}.uv_plus_nytpcy1{animation:uv_plus_1ngtn5a1 .25s ease-in-out reverse}.uv_plus_nytpcy2{animation:uv_plus_1ngtn5a1 .25s ease-in-out}.uv_plus_nytpcy4{padding-top:var(--rwwhsl9u)}.uv_plus_nytpcy5{border-color:transparent;border-top:2px solid;height:2px;left:0;padding:var(--rwwhsla4) 0;position:absolute;right:0;top:0}.uv_plus_nytpcy5:before{content:"";border:3px solid;border-color:inherit;border-radius:var(--rwwhsl84);height:0;left:0;position:absolute;top:-4px;width:0}.uv_plus_nytpcy6{position:relative}.uv_plus_nytpcy7{padding:var(--rwwhsl9u) 0}.uv_plus_nytpcy8{margin-left:var(--rwwhsla4);padding-left:var(--rwwhsl9x)}.uv_plus_nytpcy9{margin:var(--rwwhsl9v) calc(var(--rwwhsl9v) * -1)}.uv_plus_x6an4g0{width:180px}.uv_plus_x6an4g1{position:relative}.uv_plus_x6an4g2{padding-left:var(--rwwhsl9u)}.uv_plus_x6an4g3{border-radius:var(--rwwhsl85);bottom:0;margin:auto 0;padding:var(--rwwhsla5);position:absolute;top:0}.uv_plus_x6an4g4:hover{background:var(--rwwhsl5i)}.uv_plus_x6an4g5:hover{background:var(--rwwhsl1u)}.uv_plus_x6an4g6{text-align:left}.uv_plus_x6an4g8{background-color:inherit;border:none;border-radius:var(--rwwhsl85);color:inherit;margin-top:var(--rwwhsla5);padding:calc(var(--rwwhsla5) + var(--rwwhsla4)) var(--rwwhsl9u);text-align:left;text-decoration:none;width:100%}.uv_plus_x6an4ga{background-color:unset;cursor:not-allowed}.uv_plus_x6an4gb{background-color:var(--rwwhsl1k)}.uv_plus_x6an4gc{background-color:var(--rwwhsl5g)}.uv_plus_x6an4gc:hover{background-color:var(--rwwhsl5i)}.uv_plus_x6an4gd{cursor:pointer}.uv_plus_x6an4ge{padding:var(--rwwhsla4) var(--rwwhsl9u)}.uv_plus_x6an4gf:active{background-color:var(--rwwhsl1k)}.uv_plus_x6an4gg{background-color:var(--rwwhsl1u)}.uv_plus_x6an4gh:hover,.uv_plus_x6an4gh:focus{background-color:var(--rwwhsl1r)}.uv_plus_x6an4gi{animation:uv_plus_1ngtn5a0 .25s ease-in-out}.uv_plus_x6an4gj{animation:uv_plus_1ngtn5a0 .25s ease-in-out reverse}.uv_plus_x6an4gn{cursor:grab;margin:0 var(--rwwhsla5);opacity:0}.uv_plus_x6an4gk:hover .uv_plus_x6an4gn,.uv_plus_x6an4gk:focus .uv_plus_x6an4gn,.uv_plus_x6an4gk:active .uv_plus_x6an4gn{opacity:1}.uv_plus_x6an4go{display:-webkit-box;overflow:hidden;overflow-wrap:anywhere;-webkit-box-orient:vertical;-webkit-line-clamp:2}.uv_plus_x6an4gm:hover .uv_plus_x6an4go{color:var(--rwwhsl2u)}.uv_plus_x6an4gp{color:var(--rwwhsl2t)}.uv_plus_x6an4gq{color:var(--rwwhsl2u)}.uv_plus_x6an4g6:hover .uv_plus_x6an4gr,.uv_plus_x6an4g6:focus .uv_plus_x6an4gr,.uv_plus_x6an4g6:active .uv_plus_x6an4gr{opacity:1}.uv_plus_x6an4g7:hover .uv_plus_x6an4gr,.uv_plus_x6an4g7:focus .uv_plus_x6an4gr,.uv_plus_x6an4g7:active .uv_plus_x6an4gr{opacity:0}.uv_plus_x6an4gl:hover .uv_plus_x6an4gr,.uv_plus_x6an4gl:active .uv_plus_x6an4gr,.uv_plus_x6an4gl:focus .uv_plus_x6an4gr{opacity:0}.uv_plus_x6an4gs{inset:0 0 0 -24px;margin:auto;opacity:0;pointer-events:visible;position:absolute;visibility:visible}.uv_plus_x6an4gs:hover,.uv_plus_x6an4gs:focus,.uv_plus_x6an4gs:active{opacity:1;pointer-events:auto}.uv_plus_x6an4g6:hover .uv_plus_x6an4gs,.uv_plus_x6an4g6:focus .uv_plus_x6an4gs,.uv_plus_x6an4g6:active .uv_plus_x6an4gs{opacity:1;pointer-events:auto}.uv_plus_x6an4gl:hover .uv_plus_x6an4gs,.uv_plus_x6an4gl:active .uv_plus_x6an4gs,.uv_plus_x6an4gl:focus .uv_plus_x6an4gs{opacity:1;pointer-events:auto}.uv_plus_x6an4gt{animation:uv_15brg2b7 .25s ease-in-out reverse}.uv_plus_x6an4gu{animation:uv_15brg2b7 .25s ease-in-out}.uv_plus_x6an4gv{margin-top:var(--rwwhsla5);padding:0 var(--rwwhsl9v);width:fit-content}.uv_plus_x6an4gw{padding-top:var(--rwwhsla4)}.uv_plus_x6an4gx{min-width:20px}.uv_plus_x6an4gy{padding-left:28px}.uv_plus_x6an4gz{display:none}.uv_plus_19x50fv0{background:var(--rwwhsl1i);border-top:1px solid var(--rwwhsl24);box-shadow:var(--rwwhsl8c);display:flex;justify-content:flex-end;padding:var(--rwwhsl9u) var(--rwwhsl9v);transition:justify-content .25s ease-in-out,box-shadow .23s ease-in-out;width:100%}.uv_plus_19x50fv1{border:none;box-shadow:none}.uv_plus_19x50fv2{background:var(--rwwhsl1i)}.uv_plus_19x50fv3{height:22px;margin:var(--rwwhsl9w) var(--rwwhsl9w) var(--rwwhsl9v) var(--rwwhsl9w);max-width:220px;overflow:hidden}.uv_plus_19x50fv4{border-right:1px solid var(--rwwhsl24);display:flex;flex-direction:row;position:relative}.uv_plus_19x50fv5{background:var(--rwwhsl1i);display:flex;flex-direction:column;width:var(--uv_plus_1rde5pt0)}.uv_plus_19x50fv6{transition:width .25s ease-in-out;width:67px}.uv_plus_19x50fv7{transition:width .25s ease-in-out;width:var(--uv_plus_1rde5pt0)}.uv_plus_19x50fv9{width:67px}.uv_plus_19x50fva{max-width:320px;min-width:220px}.uv_plus_19x50fvb{display:flex;flex-direction:column;flex-grow:1;overflow:hidden}.uv_plus_19x50fvc{align-items:center}.uv_plus_19x50fvd{flex-grow:1;overflow-x:hidden;overflow-y:auto;padding:var(--rwwhsl9v)}.uv_plus_19x50fve{background:transparent;border-right:2px solid transparent;bottom:0;cursor:col-resize;display:flex;position:absolute;right:0;top:0;width:6px}.uv_plus_19x50fve:hover{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp1 td:first-child,.uv_plus_1wcpahp1 th:first-child{max-width:var(--rwwhsl9l);min-width:var(--rwwhsl9l);width:var(--rwwhsl9l)}.uv_plus_1wcpahp2{background:var(--rwwhsl1r);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);cursor:auto;display:table-row;position:relative;vertical-align:middle;width:100%}.uv_plus_1wcpahp2 td,.uv_plus_1wcpahp2 td:first-child,.uv_plus_1wcpahp2 td:last-child{border-bottom:1px solid transparent;transition:box-shadow .2s ease,border-color .2s ease}.uv_plus_1wcpahp3{border:1px solid var(--rwwhsl1v);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);border-top-color:transparent;margin-top:calc((var(--rwwhsl9v) * -1) - 1px);padding-block:var(--rwwhsla4);padding-inline:var(--rwwhsl9u);transition:border-color .2s ease}.uv_plus_1wcpahp4,.uv_plus_1wcpahp5{border:1px solid var(--rwwhsl1v)}.uv_plus_1wcpahp5.uv_plus_1wcpahp5{border-top:1px solid transparent}.uv_plus_1wcpahpd{background-color:var(--rwwhsl5g);color:var(--rwwhsl5y)}.uv_plus_1wcpahpe{background-color:var(--rwwhsl64);color:var(--rwwhsl6m)}.uv_plus_1wcpahpf{background-color:var(--rwwhsl1s);color:var(--rwwhsl2j)}.uv_plus_1wcpahpg{background-color:var(--rwwhsl6s);color:var(--rwwhsl7a)}.uv_plus_1wcpahph{background-color:var(--rwwhsl6);color:var(--rwwhslo)}.uv_plus_1wcpahpi{background-color:var(--rwwhsl7g);color:var(--rwwhsl7y)}.uv_plus_1wcpahpj{background-color:var(--rwwhslu);color:var(--rwwhsl1c)}.uv_plus_1wcpahpk{background-color:var(--rwwhsl5h);color:var(--rwwhsl5z)}.uv_plus_1wcpahpl{background-color:var(--rwwhsl65);color:var(--rwwhsl6n)}.uv_plus_1wcpahpm{background-color:var(--rwwhsl1r);color:var(--rwwhsl2k)}.uv_plus_1wcpahpn{background-color:var(--rwwhsl6t);color:var(--rwwhsl7b)}.uv_plus_1wcpahpo{background-color:var(--rwwhsl7);color:var(--rwwhslp)}.uv_plus_1wcpahpp{background-color:var(--rwwhsl7h);color:var(--rwwhsl7z)}.uv_plus_1wcpahpq{background-color:var(--rwwhslv);color:var(--rwwhsl1d)}.uv_plus_1wcpahpr{border:1px solid var(--rwwhsl5m);border-top-color:transparent}.uv_plus_1wcpahps{border-top-color:transparent}.uv_plus_1wcpahpt{border-top-left-radius:0;border-top-right-radius:0;height:fit-content;padding:0;width:100%}.uv_plus_1wcpahpu{border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);border-top:1px solid var(--rwwhsl1v);height:fit-content;padding-block:var(--rwwhsla4);padding-inline:var(--rwwhsl9u);width:100%}.uv_plus_1wcpahpu[aria-disabled=true]{background-color:var(--rwwhsl1j)}.uv_plus_1wcpahpv{background-color:var(--rwwhsl5g)}.uv_plus_1wcpahpw{background-color:var(--rwwhsl64)}.uv_plus_1wcpahpx{background-color:var(--rwwhsl1r)}.uv_plus_1wcpahpy{background-color:var(--rwwhsl6s)}.uv_plus_1wcpahpz{background-color:var(--rwwhsl6)}.uv_plus_1wcpahp10{background-color:var(--rwwhsl7g)}.uv_plus_1wcpahp11{background-color:var(--rwwhslu)}.uv_plus_1wcpahp12{left:var(--rwwhsl9y);position:absolute;transform:translateY(-160%)}.uv_plus_1wcpahp13{padding:0;width:32px}.uv_plus_1wcpahp13:first-of-type{padding-left:var(--rwwhsl9v)}.uv_plus_1wcpahp14{color:var(--rwwhsl5y)}.uv_plus_1wcpahp14 td,.uv_plus_1wcpahp14 td:first-child,.uv_plus_1wcpahp14 td:last-child{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp15 td:nth-child(2),.uv_plus_1wcpahp16 td:nth-child(3){font-weight:var(--rwwhslay)}.uv_plus_1wcpahp14[aria-expanded=true] td,.uv_plus_1wcpahp14[aria-expanded=true] td:first-child,.uv_plus_1wcpahp14[aria-expanded=true] td:last-child,.uv_plus_1wcpahp14[aria-expanded=true]+tr td{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp17 td,.uv_plus_1wcpahp17 td:first-child{border-bottom-left-radius:0}.uv_plus_1wcpahp17 td,.uv_plus_1wcpahp17 td:last-child{border-bottom-right-radius:0}.uv_plus_1wcpahp18{display:flex}.uv_plus_1wcpahp19{padding:var(--uv_plus_1wcpahp0)}.uv_plus_1wcpahp1a{white-space:pre-line}.uv_plus_1wcpahp1b{height:100%}.uv_plus_1q5g1ma0{background-color:var(--rwwhsl1r);height:100%;min-width:20rem}.uv_plus_1q5g1ma1{height:var(--rwwhsl9o);padding:var(--rwwhsl9w);padding-bottom:var(--rwwhsl9v)}.uv_plus_1q5g1ma3{border-bottom:1px solid var(--rwwhsl1v)}.uv_plus_1q5g1ma4{background-color:var(--rwwhsl1i)}.uv_plus_1q5g1ma5{border-top:1px solid var(--rwwhsl1v);padding:var(--rwwhsl9w)}.uv_plus_1q5g1ma6{background-color:var(--rwwhsl1i);max-width:12.5rem}.uv_plus_1q5g1ma7{height:100%;min-height:10rem;overflow-y:scroll;padding:var(--rwwhsl9w)}.uv_plus_1q5g1ma8{padding-left:var(--rwwhsl9u)}.uv_plus_1q5g1ma9:not(:last-child){border-bottom:1px solid var(--rwwhsl1v);padding-bottom:var(--rwwhsl9w)}.uv_plus_1q5g1maa{color:inherit;text-decoration:inherit;transition:color .25s ease-out}.uv_plus_1q5g1maa:hover{color:var(--rwwhsl1c)}.uv_plus_1q5g1mab{opacity:0;position:absolute;transform:translate(calc(-1 *var(--rwwhsl9v)));transition:opacity .25s ease-in-out}.uv_plus_1q5g1maa:hover>.uv_plus_1q5g1mab{opacity:1}.uv_plus_1q5g1mac{margin-top:var(--rwwhsla4)}.uv_plus_1q5g1mad{margin-top:var(--rwwhsla5)}@media(min-width:1440px){.uv_plus_1q5g1ma0{min-width:27.5rem}}.uv_plus_11wud800{cursor:pointer}.uv_plus_11wud801{border-collapse:separate;border-spacing:var(--rwwhsl9v) 0;height:1px;margin:0 calc(-1 * var(--rwwhsl9v));table-layout:fixed;width:calc(100% + var(--rwwhsl9x))}.uv_plus_11wud802{bottom:100%;left:50%;position:absolute;transform:translate(-50%) translateY(50%)}.uv_plus_11wud803{background-color:transparent;outline:none;padding:var(--rwwhsl9u);text-align:center}.uv_plus_11wud803:first-child{text-align:left}tbody .uv_plus_11wud803:not(:first-child){border:1px solid var(--rwwhsl1v);border-width:0 1px}tbody tr:last-child .uv_plus_11wud803{padding-bottom:var(--rwwhsl9x)}tbody tr:last-child .uv_plus_11wud803:not(:first-child){border:1px solid var(--rwwhsl1v);border-radius:0 0 var(--rwwhsl86) var(--rwwhsl86);border-width:0 1px 1px 1px}thead .uv_plus_11wud803{height:100%;padding-bottom:var(--rwwhsl9w);padding-top:var(--rwwhsl9x);position:relative;vertical-align:top}thead .uv_plus_11wud803:first-child{vertical-align:bottom}thead .uv_plus_11wud803:not(:first-child){border:1px solid var(--rwwhsl1v);border-radius:var(--rwwhsl86) var(--rwwhsl86) 0 0;border-width:1px 1px 0 1px}thead .uv_plus_11wud804:not(:first-child),tbody .uv_plus_11wud804:not(:first-child),tbody tr:last-child .uv_plus_11wud804:not(:first-child){border-color:var(--rwwhsl5m)}.uv_plus_11wud805{background-color:var(--rwwhsl1j)}thead .uv_plus_11wud806:not(:first-child),tbody .uv_plus_11wud806:not(:first-child),tbody tr:last-child .uv_plus_11wud806:not(:first-child){border-color:#00f;border-width:2px 2px 0 2px}.uv_plus_11wud807{display:none}.uv_plus_11wud808{padding-left:var(--rwwhsl9w);text-align:start}thead .uv_plus_11wud808{padding-left:var(--rwwhsl9u)}.uv_plus_11wud809{cursor:pointer}tbody .uv_plus_11wud80a{padding-bottom:var(--rwwhsl9z)}.uv_plus_11wud80b{display:none}.uv_plus_11wud80c{text-transform:uppercase}.uv_plus_11wud80d{left:0;opacity:0;position:absolute;top:0}.uv_plus_11wud80e{height:100%}.uv_plus_11wud80f{padding:var(--rwwhsl9u);width:100%}.uv_plus_11wud80g{width:100%}.uv_plus_11wud80h{align-items:center;display:flex;height:var(--rwwhsl9k)}.uv_plus_l0ny240{padding:0}.uv_plus_l0ny241{border-right:1px solid var(--rwwhsl1v);padding:var(--rwwhsl9w)}.uv_plus_l0ny242{min-width:0;padding:var(--rwwhsl9w);padding-top:var(--rwwhsl9x)}.uv_plus_l0ny243{display:flex;justify-content:right}.uv_plus_l0ny244{margin-bottom:var(--rwwhsl9w)}.uv_plus_l0ny245{cursor:pointer;text-decoration:underline;text-decoration-color:transparent;text-decoration-thickness:1px;text-underline-offset:2px;transition:text-decoration-color .25s ease-out}.uv_plus_l0ny245:active{text-decoration-thickness:2px}.uv_plus_l0ny245:hover{text-decoration:underline;text-decoration-thickness:1px}.uv_plus_l0ny246{align-items:center}.uv_plus_l0ny247{width:fit-content}
|
|
1
|
+
.uv_plus_1sui13x0{cursor:not-allowed}.uv_plus_1sui13x1{background-color:#252a3b;position:absolute;right:var(--rwwhsl9u);top:var(--rwwhsl9u)}.uv_plus_1sui13x1:hover{background-color:#303445}.uv_plus_1sui13x1 svg>path{fill:#fff}.uv_plus_1sui13x2{position:relative;width:100%}.uv_plus_1sui13x4{pointer-events:none;-webkit-user-select:none;user-select:none}.uv_plus_1sui13x2 .cm-editor{background-color:#252a3b;border:1px solid transparent;border-radius:var(--rwwhsla4);font-family:var(--rwwhsld8);font-size:var(--rwwhsld9)}.uv_plus_1sui13x2 .cm-editor.cm-focused{border:1px solid var(--rwwhsl5m);box-shadow:var(--rwwhsl8m);outline:none}.uv_plus_1sui13x2 .cm-content{padding-block:var(--rwwhsl9v)}.uv_plus_1sui13x2 .cm-gutters{background-color:#303445}.uv_plus_1sui13x2 .cm-lineNumbers{padding-left:var(--rwwhsl9u)}.uv_plus_1sui13x2 .cm-gutterElement{color:#545454}.uv_plus_1sui13x2 .cm-scroller{border-radius:var(--rwwhsla4)}.uv_plus_1sui13x4 .cm-editor{background-color:#1e2335;color:#484b5a}.uv_plus_1sui13x4 .cm-line span,.uv_plus_1sui13x4 .cm-gutter-Element{color:#484b5a}.uv_plus_1sui13x4 .cm-cursor{border-left-color:transparent;display:none}.uv_plus_1sui13x4 .cm-selectionMatch{background-color:transparent}.uv_plus_1sui13x4 .cm-selectionLayer{display:none}.uv_plus_1sui13x4 .cm-editor.cm-focused{border:1px solid transparent;box-shadow:none}@property --uv_plus_u4r1ts1{syntax: "*"; inherits: false; initial-value: auto;}@property --uv_plus_u4r1ts2{syntax: "*"; inherits: false; initial-value: auto;}.uv_plus_u4r1ts3:hover{border:1px solid var(--rwwhsl5o);box-shadow:var(--rwwhsl8c);cursor:pointer}.uv_plus_u4r1ts4{background:var(--rwwhsl1i);border:1px solid var(--rwwhsl1v);border-radius:var(--rwwhsl85);color:var(--rwwhsl2j);display:block;overflow-wrap:break-word;padding:0;text-align:left;text-decoration:none}.uv_plus_u4r1ts4[disabled]{cursor:not-allowed}.uv_plus_u4r1ts4[disabled]:hover{border:1px solid var(--rwwhsl1v);box-shadow:none}.uv_plus_u4r1ts5{background:var(--rwwhsl1r);border-radius:var(--rwwhsl85);display:flex;padding:var(--rwwhsl9u);width:fit-content}.uv_plus_u4r1ts6{padding:0 var(--rwwhsl9w) var(--rwwhsl9w) var(--rwwhsl9w)}.uv_plus_u4r1ts7{padding:var(--rwwhsl9w) var(--rwwhsl9w) var(--rwwhsl9w) 0}.uv_plus_u4r1ts8{height:fit-content}.uv_plus_u4r1ts9{padding:var(--rwwhsl9w) var(--rwwhsl9w) 0 var(--rwwhsl9w)}.uv_plus_u4r1tsa{padding:var(--rwwhsl9w)}.uv_plus_u4r1tsb{padding:var(--rwwhsl9w) 0 var(--rwwhsl9w) var(--rwwhsl9w)}.uv_plus_u4r1tsc{object-fit:cover}.uv_plus_u4r1tsc[data-disabled=true]{filter:grayscale(1)}.uv_plus_u4r1tsd{border-radius:var(--rwwhsl85) var(--rwwhsl85) 0 0}.uv_plus_u4r1tse{border-radius:var(--rwwhsl85) 0 0 var(--rwwhsl85);max-height:var(--uv_plus_u4r1ts0)}.uv_plus_u4r1tsf{height:100%}.uv_plus_u4r1tsg{height:var(--uv_plus_u4r1ts1);width:var(--uv_plus_u4r1ts2)}.uv_plus_u4r1tsh{border-radius:var(--rwwhsl85) var(--rwwhsl85) 0 0}.uv_plus_u4r1tsi{border-radius:var(--rwwhsl85) 0 0 var(--rwwhsl85)}.uv_plus_u4r1tsj{padding:var(--rwwhsl9w)}.uv_plus_1gpmh3x0{min-width:0}.uv_plus_1gpmh3x1{background:var(--rwwhsl1r);border-radius:var(--rwwhsl85);display:inline-flex;padding:var(--rwwhsl9u)}.uv_plus_1gpmh3x2{height:100%;padding:var(--rwwhsl9w);text-decoration:none}.uv_plus_1gpmh3x2:first-child{border-radius:var(--rwwhsl85) var(--rwwhsl85) 0 0}.uv_plus_1gpmh3x2:hover{background:var(--rwwhsl1k)}.uv_plus_1gpmh3x2:last-child{border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85)}.uv_plus_1gpmh3x2:not(:first-child){border-top:1px solid var(--rwwhsl1v)}.uv_plus_1gpmh3x2 .uv_plus_1gpmh3x1{background:var(--rwwhsl1r)}.uv_plus_1gpmh3x2:hover .uv_plus_1gpmh3x1{background:none}.uv_plus_1gpmh3x3{height:100%}.uv_plus_1gpmh3x4{background:var(--rwwhsl1i);border:1px solid var(--rwwhsl1v);border-radius:var(--rwwhsl85);min-width:0}.uv_plus_1gpmh3x5{padding:var(--rwwhsl9w)}.uv_plus_1gpmh3x5:not(:first-child){border-top:1px solid var(--rwwhsl1v)}.uv_plus_1gpmh3x6{border-radius:var(--rwwhsl85);height:32px;width:32px}.uv_plus_16zcyo50{align-items:center;display:flex;margin:0 var(--rwwhsla0)}.uv_plus_16zcyo51{justify-content:flex-start}.uv_plus_16zcyo52{justify-content:flex-end}.uv_plus_16zcyo53{margin-top:var(--rwwhsl9w);text-align:center}.uv_plus_16zcyo54{display:flex;margin-bottom:var(--rwwhsl9v)}.uv_plus_16zcyo55{flex-direction:row-reverse}.uv_plus_16zcyo56{flex-direction:row}.uv_plus_16zcyo57{border-radius:var(--rwwhsl85);margin:var(--rwwhsl9w);margin-bottom:0;padding:var(--rwwhsl9w)}.uv_plus_16zcyo58{background-color:var(--rwwhsl1l)}.uv_plus_16zcyo59{background-color:var(--rwwhsl5g)}.uv_plus_16zcyo5a{align-self:flex-end;display:flex}.uv_plus_16zcyo5b{width:100%}.uv_plus_16zcyo5c{background-color:var(--rwwhsl1l);height:var(--rwwhsl9c);margin-right:var(--rwwhsl9u)}@keyframes uv_plus_wizdzu0{30%{transform:translate3d(-5px,0,0) rotate(5deg)}60%{transform:translate3d(-4px,0,0)}90%{transform:translate3d(-1px,0,0) rotate(-5deg)}0%,10%,40%,80%,to{transform:translateZ(0) rotate(0)}}@keyframes uv_plus_wizdzu1{30%{transform:translate3d(0,5px,0) rotate(5deg)}60%{transform:translate3d(0,-6px,0)}90%{transform:translate3d(0,-2px,0)}0%,10%,40%,80%,to{transform:translateZ(0) rotate(0)}}.uv_plus_wizdzu2{cursor:pointer;height:88px;transition:transform 1s cubic-bezier(.19,1,.22,1);width:88px}.uv_plus_wizdzu2:hover,.uv_plus_wizdzu2:focus{transform:scale(1.2)}.uv_plus_wizdzu3{animation:uv_plus_wizdzu0 1s ease infinite}.uv_plus_wizdzu4{animation:uv_plus_wizdzu1 1s ease infinite}.uv_plus_wizdzu5{transform:scale(1.2)}.uv_plus_dkdfcq0{fill:currentcolor;vertical-align:middle}.uv_plus_dkdfcqe{height:var(--rwwhsl9f);min-height:var(--rwwhsl9f);min-width:var(--rwwhsl9f);width:var(--rwwhsl9f)}.uv_plus_dkdfcqf{height:var(--rwwhsl9d);min-height:var(--rwwhsl9d);min-width:var(--rwwhsl9d);width:var(--rwwhsl9d)}.uv_plus_dkdfcqg{height:var(--rwwhsl9c);min-height:var(--rwwhsl9c);min-width:var(--rwwhsl9c);width:var(--rwwhsl9c)}.uv_plus_dkdfcqh{height:var(--rwwhsl9h);min-height:var(--rwwhsl9h);min-width:var(--rwwhsl9h);width:var(--rwwhsl9h)}.uv_plus_dkdfcqi{height:var(--rwwhsl9a);min-height:var(--rwwhsl9a);min-width:var(--rwwhsl9a);width:var(--rwwhsl9a)}.uv_plus_dkdfcqj{height:var(--rwwhsl9l);min-height:var(--rwwhsl9l);min-width:var(--rwwhsl9l);width:var(--rwwhsl9l)}.uv_plus_dkdfcqk{fill:var(--rwwhsl5t)}.uv_plus_dkdfcql{fill:var(--rwwhsl6h)}.uv_plus_dkdfcqm{fill:var(--rwwhsl28)}.uv_plus_dkdfcqn{fill:var(--rwwhsl75)}.uv_plus_dkdfcqo{fill:var(--rwwhslj)}.uv_plus_dkdfcqp{fill:var(--rwwhsl7t)}.uv_plus_dkdfcqq{fill:var(--rwwhsl17)}.uv_plus_dkdfcqr{fill:currentColor}.uv_plus_dkdfcqs{fill:var(--rwwhsl5t)}.uv_plus_dkdfcqt{fill:var(--rwwhsl6h)}.uv_plus_dkdfcqu{fill:var(--rwwhsl2b)}.uv_plus_dkdfcqv{fill:var(--rwwhsl75)}.uv_plus_dkdfcqw{fill:var(--rwwhslj)}.uv_plus_dkdfcqx{fill:var(--rwwhsl7t)}.uv_plus_dkdfcqy{fill:var(--rwwhsl17)}.uv_plus_dkdfcqz{fill:currentColor}.uv_plus_dkdfcq10{fill:var(--rwwhsl5t)}.uv_plus_dkdfcq11{fill:var(--rwwhsl6h)}.uv_plus_dkdfcq12{fill:var(--rwwhsl2d)}.uv_plus_dkdfcq13{fill:var(--rwwhsl75)}.uv_plus_dkdfcq14{fill:var(--rwwhslj)}.uv_plus_dkdfcq15{fill:var(--rwwhsl7t)}.uv_plus_dkdfcq16{fill:var(--rwwhsl17)}.uv_plus_dkdfcq17{fill:currentColor}.uv_plus_dkdfcq18{fill:var(--rwwhsl5t)}.uv_plus_dkdfcq19{fill:var(--rwwhsl6h)}.uv_plus_dkdfcq1a{fill:var(--rwwhsl2h)}.uv_plus_dkdfcq1b{fill:var(--rwwhsl75)}.uv_plus_dkdfcq1c{fill:var(--rwwhslj)}.uv_plus_dkdfcq1d{fill:var(--rwwhsl7t)}.uv_plus_dkdfcq1e{fill:var(--rwwhsl17)}.uv_plus_dkdfcq1f{fill:currentColor}.uv_plus_dkdfcq1g{fill:var(--rwwhsl5s)}.uv_plus_dkdfcq1h{fill:var(--rwwhsl6g)}.uv_plus_dkdfcq1i{fill:var(--rwwhsl27)}.uv_plus_dkdfcq1j{fill:var(--rwwhsl74)}.uv_plus_dkdfcq1k{fill:var(--rwwhsli)}.uv_plus_dkdfcq1l{fill:var(--rwwhsl7s)}.uv_plus_dkdfcq1m{fill:var(--rwwhsl16)}.uv_plus_dkdfcq1n{fill:currentColor}.uv_plus_dkdfcq1o{fill:var(--rwwhsl5s)}.uv_plus_dkdfcq1p{fill:var(--rwwhsl6g)}.uv_plus_dkdfcq1q{fill:var(--rwwhsl2a)}.uv_plus_dkdfcq1r{fill:var(--rwwhsl74)}.uv_plus_dkdfcq1s{fill:var(--rwwhsli)}.uv_plus_dkdfcq1t{fill:var(--rwwhsl7s)}.uv_plus_dkdfcq1u{fill:var(--rwwhsl16)}.uv_plus_dkdfcq1v{fill:currentColor}.uv_plus_dkdfcq1w{fill:var(--rwwhsl5s)}.uv_plus_dkdfcq1x{fill:var(--rwwhsl6g)}.uv_plus_dkdfcq1y{fill:var(--rwwhsl2c)}.uv_plus_dkdfcq1z{fill:var(--rwwhsl74)}.uv_plus_dkdfcq20{fill:var(--rwwhsli)}.uv_plus_dkdfcq21{fill:var(--rwwhsl7s)}.uv_plus_dkdfcq22{fill:var(--rwwhsl16)}.uv_plus_dkdfcq23{fill:currentColor}.uv_plus_dkdfcq24{fill:var(--rwwhsl5s)}.uv_plus_dkdfcq25{fill:var(--rwwhsl6g)}.uv_plus_dkdfcq26{fill:var(--rwwhsl2g)}.uv_plus_dkdfcq27{fill:var(--rwwhsl74)}.uv_plus_dkdfcq28{fill:var(--rwwhsli)}.uv_plus_dkdfcq29{fill:var(--rwwhsl7s)}.uv_plus_dkdfcq2a{fill:var(--rwwhsl16)}.uv_plus_dkdfcq2b{fill:currentColor}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcq7 .uv_plus_dkdfcq1g .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcq8 .uv_plus_dkdfcq1h .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcq9 .uv_plus_dkdfcq1i .fillStroke{fill:none;stroke:var(--rwwhsl27)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcqa .uv_plus_dkdfcq1j .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcqb .uv_plus_dkdfcq1k .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcqc .uv_plus_dkdfcq1l .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq3 .uv_plus_dkdfcqd .uv_plus_dkdfcq1m .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcq7 .uv_plus_dkdfcq1o .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcq8 .uv_plus_dkdfcq1p .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcq9 .uv_plus_dkdfcq1q .fillStroke{fill:none;stroke:var(--rwwhsl2a)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcqa .uv_plus_dkdfcq1r .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcqb .uv_plus_dkdfcq1s .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcqc .uv_plus_dkdfcq1t .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq4 .uv_plus_dkdfcqd .uv_plus_dkdfcq1u .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcq7 .uv_plus_dkdfcq1w .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcq8 .uv_plus_dkdfcq1x .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcq9 .uv_plus_dkdfcq1y .fillStroke{fill:none;stroke:var(--rwwhsl2c)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcqa .uv_plus_dkdfcq1z .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcqb .uv_plus_dkdfcq20 .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcqc .uv_plus_dkdfcq21 .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq5 .uv_plus_dkdfcqd .uv_plus_dkdfcq22 .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcq7 .uv_plus_dkdfcq24 .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcq8 .uv_plus_dkdfcq25 .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcq9 .uv_plus_dkdfcq26 .fillStroke{fill:none;stroke:var(--rwwhsl2g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcqa .uv_plus_dkdfcq27 .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcqb .uv_plus_dkdfcq28 .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcqc .uv_plus_dkdfcq29 .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcq1 .uv_plus_dkdfcq6 .uv_plus_dkdfcqd .uv_plus_dkdfcq2a .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_1fq6cbr0{height:var(--rwwhsl9k);min-width:var(--rwwhsl9k);width:var(--rwwhsl9k)}.uv_plus_1fq6cbr1{height:var(--rwwhsl9j);min-width:var(--rwwhsl9j);width:var(--rwwhsl9j)}.uv_plus_1fq6cbr2{height:var(--rwwhsl9h);min-width:var(--rwwhsl9h);width:var(--rwwhsl9h)}.uv_plus_1fq6cbr3{height:var(--rwwhsl9n);min-width:var(--rwwhsl9n);width:var(--rwwhsl9n)}.uv_plus_1fq6cbr4{height:var(--rwwhsl9f);min-width:var(--rwwhsl9f);width:var(--rwwhsl9f)}.uv_plus_1fq6cbr9 .fillWeak{fill:var(--rwwhsl4k)}.uv_plus_1fq6cbr9 g.fillWeak>*{fill:var(--rwwhsl4k)}.uv_plus_1fq6cbr9 path[fill].fillWeak{fill:var(--rwwhsl4k)}.uv_plus_1fq6cbr5 .fillWeak{fill:var(--rwwhsl4j)}.uv_plus_1fq6cbr5 g.fillWeak>*{fill:var(--rwwhsl4j)}.uv_plus_1fq6cbr5 path[fill].fillWeak{fill:var(--rwwhsl4j)}.uv_plus_1fq6cbra .fillWeak{fill:var(--rwwhsl48)}.uv_plus_1fq6cbra g.fillWeak>*{fill:var(--rwwhsl48)}.uv_plus_1fq6cbra path[fill].fillWeak{fill:var(--rwwhsl48)}.uv_plus_1fq6cbr6 .fillWeak{fill:var(--rwwhsl47)}.uv_plus_1fq6cbr6 g.fillWeak>*{fill:var(--rwwhsl47)}.uv_plus_1fq6cbr6 path[fill].fillWeak{fill:var(--rwwhsl47)}.uv_plus_1fq6cbrb .fillWeak{fill:var(--rwwhsl4q)}.uv_plus_1fq6cbrb g.fillWeak>*{fill:var(--rwwhsl4q)}.uv_plus_1fq6cbrb path[fill].fillWeak{fill:var(--rwwhsl4q)}.uv_plus_1fq6cbr7 .fillWeak{fill:var(--rwwhsl4p)}.uv_plus_1fq6cbr7 g.fillWeak>*{fill:var(--rwwhsl4p)}.uv_plus_1fq6cbr7 path[fill].fillWeak{fill:var(--rwwhsl4p)}.uv_plus_1fq6cbrc .fillWeak{fill:var(--rwwhsl4e)}.uv_plus_1fq6cbrc g.fillWeak>*{fill:var(--rwwhsl4e)}.uv_plus_1fq6cbrc path[fill].fillWeak{fill:var(--rwwhsl4e)}.uv_plus_1fq6cbr8 .fillWeak{fill:var(--rwwhsl4d)}.uv_plus_1fq6cbr8 g.fillWeak>*{fill:var(--rwwhsl4d)}.uv_plus_1fq6cbr8 path[fill].fillWeak{fill:var(--rwwhsl4d)}.uv_plus_1fq6cbr9 .fillStrong{fill:var(--rwwhsl4i)}.uv_plus_1fq6cbr9 g.fillStrong>*{fill:var(--rwwhsl4i)}.uv_plus_1fq6cbr9 path[fill].fillStrong{fill:var(--rwwhsl4i)}.uv_plus_1fq6cbr5 .fillStrong{fill:var(--rwwhsl4h)}.uv_plus_1fq6cbr5 g.fillStrong>*{fill:var(--rwwhsl4h)}.uv_plus_1fq6cbr5 path[fill].fillStrong{fill:var(--rwwhsl4h)}.uv_plus_1fq6cbra .fillStrong{fill:var(--rwwhsl46)}.uv_plus_1fq6cbra g.fillStrong>*{fill:var(--rwwhsl46)}.uv_plus_1fq6cbra path[fill].fillStrong{fill:var(--rwwhsl46)}.uv_plus_1fq6cbr6 .fillStrong{fill:var(--rwwhsl45)}.uv_plus_1fq6cbr6 g.fillStrong>*{fill:var(--rwwhsl45)}.uv_plus_1fq6cbr6 path[fill].fillStrong{fill:var(--rwwhsl45)}.uv_plus_1fq6cbrb .fillStrong{fill:var(--rwwhsl4o)}.uv_plus_1fq6cbrb g.fillStrong>*{fill:var(--rwwhsl4o)}.uv_plus_1fq6cbrb path[fill].fillStrong{fill:var(--rwwhsl4o)}.uv_plus_1fq6cbr7 .fillStrong{fill:var(--rwwhsl4n)}.uv_plus_1fq6cbr7 g.fillStrong>*{fill:var(--rwwhsl4n)}.uv_plus_1fq6cbr7 path[fill].fillStrong{fill:var(--rwwhsl4n)}.uv_plus_1fq6cbrc .fillStrong{fill:var(--rwwhsl4c)}.uv_plus_1fq6cbrc g.fillStrong>*{fill:var(--rwwhsl4c)}.uv_plus_1fq6cbrc path[fill].fillStrong{fill:var(--rwwhsl4c)}.uv_plus_1fq6cbr8 .fillStrong{fill:var(--rwwhsl4b)}.uv_plus_1fq6cbr8 g.fillStrong>*{fill:var(--rwwhsl4b)}.uv_plus_1fq6cbr8 path[fill].fillStrong{fill:var(--rwwhsl4b)}.uv_plus_1fq6cbr9 .fill{fill:var(--rwwhsl4g)}.uv_plus_1fq6cbr9 g.fill>*{fill:var(--rwwhsl4g)}.uv_plus_1fq6cbr9 path[fill].fill{fill:var(--rwwhsl4g)}.uv_plus_1fq6cbr5 .fill{fill:var(--rwwhsl4f)}.uv_plus_1fq6cbr5 g.fill>*{fill:var(--rwwhsl4f)}.uv_plus_1fq6cbr5 path[fill].fill{fill:var(--rwwhsl4f)}.uv_plus_1fq6cbra .fill{fill:var(--rwwhsl44)}.uv_plus_1fq6cbra g.fill>*{fill:var(--rwwhsl44)}.uv_plus_1fq6cbra path[fill].fill{fill:var(--rwwhsl44)}.uv_plus_1fq6cbr6 .fill{fill:var(--rwwhsl43)}.uv_plus_1fq6cbr6 g.fill>*{fill:var(--rwwhsl43)}.uv_plus_1fq6cbr6 path[fill].fill{fill:var(--rwwhsl43)}.uv_plus_1fq6cbrb .fill{fill:var(--rwwhsl4m)}.uv_plus_1fq6cbrb g.fill>*{fill:var(--rwwhsl4m)}.uv_plus_1fq6cbrb path[fill].fill{fill:var(--rwwhsl4m)}.uv_plus_1fq6cbr7 .fill{fill:var(--rwwhsl4l)}.uv_plus_1fq6cbr7 g.fill>*{fill:var(--rwwhsl4l)}.uv_plus_1fq6cbr7 path[fill].fill{fill:var(--rwwhsl4l)}.uv_plus_1fq6cbrc .fill{fill:var(--rwwhsl4a)}.uv_plus_1fq6cbrc g.fill>*{fill:var(--rwwhsl4a)}.uv_plus_1fq6cbrc path[fill].fill{fill:var(--rwwhsl4a)}.uv_plus_1fq6cbr8 .fill{fill:var(--rwwhsl49)}.uv_plus_1fq6cbr8 g.fill>*{fill:var(--rwwhsl49)}.uv_plus_1fq6cbr8 path[fill].fill{fill:var(--rwwhsl49)}.uv_plus_1ko5kn21{max-width:var(--uv_plus_1ko5kn20)}.uv_plus_1ko5kn22{margin-right:var(--rwwhsl9u);width:15px}.uv_plus_1ko5kn24{margin-left:var(--rwwhsla4)}.uv_plus_1ko5kn25{align-items:center;display:flex;flex-direction:row;justify-content:space-between;min-height:var(--rwwhsl9l);padding-bottom:var(--rwwhsl9u);padding-top:var(--rwwhsl9u);-webkit-box-pack:justify}.uv_plus_1ko5kn26{display:flex;flex-direction:column;height:var(--rwwhsl9k);justify-content:center;-webkit-box-pack:center}.uv_plus_1ko5kn27{animation:.8s uv_15brg2b3}.uv_plus_1ko5kn29{animation:uv_15brg2b3 .8s}.uv_plus_1ko5kn2a{text-align:right}.uv_plus_1ko5kn2b{display:flex;flex-direction:column;height:var(--rwwhsl9k);justify-content:center;text-align:initial;-webkit-box-pack:center}.uv_plus_1ko5kn2c{align-self:center;margin-left:var(--rwwhsl9u)}.uv_plus_1ko5kn2d{margin-left:var(--rwwhsl9u)}.uv_plus_1ko5kn2e{max-width:75%}.uv_plus_1ko5kn2f{vertical-align:text-top}.uv_plus_1ko5kn2g{text-decoration-color:var(--rwwhsl7m);text-decoration-line:line-through}.uv_plus_1ko5kn2h{align-items:center;color:var(--rwwhsl2m);font-size:16px;margin-right:var(--rwwhsla4);max-width:500px}.uv_plus_1ko5kn2i{display:inline-flex}.uv_plus_1ko5kn2j{display:flex}.uv_plus_1ko5kn2n{color:var(--rwwhsl2j);display:block;font-size:14px;line-height:8}.uv_plus_1ko5kn2o{align-items:center;color:var(--rwwhsl2m);display:inline-flex;font-weight:500;margin-right:4px}.uv_plus_1ko5kn2p{font-size:24px}.uv_plus_1ko5kn2q{font-size:16px;text-transform:capitalize}.uv_plus_1ko5kn2r,.uv_plus_1ko5kn2s{font-size:16px}.uv_plus_1ko5kn2t{-moz-appearance:textfield}.uv_plus_1ko5kn2t::-webkit-inner-spin-button,.uv_plus_1ko5kn2t::webkit-outer-spin-button{margin:0;-webkit-appearance:none}.uv_plus_sk5tga2{margin-right:var(--rwwhsl9u);width:15px}.uv_plus_sk5tga3{border:1px solid var(--rwwhsl1v);width:100%}.uv_plus_sk5tga4{border-radius:4px}.uv_plus_sk5tga5{border-radius:4px 4px 0}.uv_plus_sk5tga6{border-radius:4px;margin-top:var(--rwwhsl9v)}.uv_plus_sk5tga3>*{margin-top:0}.uv_plus_sk5tga3>*+*{margin-top:var(--rwwhsl9v)}.uv_plus_sk5tga7{background-color:var(--rwwhsl1i)}.uv_plus_sk5tga8{background-color:var(--rwwhsl1r);border-left:1px solid var(--rwwhsl1v);min-width:126px;width:30%}.uv_plus_sk5tga9{min-width:230px;padding-left:var(--uv_plus_sk5tga0);padding-right:var(--rwwhsl9v);position:relative;width:70%}.uv_plus_sk5tgaa:before{content:"";border-bottom:1px solid var(--rwwhsl1v);bottom:0;height:1px;left:0;margin-left:var(--rwwhsl9v);position:absolute;width:calc(100% - 32px)}.uv_plus_sk5tgab{background:var(--rwwhsl5g)}.uv_plus_sk5tgac{background-color:var(--rwwhsl5g);border-color:var(--rwwhsl1v);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);border-right:none;border-style:solid;border-width:0 1px 1px 1px;height:var(--rwwhsl9l);min-width:126px;width:30%}.uv_plus_sk5tgad{border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);border-right:1px solid var(--rwwhsl1v);margin:0;width:100%}.uv_plus_sk5tgae{align-items:center;color:var(--rwwhsl2j);display:flex;font-size:18px;font-weight:500;margin:0;padding:var(--rwwhsl9v)}.uv_plus_sk5tgaf{width:70%}.uv_plus_sk5tgag{align-items:start;float:right;max-width:200px;padding:var(--rwwhsl9v);text-align:left}.uv_plus_sk5tgah{position:absolute;top:calc(50% - 16px)}.uv_plus_sk5tgai{margin-left:-185px}.uv_plus_sk5tgaj{margin-left:-115px}.uv_plus_sk5tgak{border-left:1px solid var(--rwwhsl1v);min-width:200px;padding:0 24px}.uv_plus_sk5tgak:first-of-type,.uv_plus_sk5tgak:last-child{border:0}.uv_plus_sk5tgal{display:none}.uv_plus_sk5tgam{border:0}.uv_plus_sk5tgao{display:inline-block;font-size:12px;height:var(--rwwhsl9f);line-height:18;margin-right:var(--rwwhsl9u)}.uv_plus_sk5tgap{margin-top:var(--rwwhsl9w)}.uv_plus_sk5tgaq{margin-left:var(--rwwhsl9v);text-align:right}.uv_plus_sk5tgar{text-align:right}.uv_plus_sk5tgas{margin-right:var(--rwwhsl9u)}.uv_plus_sk5tgat{padding:0}.uv_plus_sk5tgau{background-color:var(--rwwhsl1i);display:flex;height:120px;justify-content:center;left:0;margin:var(--uv_plus_sk5tga1);position:fixed;right:0;transition:bottom .3s,box-shadow .3s;z-index:1}.uv_plus_sk5tgav{bottom:0;box-shadow:var(--rwwhsl8c)}.uv_plus_sk5tgaw{bottom:-120px;box-shadow:0}.uv_plus_sk5tgax{display:flex;flex-direction:row;justify-content:center;list-style:none;margin:0;padding:var(--rwwhsl9w) 0}.uv_plus_sk5tgay{display:flex;min-width:158px;padding:12px 0}.uv_plus_sk5tgaz{display:none}.uv_plus_sk5tga11{background:var(--rwwhsl1r);padding:var(--rwwhsl9v)}.uv_plus_sk5tga12{align-items:center;display:flex;flex-direction:row;gap:var(--rwwhsl9u);justify-content:center}@media(max-width:1800px){.uv_plus_sk5tgan{display:none}}.uv_plus_5imqkb0{padding:var(--rwwhsl9v);text-align:left}.uv_plus_h6pvpm1{align-items:start;display:flex;flex-direction:column;font-size:var(--rwwhsla9);line-height:var(--rwwhslac);margin:0;width:100%}.uv_plus_h6pvpm2{border-bottom:1px var(--rwwhsl1v) solid;padding-block:var(--rwwhsl9v);width:var(--uv_plus_h6pvpm0)}.uv_plus_h6pvpm2:first-of-type{padding-top:0}.uv_plus_h6pvpm2:last-of-type{border-bottom-color:transparent;padding-bottom:0}.uv_plus_h6pvpm2>*:not(:last-child){padding-right:var(--rwwhsl9v)}.uv_plus_h6pvpm3{align-items:center;color:var(--rwwhsl2m);display:inline-flex;font-weight:var(--rwwhslbg);min-width:0}.uv_plus_h6pvpm4{color:var(--rwwhsl2j);margin:0;min-width:0;width:100%}.uv_plus_h6pvpm5{display:inline-block;min-width:0;width:100%}.uv_plus_h6pvpm5>*{align-items:center;display:inline-flex;margin-right:var(--rwwhsl9u)}@keyframes uv_plus_1ngtn5a0{0%{max-height:50px}to{max-height:32px}}@keyframes uv_plus_1ngtn5a1{0%{margin-bottom:-8px;max-height:0;opacity:0}to{margin-bottom:0;max-height:40px;opacity:1}}.uv_plus_nytpcy0{height:calc(var(--rwwhslau) + var(--rwwhsl9u));padding-bottom:var(--rwwhsl9u);padding-left:var(--rwwhsl9u);transition:opacity .25s ease-in-out,height .25s ease-in-out}.uv_plus_nytpcy1{animation:uv_plus_1ngtn5a1 .25s ease-in-out reverse}.uv_plus_nytpcy2{animation:uv_plus_1ngtn5a1 .25s ease-in-out}.uv_plus_nytpcy4{padding-top:var(--rwwhsl9u)}.uv_plus_nytpcy5{border-top:2px solid;border-color:transparent;height:2px;left:0;padding:var(--rwwhsla4) 0;position:absolute;right:0;top:0}.uv_plus_nytpcy5:before{content:"";border:3px solid;border-color:inherit;border-radius:var(--rwwhsl84);height:0;left:0;position:absolute;top:-4px;width:0}.uv_plus_nytpcy6{position:relative}.uv_plus_nytpcy7{padding:var(--rwwhsl9u) 0}.uv_plus_nytpcy8{margin-left:var(--rwwhsla4);padding-left:var(--rwwhsl9x)}.uv_plus_nytpcy9{margin:var(--rwwhsl9v) calc(var(--rwwhsl9v) * -1);flex-shrink:0}.uv_plus_nytpcya{height:100%}.uv_plus_x6an4g0{width:180px}.uv_plus_x6an4g1{position:relative}.uv_plus_x6an4g2{padding-left:var(--rwwhsl9u)}.uv_plus_x6an4g3{border-radius:var(--rwwhsl85);bottom:0;margin:auto 0;padding:var(--rwwhsla5);position:absolute;top:0}.uv_plus_x6an4g4:hover{background:var(--rwwhsl5i)}.uv_plus_x6an4g5:hover{background:var(--rwwhsl1u)}.uv_plus_x6an4g6{text-align:left}.uv_plus_x6an4g8{background-color:inherit;border:none;border-radius:var(--rwwhsl85);color:inherit;margin-top:var(--rwwhsla5);padding:calc(var(--rwwhsla5) + var(--rwwhsla4)) var(--rwwhsl9u);text-align:left;text-decoration:none;width:100%}.uv_plus_x6an4ga{background-color:unset;cursor:not-allowed}.uv_plus_x6an4gb{background-color:var(--rwwhsl1k)}.uv_plus_x6an4gc{background-color:var(--rwwhsl5g)}.uv_plus_x6an4gc:hover{background-color:var(--rwwhsl5i)}.uv_plus_x6an4gd{cursor:pointer}.uv_plus_x6an4ge{padding:var(--rwwhsla4) var(--rwwhsl9u)}.uv_plus_x6an4gf:active{background-color:var(--rwwhsl1k)}.uv_plus_x6an4gg{background-color:var(--rwwhsl1u)}.uv_plus_x6an4gh:hover,.uv_plus_x6an4gh:focus{background-color:var(--rwwhsl1r)}.uv_plus_x6an4gi{animation:uv_plus_1ngtn5a0 .25s ease-in-out}.uv_plus_x6an4gj{animation:uv_plus_1ngtn5a0 .25s ease-in-out reverse}.uv_plus_x6an4gn{cursor:grab;margin:0 var(--rwwhsla5);opacity:0}.uv_plus_x6an4gk:hover .uv_plus_x6an4gn,.uv_plus_x6an4gk:focus .uv_plus_x6an4gn,.uv_plus_x6an4gk:active .uv_plus_x6an4gn{opacity:1}.uv_plus_x6an4go{display:-webkit-box;overflow:hidden;overflow-wrap:anywhere;-webkit-box-orient:vertical;-webkit-line-clamp:2}.uv_plus_x6an4gm:hover .uv_plus_x6an4go{color:var(--rwwhsl2u)}.uv_plus_x6an4gp{color:var(--rwwhsl2t)}.uv_plus_x6an4gq{color:var(--rwwhsl2u)}.uv_plus_x6an4g6:hover .uv_plus_x6an4gr,.uv_plus_x6an4g6:focus .uv_plus_x6an4gr,.uv_plus_x6an4g6:active .uv_plus_x6an4gr{opacity:1}.uv_plus_x6an4g7:hover .uv_plus_x6an4gr,.uv_plus_x6an4g7:focus .uv_plus_x6an4gr,.uv_plus_x6an4g7:active .uv_plus_x6an4gr{opacity:0}.uv_plus_x6an4gl:hover .uv_plus_x6an4gr,.uv_plus_x6an4gl:active .uv_plus_x6an4gr,.uv_plus_x6an4gl:focus .uv_plus_x6an4gr{opacity:0}.uv_plus_x6an4gs{inset:0 0 0 -24px;margin:auto;opacity:0;pointer-events:visible;position:absolute;visibility:visible}.uv_plus_x6an4gs:hover,.uv_plus_x6an4gs:focus,.uv_plus_x6an4gs:active{opacity:1;pointer-events:auto}.uv_plus_x6an4g6:hover .uv_plus_x6an4gs,.uv_plus_x6an4g6:focus .uv_plus_x6an4gs,.uv_plus_x6an4g6:active .uv_plus_x6an4gs{opacity:1;pointer-events:auto}.uv_plus_x6an4gl:hover .uv_plus_x6an4gs,.uv_plus_x6an4gl:active .uv_plus_x6an4gs,.uv_plus_x6an4gl:focus .uv_plus_x6an4gs{opacity:1;pointer-events:auto}.uv_plus_x6an4gt{animation:uv_15brg2b7 .25s ease-in-out reverse}.uv_plus_x6an4gu{animation:uv_15brg2b7 .25s ease-in-out}.uv_plus_x6an4gv{margin-top:var(--rwwhsla5);padding:0 var(--rwwhsl9v);width:fit-content}.uv_plus_x6an4gw{padding-top:var(--rwwhsla4)}.uv_plus_x6an4gx{min-width:20px}.uv_plus_x6an4gy{padding-left:28px}.uv_plus_x6an4gz{display:none}.uv_plus_19x50fv0{background:var(--rwwhsl1i);border-top:1px solid var(--rwwhsl24);box-shadow:var(--rwwhsl8c);display:flex;justify-content:flex-end;padding:var(--rwwhsl9u) var(--rwwhsl9v);transition:justify-content .25s ease-in-out,box-shadow .23s ease-in-out;width:100%}.uv_plus_19x50fv1{border:none;box-shadow:none}.uv_plus_19x50fv2{background:var(--rwwhsl1i)}.uv_plus_19x50fv3{height:22px;margin:var(--rwwhsl9w) var(--rwwhsl9w) var(--rwwhsl9v) var(--rwwhsl9w);max-width:220px;overflow:hidden}.uv_plus_19x50fv4{border-right:1px solid var(--rwwhsl24);display:flex;flex-direction:row;position:relative}.uv_plus_19x50fv5{background:var(--rwwhsl1i);display:flex;flex-direction:column;width:var(--uv_plus_1rde5pt0)}.uv_plus_19x50fv6{transition:width .25s ease-in-out;width:67px}.uv_plus_19x50fv7{transition:width .25s ease-in-out;width:var(--uv_plus_1rde5pt0)}.uv_plus_19x50fv9{width:67px}.uv_plus_19x50fva{max-width:320px;min-width:220px}.uv_plus_19x50fvb{display:flex;flex-direction:column;flex-grow:1;overflow:hidden}.uv_plus_19x50fvc{align-items:center}.uv_plus_19x50fvd{flex-grow:1;overflow-x:hidden;overflow-y:auto;padding:var(--rwwhsl9v)}.uv_plus_19x50fve{background:transparent;border-right:2px solid transparent;bottom:0;cursor:col-resize;display:flex;position:absolute;right:0;top:0;width:6px}.uv_plus_19x50fve:hover{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp1 td:first-child,.uv_plus_1wcpahp1 th:first-child{max-width:var(--rwwhsl9l);min-width:var(--rwwhsl9l);width:var(--rwwhsl9l)}.uv_plus_1wcpahp2{background:var(--rwwhsl1r);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);cursor:auto;display:table-row;position:relative;vertical-align:middle;width:100%}.uv_plus_1wcpahp2 td,.uv_plus_1wcpahp2 td:first-child,.uv_plus_1wcpahp2 td:last-child{border-bottom:1px solid transparent;transition:box-shadow .2s ease,border-color .2s ease}.uv_plus_1wcpahp3{border:1px solid var(--rwwhsl1v);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);border-top-color:transparent;margin-top:calc((var(--rwwhsl9v) * -1) - 1px);padding-block:var(--rwwhsla4);padding-inline:var(--rwwhsl9u);transition:border-color .2s ease}.uv_plus_1wcpahp4,.uv_plus_1wcpahp5{border:1px solid var(--rwwhsl1v)}.uv_plus_1wcpahp5.uv_plus_1wcpahp5{border-top:1px solid transparent}.uv_plus_1wcpahpd{background-color:var(--rwwhsl5g);color:var(--rwwhsl5y)}.uv_plus_1wcpahpe{background-color:var(--rwwhsl64);color:var(--rwwhsl6m)}.uv_plus_1wcpahpf{background-color:var(--rwwhsl1s);color:var(--rwwhsl2j)}.uv_plus_1wcpahpg{background-color:var(--rwwhsl6s);color:var(--rwwhsl7a)}.uv_plus_1wcpahph{background-color:var(--rwwhsl6);color:var(--rwwhslo)}.uv_plus_1wcpahpi{background-color:var(--rwwhsl7g);color:var(--rwwhsl7y)}.uv_plus_1wcpahpj{background-color:var(--rwwhslu);color:var(--rwwhsl1c)}.uv_plus_1wcpahpk{background-color:var(--rwwhsl5h);color:var(--rwwhsl5z)}.uv_plus_1wcpahpl{background-color:var(--rwwhsl65);color:var(--rwwhsl6n)}.uv_plus_1wcpahpm{background-color:var(--rwwhsl1r);color:var(--rwwhsl2k)}.uv_plus_1wcpahpn{background-color:var(--rwwhsl6t);color:var(--rwwhsl7b)}.uv_plus_1wcpahpo{background-color:var(--rwwhsl7);color:var(--rwwhslp)}.uv_plus_1wcpahpp{background-color:var(--rwwhsl7h);color:var(--rwwhsl7z)}.uv_plus_1wcpahpq{background-color:var(--rwwhslv);color:var(--rwwhsl1d)}.uv_plus_1wcpahpr{border:1px solid var(--rwwhsl5m);border-top-color:transparent}.uv_plus_1wcpahps{border-top-color:transparent}.uv_plus_1wcpahpt{border-top-left-radius:0;border-top-right-radius:0;height:fit-content;padding:0;width:100%}.uv_plus_1wcpahpu{border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);border-top:1px solid var(--rwwhsl1v);height:fit-content;padding-block:var(--rwwhsla4);padding-inline:var(--rwwhsl9u);width:100%}.uv_plus_1wcpahpu[aria-disabled=true]{background-color:var(--rwwhsl1j)}.uv_plus_1wcpahpv{background-color:var(--rwwhsl5g)}.uv_plus_1wcpahpw{background-color:var(--rwwhsl64)}.uv_plus_1wcpahpx{background-color:var(--rwwhsl1r)}.uv_plus_1wcpahpy{background-color:var(--rwwhsl6s)}.uv_plus_1wcpahpz{background-color:var(--rwwhsl6)}.uv_plus_1wcpahp10{background-color:var(--rwwhsl7g)}.uv_plus_1wcpahp11{background-color:var(--rwwhslu)}.uv_plus_1wcpahp12{left:var(--rwwhsl9y);position:absolute;transform:translateY(-160%)}.uv_plus_1wcpahp13{padding:0;width:32px}.uv_plus_1wcpahp13:first-of-type{padding-left:var(--rwwhsl9v)}.uv_plus_1wcpahp14{color:var(--rwwhsl5y)}.uv_plus_1wcpahp14 td,.uv_plus_1wcpahp14 td:first-child,.uv_plus_1wcpahp14 td:last-child{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp15 td:nth-child(2),.uv_plus_1wcpahp16 td:nth-child(3){font-weight:var(--rwwhslay)}.uv_plus_1wcpahp14[aria-expanded=true] td,.uv_plus_1wcpahp14[aria-expanded=true] td:first-child,.uv_plus_1wcpahp14[aria-expanded=true] td:last-child,.uv_plus_1wcpahp14[aria-expanded=true]+tr td{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp17 td,.uv_plus_1wcpahp17 td:first-child{border-bottom-left-radius:0}.uv_plus_1wcpahp17 td,.uv_plus_1wcpahp17 td:last-child{border-bottom-right-radius:0}.uv_plus_1wcpahp18{display:flex}.uv_plus_1wcpahp19{padding:var(--uv_plus_1wcpahp0)}.uv_plus_1wcpahp1a{white-space:pre-line}.uv_plus_1wcpahp1b{height:100%}.uv_plus_1q5g1ma0{background-color:var(--rwwhsl1r);height:100%;min-width:20rem}.uv_plus_1q5g1ma1{height:var(--rwwhsl9o);padding:var(--rwwhsl9w);padding-bottom:var(--rwwhsl9v)}.uv_plus_1q5g1ma3{border-bottom:1px solid var(--rwwhsl1v)}.uv_plus_1q5g1ma4{background-color:var(--rwwhsl1i)}.uv_plus_1q5g1ma5{border-top:1px solid var(--rwwhsl1v);padding:var(--rwwhsl9w)}.uv_plus_1q5g1ma6{background-color:var(--rwwhsl1i);max-width:12.5rem}.uv_plus_1q5g1ma7{height:100%;min-height:10rem;overflow-y:scroll;padding:var(--rwwhsl9w)}.uv_plus_1q5g1ma8{padding-left:var(--rwwhsl9u)}.uv_plus_1q5g1ma9:not(:last-child){border-bottom:1px solid var(--rwwhsl1v);padding-bottom:var(--rwwhsl9w)}.uv_plus_1q5g1maa{color:inherit;text-decoration:inherit;transition:color .25s ease-out}.uv_plus_1q5g1maa:hover{color:var(--rwwhsl1c)}.uv_plus_1q5g1mab{opacity:0;position:absolute;transform:translate(calc(-1 *var(--rwwhsl9v)));transition:opacity .25s ease-in-out}.uv_plus_1q5g1maa:hover>.uv_plus_1q5g1mab{opacity:1}.uv_plus_1q5g1mac{margin-top:var(--rwwhsla4)}.uv_plus_1q5g1mad{margin-top:var(--rwwhsla5)}@media(min-width:1440px){.uv_plus_1q5g1ma0{min-width:27.5rem}}.uv_plus_11wud800{cursor:pointer}.uv_plus_11wud801{border-collapse:separate;border-spacing:var(--rwwhsl9v) 0;height:1px;margin:0 calc(-1 * var(--rwwhsl9v));table-layout:fixed;width:calc(100% + var(--rwwhsl9x))}.uv_plus_11wud802{bottom:100%;left:50%;position:absolute;transform:translate(-50%) translateY(50%)}.uv_plus_11wud803{background-color:transparent;outline:none;padding:var(--rwwhsl9u);text-align:center}.uv_plus_11wud803:first-child{text-align:left}tbody .uv_plus_11wud803:not(:first-child){border:1px solid var(--rwwhsl1v);border-width:0 1px}tbody tr:last-child .uv_plus_11wud803{padding-bottom:var(--rwwhsl9x)}tbody tr:last-child .uv_plus_11wud803:not(:first-child){border:1px solid var(--rwwhsl1v);border-radius:0 0 var(--rwwhsl86) var(--rwwhsl86);border-width:0 1px 1px 1px}thead .uv_plus_11wud803{height:100%;padding-bottom:var(--rwwhsl9w);padding-top:var(--rwwhsl9x);position:relative;vertical-align:top}thead .uv_plus_11wud803:first-child{vertical-align:bottom}thead .uv_plus_11wud803:not(:first-child){border:1px solid var(--rwwhsl1v);border-radius:var(--rwwhsl86) var(--rwwhsl86) 0 0;border-width:1px 1px 0 1px}thead .uv_plus_11wud804:not(:first-child),tbody .uv_plus_11wud804:not(:first-child),tbody tr:last-child .uv_plus_11wud804:not(:first-child){border-color:var(--rwwhsl5m)}.uv_plus_11wud805{background-color:var(--rwwhsl1j)}thead .uv_plus_11wud806:not(:first-child),tbody .uv_plus_11wud806:not(:first-child),tbody tr:last-child .uv_plus_11wud806:not(:first-child){border-color:#00f;border-width:2px 2px 0 2px}.uv_plus_11wud807{display:none}.uv_plus_11wud808{padding-left:var(--rwwhsl9w);text-align:start}thead .uv_plus_11wud808{padding-left:var(--rwwhsl9u)}.uv_plus_11wud809{cursor:pointer}tbody .uv_plus_11wud80a{padding-bottom:var(--rwwhsl9z)}.uv_plus_11wud80b{display:none}.uv_plus_11wud80c{text-transform:uppercase}.uv_plus_11wud80d{left:0;opacity:0;position:absolute;top:0}.uv_plus_11wud80e{height:100%}.uv_plus_11wud80f{padding:var(--rwwhsl9u);width:100%}.uv_plus_11wud80g{width:100%}.uv_plus_11wud80h{align-items:center;display:flex;height:var(--rwwhsl9k)}.uv_plus_l0ny240{padding:0}.uv_plus_l0ny241{border-right:1px solid var(--rwwhsl1v);padding:var(--rwwhsl9w)}.uv_plus_l0ny242{min-width:0;padding:var(--rwwhsl9w);padding-top:var(--rwwhsl9x)}.uv_plus_l0ny243{display:flex;justify-content:right}.uv_plus_l0ny244{margin-bottom:var(--rwwhsl9w)}.uv_plus_l0ny245{cursor:pointer;text-decoration:underline;text-decoration-color:transparent;text-decoration-thickness:1px;text-underline-offset:2px;transition:text-decoration-color .25s ease-out}.uv_plus_l0ny245:active{text-decoration-thickness:2px}.uv_plus_l0ny245:hover{text-decoration:underline;text-decoration-thickness:1px}.uv_plus_l0ny246{align-items:center}.uv_plus_l0ny247{width:fit-content}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ultraviolet/plus",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "Ultraviolet Plus",
|
|
5
5
|
"homepage": "https://github.com/scaleway/ultraviolet#readme",
|
|
6
6
|
"repository": {
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
"react-intersection-observer": "10.0.0",
|
|
77
77
|
"@ultraviolet/icons": "5.0.4",
|
|
78
78
|
"@ultraviolet/themes": "3.0.3",
|
|
79
|
-
"@ultraviolet/
|
|
80
|
-
"@ultraviolet/
|
|
79
|
+
"@ultraviolet/utils": "1.0.0",
|
|
80
|
+
"@ultraviolet/ui": "3.5.1"
|
|
81
81
|
},
|
|
82
82
|
"scripts": {
|
|
83
83
|
"type:generate": "tsc --declaration -p tsconfig.build.json",
|