@ultraviolet/plus 3.0.0 → 3.1.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/README.md +1 -1
- package/dist/components/ContentCard/styles.css.js +1 -0
- package/dist/components/ContentCardGroup/styles.css.js +0 -1
- package/dist/components/EstimateCost/Components/components.css.js +1 -1
- package/dist/components/Navigation/styles.css.js +1 -0
- package/dist/components/Navigation/variables.css.js +0 -1
- package/dist/components/OrderSummary/NonScrollableContent.d.ts +4 -1
- package/dist/components/OrderSummary/NonScrollableContent.js +38 -30
- package/dist/components/OrderSummary/ScrollableContent.js +50 -9
- package/dist/components/OrderSummary/index.d.ts +1 -1
- package/dist/components/OrderSummary/index.js +9 -3
- package/dist/components/OrderSummary/styles.css.d.ts +11 -0
- package/dist/components/OrderSummary/styles.css.js +5 -0
- package/dist/components/OrderSummary/types.d.ts +9 -1
- package/dist/components/Plans/index.d.ts +6 -1
- package/dist/components/Plans/index.js +32 -16
- package/dist/plus.css +1 -1
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
/* empty css */
|
|
19
19
|
/* empty css */
|
|
20
20
|
/* empty css */
|
|
21
|
+
/* empty css */
|
|
21
22
|
/* empty css */
|
|
22
23
|
/* empty css */
|
|
23
24
|
/* empty css */
|
|
@@ -25,7 +26,6 @@
|
|
|
25
26
|
/* empty css */
|
|
26
27
|
/* empty css */
|
|
27
28
|
/* empty css */
|
|
28
|
-
/* empty css */
|
|
29
29
|
/* empty css */
|
|
30
30
|
/* empty css */
|
|
31
31
|
/* empty css */
|
|
@@ -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: [] });
|
|
@@ -6,10 +6,13 @@ type NonScrollableContentProps = {
|
|
|
6
6
|
footer: ReactNode;
|
|
7
7
|
children: ReactNode;
|
|
8
8
|
totalPriceInfo?: ReactNode;
|
|
9
|
+
totalPriceInfoPlacement?: 'left' | 'right';
|
|
9
10
|
totalPriceDescription?: ReactNode;
|
|
10
11
|
additionalInfo?: string;
|
|
11
12
|
hideDetails: boolean;
|
|
12
13
|
unit: TimeUnit;
|
|
14
|
+
priceInformation?: ReactNode;
|
|
15
|
+
hideBeforePrice?: boolean;
|
|
13
16
|
};
|
|
14
|
-
export declare const NonScrollableContent: ({ totalPrice, footer, children, totalPriceInfo, hideDetails, unit, totalPriceDescription, additionalInfo, }: NonScrollableContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export declare const NonScrollableContent: ({ totalPrice, footer, children, totalPriceInfo, totalPriceInfoPlacement, hideDetails, unit, totalPriceDescription, additionalInfo, priceInformation, hideBeforePrice, }: NonScrollableContentProps) => import("react/jsx-runtime").JSX.Element;
|
|
15
18
|
export {};
|
|
@@ -9,16 +9,19 @@ const NonScrollableContent = ({
|
|
|
9
9
|
footer,
|
|
10
10
|
children,
|
|
11
11
|
totalPriceInfo,
|
|
12
|
+
totalPriceInfoPlacement,
|
|
12
13
|
hideDetails,
|
|
13
14
|
unit,
|
|
14
15
|
totalPriceDescription,
|
|
15
|
-
additionalInfo
|
|
16
|
+
additionalInfo,
|
|
17
|
+
priceInformation,
|
|
18
|
+
hideBeforePrice
|
|
16
19
|
}) => {
|
|
17
20
|
const { locales } = useContext(OrderSummaryContext);
|
|
18
21
|
return /* @__PURE__ */ jsxs(Stack, { className: orderSummaryNonScrollableContainer, gap: 3, children: [
|
|
19
22
|
children,
|
|
20
23
|
/* @__PURE__ */ jsxs(Stack, { alignItems: "center", direction: "row", justifyContent: "space-between", children: [
|
|
21
|
-
totalPriceInfo ? /* @__PURE__ */ jsxs(Stack, { children: [
|
|
24
|
+
totalPriceInfo && totalPriceInfoPlacement === "left" ? /* @__PURE__ */ jsxs(Stack, { children: [
|
|
22
25
|
/* @__PURE__ */ jsxs(Stack, { alignItems: "center", direction: "row", gap: 1, children: [
|
|
23
26
|
/* @__PURE__ */ jsxs(
|
|
24
27
|
Text,
|
|
@@ -53,32 +56,8 @@ const NonScrollableContent = ({
|
|
|
53
56
|
),
|
|
54
57
|
totalPriceDescription
|
|
55
58
|
] }),
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
{
|
|
59
|
-
as: "span",
|
|
60
|
-
"data-testid": "total-price",
|
|
61
|
-
prominence: "strong",
|
|
62
|
-
sentiment: "neutral",
|
|
63
|
-
variant: "headingSmallStrong",
|
|
64
|
-
children: [
|
|
65
|
-
/* @__PURE__ */ jsx(DisplayPrice, { beforeOrAfter: "after", price: totalPrice }),
|
|
66
|
-
hideDetails ? `/${unit}` : null
|
|
67
|
-
]
|
|
68
|
-
}
|
|
69
|
-
) : /* @__PURE__ */ jsxs(Stack, { alignItems: "center", direction: "row", gap: 1, children: [
|
|
70
|
-
/* @__PURE__ */ jsx(
|
|
71
|
-
Text,
|
|
72
|
-
{
|
|
73
|
-
as: "span",
|
|
74
|
-
prominence: "weak",
|
|
75
|
-
sentiment: "neutral",
|
|
76
|
-
strikeThrough: true,
|
|
77
|
-
variant: "bodySmallStrong",
|
|
78
|
-
children: /* @__PURE__ */ jsx(DisplayPrice, { beforeOrAfter: "before", price: totalPrice })
|
|
79
|
-
}
|
|
80
|
-
),
|
|
81
|
-
/* @__PURE__ */ jsxs(
|
|
59
|
+
/* @__PURE__ */ jsxs(Stack, { alignItems: "end", direction: "column", children: [
|
|
60
|
+
totalPrice.totalPrice === totalPrice.totalPriceWithDiscount || hideBeforePrice ? /* @__PURE__ */ jsxs(
|
|
82
61
|
Text,
|
|
83
62
|
{
|
|
84
63
|
as: "span",
|
|
@@ -88,10 +67,39 @@ const NonScrollableContent = ({
|
|
|
88
67
|
variant: "headingSmallStrong",
|
|
89
68
|
children: [
|
|
90
69
|
/* @__PURE__ */ jsx(DisplayPrice, { beforeOrAfter: "after", price: totalPrice }),
|
|
91
|
-
hideDetails ? `/${unit}` : null
|
|
70
|
+
hideDetails && !priceInformation ? `/${unit}` : null,
|
|
71
|
+
priceInformation
|
|
92
72
|
]
|
|
93
73
|
}
|
|
94
|
-
)
|
|
74
|
+
) : /* @__PURE__ */ jsxs(Stack, { alignItems: "center", direction: "row", gap: 1, children: [
|
|
75
|
+
/* @__PURE__ */ jsx(
|
|
76
|
+
Text,
|
|
77
|
+
{
|
|
78
|
+
as: "span",
|
|
79
|
+
prominence: "weak",
|
|
80
|
+
sentiment: "neutral",
|
|
81
|
+
strikeThrough: true,
|
|
82
|
+
variant: "bodySmallStrong",
|
|
83
|
+
children: /* @__PURE__ */ jsx(DisplayPrice, { beforeOrAfter: "before", price: totalPrice })
|
|
84
|
+
}
|
|
85
|
+
),
|
|
86
|
+
/* @__PURE__ */ jsxs(
|
|
87
|
+
Text,
|
|
88
|
+
{
|
|
89
|
+
as: "span",
|
|
90
|
+
"data-testid": "total-price",
|
|
91
|
+
prominence: "strong",
|
|
92
|
+
sentiment: "neutral",
|
|
93
|
+
variant: "headingSmallStrong",
|
|
94
|
+
children: [
|
|
95
|
+
/* @__PURE__ */ jsx(DisplayPrice, { beforeOrAfter: "after", price: totalPrice }),
|
|
96
|
+
hideDetails && !priceInformation ? `/${unit}` : null,
|
|
97
|
+
priceInformation
|
|
98
|
+
]
|
|
99
|
+
}
|
|
100
|
+
)
|
|
101
|
+
] }),
|
|
102
|
+
totalPriceInfo && totalPriceInfoPlacement === "right" ? totalPriceInfo : null
|
|
95
103
|
] })
|
|
96
104
|
] }),
|
|
97
105
|
footer
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { AttachIcon } from "@ultraviolet/icons";
|
|
2
3
|
import { Stack, Text, NumberInput } from "@ultraviolet/ui";
|
|
3
4
|
import { useContext } from "react";
|
|
4
5
|
import { DisplayPrice, calculateSubCategoryPrice, formatNumber } from "./helpers.js";
|
|
5
6
|
import { OrderSummaryContext } from "./Provider.js";
|
|
6
|
-
import { orderSummaryScrollableContainer, orderSummaryCategory, orderSummaryNumberInput, orderSummaryDetails } from "./styles.css.js";
|
|
7
|
+
import { orderSummaryScrollableContainer, orderSummaryCategory, orderSummaryAnchor, orderSummaryAnchorIcon, orderSummaryNumberInput, orderSummaryDetails } from "./styles.css.js";
|
|
7
8
|
const CategoryName = ({ category }) => {
|
|
8
9
|
const { categoriesPrice } = useContext(OrderSummaryContext);
|
|
9
10
|
const categoryPrice = categoriesPrice[category.category] ?? {
|
|
@@ -22,7 +23,16 @@ const CategoryName = ({ category }) => {
|
|
|
22
23
|
prominence: "strong",
|
|
23
24
|
sentiment: "neutral",
|
|
24
25
|
variant: "bodyStrong",
|
|
25
|
-
children: category.category
|
|
26
|
+
children: category.anchor ? /* @__PURE__ */ jsxs("a", { className: orderSummaryAnchor, href: category.anchor, children: [
|
|
27
|
+
/* @__PURE__ */ jsx(
|
|
28
|
+
AttachIcon,
|
|
29
|
+
{
|
|
30
|
+
className: orderSummaryAnchorIcon({ size: "medium" }),
|
|
31
|
+
sentiment: "info"
|
|
32
|
+
}
|
|
33
|
+
),
|
|
34
|
+
category.category
|
|
35
|
+
] }) : category.category
|
|
26
36
|
}
|
|
27
37
|
),
|
|
28
38
|
/* @__PURE__ */ jsx(Text, { as: "span", italic: true, sentiment: "primary", variant: "bodySmall", children: category.additionalInfo })
|
|
@@ -33,7 +43,16 @@ const CategoryName = ({ category }) => {
|
|
|
33
43
|
prominence: "strong",
|
|
34
44
|
sentiment: "neutral",
|
|
35
45
|
variant: "bodyStrong",
|
|
36
|
-
children: category.category
|
|
46
|
+
children: category.anchor ? /* @__PURE__ */ jsxs("a", { className: orderSummaryAnchor, href: category.anchor, children: [
|
|
47
|
+
/* @__PURE__ */ jsx(
|
|
48
|
+
AttachIcon,
|
|
49
|
+
{
|
|
50
|
+
className: orderSummaryAnchorIcon({ size: "medium" }),
|
|
51
|
+
sentiment: "info"
|
|
52
|
+
}
|
|
53
|
+
),
|
|
54
|
+
category.category
|
|
55
|
+
] }) : category.category
|
|
37
56
|
}
|
|
38
57
|
),
|
|
39
58
|
category.customContent,
|
|
@@ -100,7 +119,8 @@ const SubCategory = ({ subCategory }) => {
|
|
|
100
119
|
);
|
|
101
120
|
return /* @__PURE__ */ jsxs(Stack, { direction: "column", gap: 1, children: [
|
|
102
121
|
/* @__PURE__ */ jsxs(Stack, { alignItems: "center", direction: "row", justifyContent: "space-between", children: [
|
|
103
|
-
subCategory.additionalInfo ? /* @__PURE__ */ jsxs(Stack, { alignItems: "center", direction: "row", gap: 1, children: [
|
|
122
|
+
subCategory.additionalInfo || subCategory.icon ? /* @__PURE__ */ jsxs(Stack, { alignItems: "center", direction: "row", gap: 1, children: [
|
|
123
|
+
subCategory.icon,
|
|
104
124
|
/* @__PURE__ */ jsx(
|
|
105
125
|
Text,
|
|
106
126
|
{
|
|
@@ -108,7 +128,16 @@ const SubCategory = ({ subCategory }) => {
|
|
|
108
128
|
prominence: "strong",
|
|
109
129
|
sentiment: "neutral",
|
|
110
130
|
variant: "bodySmallStrong",
|
|
111
|
-
children: subCategory.
|
|
131
|
+
children: subCategory.anchor ? /* @__PURE__ */ jsxs("a", { className: orderSummaryAnchor, href: subCategory.anchor, children: [
|
|
132
|
+
/* @__PURE__ */ jsx(
|
|
133
|
+
AttachIcon,
|
|
134
|
+
{
|
|
135
|
+
className: orderSummaryAnchorIcon({ size: "small" }),
|
|
136
|
+
sentiment: "info"
|
|
137
|
+
}
|
|
138
|
+
),
|
|
139
|
+
subCategory.title
|
|
140
|
+
] }) : subCategory.title
|
|
112
141
|
}
|
|
113
142
|
),
|
|
114
143
|
/* @__PURE__ */ jsx(Text, { as: "span", italic: true, sentiment: "primary", variant: "bodySmall", children: subCategory.additionalInfo })
|
|
@@ -119,7 +148,16 @@ const SubCategory = ({ subCategory }) => {
|
|
|
119
148
|
prominence: "strong",
|
|
120
149
|
sentiment: "neutral",
|
|
121
150
|
variant: "bodySmallStrong",
|
|
122
|
-
children: subCategory.
|
|
151
|
+
children: subCategory.anchor ? /* @__PURE__ */ jsxs("a", { className: orderSummaryAnchor, href: subCategory.anchor, children: [
|
|
152
|
+
/* @__PURE__ */ jsx(
|
|
153
|
+
AttachIcon,
|
|
154
|
+
{
|
|
155
|
+
className: orderSummaryAnchorIcon({ size: "small" }),
|
|
156
|
+
sentiment: "info"
|
|
157
|
+
}
|
|
158
|
+
),
|
|
159
|
+
subCategory.title
|
|
160
|
+
] }) : subCategory.title
|
|
123
161
|
}
|
|
124
162
|
),
|
|
125
163
|
subCategory.customContent ? /* @__PURE__ */ jsx(
|
|
@@ -173,7 +211,7 @@ const SubCategory = ({ subCategory }) => {
|
|
|
173
211
|
) : null
|
|
174
212
|
] }),
|
|
175
213
|
/* @__PURE__ */ jsx(Stack, { className: orderSummaryDetails, direction: "column", gap: 0.5, children: subCategory.details?.map(
|
|
176
|
-
(detail) => detail ? /* @__PURE__ */ jsx(
|
|
214
|
+
(detail, index) => detail ? /* @__PURE__ */ jsx(
|
|
177
215
|
Text,
|
|
178
216
|
{
|
|
179
217
|
as: "span",
|
|
@@ -181,7 +219,7 @@ const SubCategory = ({ subCategory }) => {
|
|
|
181
219
|
variant: "bodySmall",
|
|
182
220
|
children: detail
|
|
183
221
|
},
|
|
184
|
-
|
|
222
|
+
`${subCategory.title}-${index}`
|
|
185
223
|
) : null
|
|
186
224
|
) })
|
|
187
225
|
] });
|
|
@@ -195,7 +233,10 @@ const ScrollableContent = () => {
|
|
|
195
233
|
className: orderSummaryCategory,
|
|
196
234
|
gap: 1.5,
|
|
197
235
|
children: [
|
|
198
|
-
/* @__PURE__ */
|
|
236
|
+
category.subTitle ? /* @__PURE__ */ jsxs(Stack, { direction: "column", children: [
|
|
237
|
+
/* @__PURE__ */ jsx(CategoryName, { category }),
|
|
238
|
+
category.subTitle
|
|
239
|
+
] }) : /* @__PURE__ */ jsx(CategoryName, { category }),
|
|
199
240
|
category.subCategories && Object.keys(category.subCategories).length > 0 ? /* @__PURE__ */ jsx(Stack, { gap: 1, children: category.subCategories.map((subCategory, index) => /* @__PURE__ */ jsx(
|
|
200
241
|
SubCategory,
|
|
201
242
|
{
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { OrderSummaryProps } from './types';
|
|
2
|
-
export declare const OrderSummary: ({ header, hideTimeUnit, periodOptions, valueUnitInput, unitUnitInput, items, locales, currency, localeFormat, footer, children, discount, totalPriceInfo, fractionDigits, hideDetails, onChange, onChangeUnitInput, totalPriceDescription, additionalInfo, className, "data-testid": dataTestId, style, }: OrderSummaryProps) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const OrderSummary: ({ header, hideTimeUnit, periodOptions, valueUnitInput, unitUnitInput, items, locales, currency, localeFormat, footer, children, discount, totalPriceInfo, fractionDigits, hideDetails, onChange, onChangeUnitInput, totalPriceDescription, additionalInfo, className, totalPriceInfoPlacement, hideBeforePrice, "data-testid": dataTestId, style, priceInformation, }: OrderSummaryProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -29,8 +29,11 @@ const OrderSummary = ({
|
|
|
29
29
|
totalPriceDescription,
|
|
30
30
|
additionalInfo,
|
|
31
31
|
className,
|
|
32
|
+
totalPriceInfoPlacement = "left",
|
|
33
|
+
hideBeforePrice = false,
|
|
32
34
|
"data-testid": dataTestId,
|
|
33
|
-
style
|
|
35
|
+
style,
|
|
36
|
+
priceInformation
|
|
34
37
|
}) => {
|
|
35
38
|
const [timePeriodUnit, setTimePeriodUnit] = useState(unitUnitInput);
|
|
36
39
|
const [timePeriodAmount, setTimePeriodAmount] = useState(valueUnitInput);
|
|
@@ -66,13 +69,13 @@ const OrderSummary = ({
|
|
|
66
69
|
const computedPrice = {
|
|
67
70
|
maxPrice: Math.max(price[1], 0),
|
|
68
71
|
maxPriceWithDiscount: Math.max(
|
|
69
|
-
price[1] * (discount
|
|
72
|
+
price[1] * (discount <= 1 ? 1 - discount : 1) - (discount > 1 ? Math.abs(discount) : 0),
|
|
70
73
|
0
|
|
71
74
|
),
|
|
72
75
|
timeUnit: unitUnitInput,
|
|
73
76
|
totalPrice: Math.max(price[0], 0),
|
|
74
77
|
totalPriceWithDiscount: Math.max(
|
|
75
|
-
price[0] * (discount
|
|
78
|
+
price[0] * (discount <= 1 ? 1 - discount : 1) - (discount > 1 ? Math.abs(discount) : 0),
|
|
76
79
|
0
|
|
77
80
|
)
|
|
78
81
|
};
|
|
@@ -172,10 +175,13 @@ const OrderSummary = ({
|
|
|
172
175
|
additionalInfo,
|
|
173
176
|
discount,
|
|
174
177
|
footer,
|
|
178
|
+
hideBeforePrice,
|
|
175
179
|
hideDetails,
|
|
180
|
+
priceInformation,
|
|
176
181
|
totalPrice,
|
|
177
182
|
totalPriceDescription,
|
|
178
183
|
totalPriceInfo,
|
|
184
|
+
totalPriceInfoPlacement,
|
|
179
185
|
unit: unitUnitInput,
|
|
180
186
|
children
|
|
181
187
|
}
|
|
@@ -6,3 +6,14 @@ export declare const orderSummaryNumberInput: string;
|
|
|
6
6
|
export declare const orderSummaryScrollableContainer: string;
|
|
7
7
|
export declare const orderSummaryDetails: string;
|
|
8
8
|
export declare const orderSummaryCategory: string;
|
|
9
|
+
export declare const orderSummaryAnchor: string;
|
|
10
|
+
export declare const orderSummaryAnchorIcon: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
11
|
+
size: {
|
|
12
|
+
small: {
|
|
13
|
+
marginTop: `var(--${string})`;
|
|
14
|
+
};
|
|
15
|
+
medium: {
|
|
16
|
+
marginTop: `var(--${string})`;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
}>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
/* empty css */
|
|
2
|
+
import { createRuntimeFn } from "@vanilla-extract/recipes/createRuntimeFn";
|
|
2
3
|
var orderSummaryContainer = "uv_plus_1q5g1ma0";
|
|
3
4
|
var orderSummaryHeaderContainer = { hideDetails: "uv_plus_1q5g1ma2 uv_plus_1q5g1ma1", showDetails: "uv_plus_1q5g1ma3 uv_plus_1q5g1ma1" };
|
|
4
5
|
var orderSummaryStackBackground = "uv_plus_1q5g1ma4";
|
|
@@ -7,7 +8,11 @@ var orderSummaryNumberInput = "uv_plus_1q5g1ma6";
|
|
|
7
8
|
var orderSummaryScrollableContainer = "uv_plus_1q5g1ma7";
|
|
8
9
|
var orderSummaryDetails = "uv_plus_1q5g1ma8";
|
|
9
10
|
var orderSummaryCategory = "uv_plus_1q5g1ma9";
|
|
11
|
+
var orderSummaryAnchor = "uv_plus_1q5g1maa";
|
|
12
|
+
var orderSummaryAnchorIcon = createRuntimeFn({ defaultClassName: "uv_plus_1q5g1mab", variantClassNames: { size: { small: "uv_plus_1q5g1mac", medium: "uv_plus_1q5g1mad" } }, defaultVariants: {}, compoundVariants: [] });
|
|
10
13
|
export {
|
|
14
|
+
orderSummaryAnchor,
|
|
15
|
+
orderSummaryAnchorIcon,
|
|
11
16
|
orderSummaryCategory,
|
|
12
17
|
orderSummaryContainer,
|
|
13
18
|
orderSummaryDetails,
|
|
@@ -39,12 +39,13 @@ export type PriceTypeSingle = {
|
|
|
39
39
|
export type PriceType = Record<string, PriceTypeSingle>;
|
|
40
40
|
export type SubCategoryType = {
|
|
41
41
|
title?: string;
|
|
42
|
+
icon?: ReactNode;
|
|
42
43
|
additionalInfo?: ReactNode;
|
|
43
44
|
price?: number;
|
|
44
45
|
/**
|
|
45
46
|
* List of elements to be displayed in the subcategory
|
|
46
47
|
*/
|
|
47
|
-
details?:
|
|
48
|
+
details?: ReactNode[];
|
|
48
49
|
discount?: number;
|
|
49
50
|
amount?: number[] | number;
|
|
50
51
|
amountFree?: number;
|
|
@@ -64,10 +65,13 @@ export type SubCategoryType = {
|
|
|
64
65
|
* Custom content to display next to the price
|
|
65
66
|
*/
|
|
66
67
|
customContent?: ReactNode;
|
|
68
|
+
anchor?: string;
|
|
67
69
|
} & NumberInputType;
|
|
68
70
|
export type ItemsType = {
|
|
69
71
|
category: string;
|
|
70
72
|
additionalInfo?: ReactNode;
|
|
73
|
+
/** Information to add beneath the catecgory name */
|
|
74
|
+
subTitle?: ReactNode;
|
|
71
75
|
subCategories?: SubCategoryType[];
|
|
72
76
|
discount?: number;
|
|
73
77
|
/**
|
|
@@ -78,6 +82,7 @@ export type ItemsType = {
|
|
|
78
82
|
* Whether the category price can be < 0 (e.g coupons)
|
|
79
83
|
*/
|
|
80
84
|
allowNegative?: boolean;
|
|
85
|
+
anchor?: string;
|
|
81
86
|
} & NumberInputType;
|
|
82
87
|
export type CurrencyType = 'EUR';
|
|
83
88
|
export type LocalesFormatType = Intl.LocalesArgument;
|
|
@@ -97,8 +102,11 @@ export type OrderSummaryProps = {
|
|
|
97
102
|
footer?: ReactNode;
|
|
98
103
|
children?: ReactNode;
|
|
99
104
|
totalPriceInfo?: ReactNode;
|
|
105
|
+
totalPriceInfoPlacement?: 'left' | 'right';
|
|
100
106
|
totalPriceDescription?: ReactNode;
|
|
101
107
|
additionalInfo?: string;
|
|
108
|
+
priceInformation?: ReactNode;
|
|
109
|
+
hideBeforePrice?: boolean;
|
|
102
110
|
/**
|
|
103
111
|
* Number of fraction digit to display in the price details
|
|
104
112
|
*/
|
|
@@ -11,6 +11,11 @@ type PlansProps<T extends string> = {
|
|
|
11
11
|
hideLabels?: boolean;
|
|
12
12
|
locales?: Record<keyof typeof PlansLocales, string>;
|
|
13
13
|
style?: CSSProperties;
|
|
14
|
+
/** Highlights a plan. Use plan value and define the content of the highlight badge */
|
|
15
|
+
highlight?: {
|
|
16
|
+
plan: string;
|
|
17
|
+
content: string;
|
|
18
|
+
};
|
|
14
19
|
};
|
|
15
|
-
export declare const Plans: <T extends string>({ fieldName, onChange, value, features, plans, hideFeatureText, hideLabels, locales, style, }: PlansProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export declare const Plans: <T extends string>({ fieldName, onChange, value, features, plans, hideFeatureText, hideLabels, locales, style, highlight, }: PlansProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
16
21
|
export {};
|
|
@@ -15,7 +15,8 @@ const Plans = ({
|
|
|
15
15
|
hideFeatureText = false,
|
|
16
16
|
hideLabels = false,
|
|
17
17
|
locales: locales$1 = locales,
|
|
18
|
-
style
|
|
18
|
+
style,
|
|
19
|
+
highlight
|
|
19
20
|
}) => {
|
|
20
21
|
const hasCardBehavior = !!(fieldName && onChange);
|
|
21
22
|
const [focusedPlan, setFocusedPlan] = useState();
|
|
@@ -26,11 +27,12 @@ const Plans = ({
|
|
|
26
27
|
plans$1.map((plan) => {
|
|
27
28
|
const computedDisabled = !!(plan.outOfStock || plan.disabled);
|
|
28
29
|
const selectable = hasCardBehavior && !computedDisabled;
|
|
30
|
+
const isHighlighted = highlight && plan.value === highlight.plan;
|
|
29
31
|
return /* @__PURE__ */ jsxs(
|
|
30
32
|
"td",
|
|
31
33
|
{
|
|
32
34
|
className: plansCell({
|
|
33
|
-
activeColor: value === plan.value || hoveredPlan === plan.value,
|
|
35
|
+
activeColor: value === plan.value || hoveredPlan === plan.value || isHighlighted && !plan.outOfStock,
|
|
34
36
|
disabled: computedDisabled,
|
|
35
37
|
focus: focusedPlan === plan.value,
|
|
36
38
|
hideLabels,
|
|
@@ -48,7 +50,17 @@ const Plans = ({
|
|
|
48
50
|
onMouseOver: selectable ? () => setHoveredPlan(plan.value) : void 0,
|
|
49
51
|
children: [
|
|
50
52
|
plan.outOfStock ? /* @__PURE__ */ jsx(Badge, { className: plansOutOfStockBadge, size: "small", children: locales$1["plans.outOfStock"] }) : null,
|
|
51
|
-
plan.header.quotas ? /* @__PURE__ */ jsx(Badge, { className: plansOutOfStockBadge, size: "small", children: plan.header.quotas }) : null,
|
|
53
|
+
plan.header.quotas && !plan.outOfStock ? /* @__PURE__ */ jsx(Badge, { className: plansOutOfStockBadge, size: "small", children: plan.header.quotas }) : null,
|
|
54
|
+
isHighlighted && !plan.outOfStock && !plan.header.quotas ? /* @__PURE__ */ jsx(
|
|
55
|
+
Badge,
|
|
56
|
+
{
|
|
57
|
+
className: plansOutOfStockBadge,
|
|
58
|
+
prominence: "strong",
|
|
59
|
+
sentiment: "primary",
|
|
60
|
+
size: "small",
|
|
61
|
+
children: highlight.content
|
|
62
|
+
}
|
|
63
|
+
) : null,
|
|
52
64
|
/* @__PURE__ */ jsx(
|
|
53
65
|
PlanHeader,
|
|
54
66
|
{
|
|
@@ -86,18 +98,21 @@ const Plans = ({
|
|
|
86
98
|
),
|
|
87
99
|
feature.hint ? /* @__PURE__ */ jsx(FeatureHint, { hint: feature.hint }) : null
|
|
88
100
|
] }) }),
|
|
89
|
-
plans$1.map((plan) =>
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
+
plans$1.map((plan) => {
|
|
102
|
+
const isHighlighted = highlight && plan.value === highlight.plan;
|
|
103
|
+
return /* @__PURE__ */ jsx(
|
|
104
|
+
"td",
|
|
105
|
+
{
|
|
106
|
+
className: plansCell({
|
|
107
|
+
activeColor: value === plan.value || hoveredPlan === plan.value || isHighlighted && !plan.outOfStock,
|
|
108
|
+
disabled: plan.outOfStock || plan.disabled,
|
|
109
|
+
focus: focusedPlan === plan.value,
|
|
110
|
+
hide: hideLabels
|
|
111
|
+
})
|
|
112
|
+
},
|
|
113
|
+
plan.value
|
|
114
|
+
);
|
|
115
|
+
})
|
|
101
116
|
]
|
|
102
117
|
},
|
|
103
118
|
feature.group
|
|
@@ -125,11 +140,12 @@ const Plans = ({
|
|
|
125
140
|
plans$1.map((plan) => {
|
|
126
141
|
const computedDisabled = plan.outOfStock || plan.disabled;
|
|
127
142
|
const selectable = hasCardBehavior && !computedDisabled;
|
|
143
|
+
const isHighlighted = highlight && plan.value === highlight.plan;
|
|
128
144
|
return /* @__PURE__ */ jsxs(
|
|
129
145
|
"td",
|
|
130
146
|
{
|
|
131
147
|
className: plansCell({
|
|
132
|
-
activeColor: value === plan.value || hoveredPlan === plan.value,
|
|
148
|
+
activeColor: value === plan.value || hoveredPlan === plan.value || isHighlighted && !plan.outOfStock,
|
|
133
149
|
disabled: computedDisabled,
|
|
134
150
|
focus: focusedPlan === plan.value,
|
|
135
151
|
hideLabels,
|
package/dist/plus.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.uv_plus_1sui13x0{cursor:not-allowed}.uv_plus_1sui13x1{position:absolute;top:var(--rwwhsl9u);right:var(--rwwhsl9u);background-color:#252a3b}.uv_plus_1sui13x1:hover{background-color:#303445}.uv_plus_1sui13x1 svg>path{fill:#fff}.uv_plus_1sui13x2{position:relative;width:100%}.uv_plus_1sui13x3{pointer-events:none;-webkit-user-select:none;user-select:none}.uv_plus_1sui13x2 .cm-editor{font-family:var(--rwwhsld8);font-size:var(--rwwhsld9);background-color:#252a3b;border-radius:var(--rwwhsla4);border:1px solid transparent}.uv_plus_1sui13x2 .cm-editor.cm-focused{outline:none;box-shadow:var(--rwwhsl8m);border:1px solid var(--rwwhsl5m)}.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_1sui13x3 .cm-editor{background-color:#1e2335;color:#484b5a}.uv_plus_1sui13x3 .cm-line span,.uv_plus_1sui13x3 .cm-gutter-Element{color:#484b5a}.uv_plus_1sui13x3 .cm-cursor{border-left-color:transparent;display:none}.uv_plus_1sui13x3 .cm-selectionMatch{background-color:transparent}.uv_plus_1sui13x3 .cm-selectionLayer{display:none}.uv_plus_1sui13x3 .cm-editor.cm-focused{box-shadow:none;border:1px solid transparent}@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{display:block;text-align:left;padding:0;color:var(--rwwhsl2j);text-decoration:none;border:1px solid var(--rwwhsl1v);border-radius:var(--rwwhsl85);background:var(--rwwhsl1i);overflow-wrap:break-word}.uv_plus_u4r1ts4[disabled]{cursor:not-allowed}.uv_plus_u4r1ts4[disabled]:hover{border:1px solid var(--rwwhsl1v);box-shadow:none}.uv_plus_u4r1ts5{display:flex;width:fit-content;background:var(--rwwhsl1r);padding:var(--rwwhsl9u);border-radius:var(--rwwhsl85)}.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) 0 var(--rwwhsl9w) var(--rwwhsl9w)}.uv_plus_u4r1tsb{padding: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{display:inline-flex;background:var(--rwwhsl1r);padding:var(--rwwhsl9u);border-radius:var(--rwwhsl85)}.uv_plus_1gpmh3x2{padding:var(--rwwhsl9w);text-decoration:none;height:100%}.uv_plus_1gpmh3x2:not(:first-child){border-top:1px solid var(--rwwhsl1v)}.uv_plus_1gpmh3x2:first-child{border-radius:var(--rwwhsl85) var(--rwwhsl85) 0 0}.uv_plus_1gpmh3x2:last-child{border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85)}.uv_plus_1gpmh3x2:hover{background:var(--rwwhsl1k)}.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{border-radius:var(--rwwhsl85);border:1px solid var(--rwwhsl1v);background:var(--rwwhsl1i);min-width:0}.uv_plus_1gpmh3x5{padding:var(--rwwhsl9w)}.uv_plus_1gpmh3x5:not(:first-child){border-top:1px solid var(--rwwhsl1v)}.uv_plus_1gpmh3x6{height:32px;width:32px;border-radius:var(--rwwhsl85)}.uv_plus_16zcyo50{display:flex;align-items:center;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{margin:var(--rwwhsl9w);margin-bottom:0;border-radius:var(--rwwhsl85);padding:var(--rwwhsl9w)}.uv_plus_16zcyo58{background-color:var(--rwwhsl1l)}.uv_plus_16zcyo59{background-color:var(--rwwhsl5g)}.uv_plus_16zcyo5a{display:flex;align-self:flex-end}.uv_plus_16zcyo5b{width:100%}.uv_plus_16zcyo5c{background-color:var(--rwwhsl1l);height:var(--rwwhsl9c);margin-right:var(--rwwhsl9u)}@keyframes uv_plus_wizdzu0{0%,10%,40%,80%,to{transform:translateZ(0) rotate(0)}30%{transform:translate3d(-5px,0,0) rotate(5deg)}60%{transform:translate3d(-4px,0,0)}90%{transform:translate3d(-1px,0,0) rotate(-5deg)}}@keyframes uv_plus_wizdzu1{0%,10%,40%,80%,to{transform:translateZ(0) rotate(0)}30%{transform:translate3d(0,5px,0) rotate(5deg)}60%{transform:translate3d(0,-6px,0)}90%{transform:translate3d(0,-2px,0)}}.uv_plus_wizdzu2{height:88px;width:88px;cursor:pointer;transition:transform 1s cubic-bezier(.19,1,.22,1)}.uv_plus_wizdzu2:hover,.uv_plus_wizdzu2:focus{transform:scale(1.2)}.uv_plus_wizdzu3{transform:scale(1.2)}.uv_plus_wizdzu4{animation:uv_plus_wizdzu1 1s ease infinite}.uv_plus_wizdzu5{animation:uv_plus_wizdzu0 1s ease infinite}.uv_plus_dkdfcq0{vertical-align:middle;fill:currentcolor}.uv_plus_dkdfcq8{height:var(--rwwhsl9f);width:var(--rwwhsl9f);min-width:var(--rwwhsl9f);min-height:var(--rwwhsl9f)}.uv_plus_dkdfcq9{height:var(--rwwhsl9d);width:var(--rwwhsl9d);min-width:var(--rwwhsl9d);min-height:var(--rwwhsl9d)}.uv_plus_dkdfcqa{height:var(--rwwhsl9c);width:var(--rwwhsl9c);min-width:var(--rwwhsl9c);min-height:var(--rwwhsl9c)}.uv_plus_dkdfcqb{height:var(--rwwhsl9h);width:var(--rwwhsl9h);min-width:var(--rwwhsl9h);min-height:var(--rwwhsl9h)}.uv_plus_dkdfcqc{height:var(--rwwhsl9a);width:var(--rwwhsl9a);min-width:var(--rwwhsl9a);min-height:var(--rwwhsl9a)}.uv_plus_dkdfcqd{height:var(--rwwhsl9l);width:var(--rwwhsl9l);min-width:var(--rwwhsl9l);min-height: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_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq1 .uv_plus_dkdfcq1g .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq2 .uv_plus_dkdfcq1h .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq3 .uv_plus_dkdfcq1i .fillStroke{fill:none;stroke:var(--rwwhsl27)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq4 .uv_plus_dkdfcq1j .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq5 .uv_plus_dkdfcq1k .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq6 .uv_plus_dkdfcq1l .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq7 .uv_plus_dkdfcq1m .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq1 .uv_plus_dkdfcq1o .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq2 .uv_plus_dkdfcq1p .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq3 .uv_plus_dkdfcq1q .fillStroke{fill:none;stroke:var(--rwwhsl2a)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq4 .uv_plus_dkdfcq1r .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq5 .uv_plus_dkdfcq1s .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq6 .uv_plus_dkdfcq1t .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq7 .uv_plus_dkdfcq1u .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq1 .uv_plus_dkdfcq1w .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq2 .uv_plus_dkdfcq1x .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq3 .uv_plus_dkdfcq1y .fillStroke{fill:none;stroke:var(--rwwhsl2c)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq4 .uv_plus_dkdfcq1z .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq5 .uv_plus_dkdfcq20 .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq6 .uv_plus_dkdfcq21 .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq7 .uv_plus_dkdfcq22 .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq1 .uv_plus_dkdfcq24 .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq2 .uv_plus_dkdfcq25 .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq3 .uv_plus_dkdfcq26 .fillStroke{fill:none;stroke:var(--rwwhsl2g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq4 .uv_plus_dkdfcq27 .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq5 .uv_plus_dkdfcq28 .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq6 .uv_plus_dkdfcq29 .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq7 .uv_plus_dkdfcq2a .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_1fq6cbr0{height:var(--rwwhsl9k);width:var(--rwwhsl9k);min-width:var(--rwwhsl9k)}.uv_plus_1fq6cbr1{height:var(--rwwhsl9j);width:var(--rwwhsl9j);min-width:var(--rwwhsl9j)}.uv_plus_1fq6cbr2{height:var(--rwwhsl9h);width:var(--rwwhsl9h);min-width:var(--rwwhsl9h)}.uv_plus_1fq6cbr3{height:var(--rwwhsl9n);width:var(--rwwhsl9n);min-width:var(--rwwhsl9n)}.uv_plus_1fq6cbr4{height:var(--rwwhsl9f);width:var(--rwwhsl9f);min-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{width:15px;margin-right:var(--rwwhsl9u)}.uv_plus_1ko5kn24{margin-left:var(--rwwhsla4)}.uv_plus_1ko5kn25{display:flex;flex-direction:row;-webkit-box-pack:justify;justify-content:space-between;align-items:center;min-height:var(--rwwhsl9l);padding-top:var(--rwwhsl9u);padding-bottom:var(--rwwhsl9u)}.uv_plus_1ko5kn26{height:var(--rwwhsl9k);display:flex;flex-direction:column;-webkit-box-pack:center;justify-content:center}.uv_plus_1ko5kn27{animation:.8s uv_15brg2b3}.uv_plus_1ko5kn29{text-align:initial;height:var(--rwwhsl9k);display:flex;flex-direction:column;-webkit-box-pack:center;justify-content:center}.uv_plus_1ko5kn2a{text-align:right}.uv_plus_1ko5kn2b{animation:uv_15brg2b3 .8s}.uv_plus_1ko5kn2c{margin-left:var(--rwwhsl9u);align-self:center}.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-line:line-through;text-decoration-color:var(--rwwhsl7m)}.uv_plus_1ko5kn2h{max-width:500px;align-items:center;font-size:16px;color:var(--rwwhsl2m);margin-right:var(--rwwhsla4)}.uv_plus_1ko5kn2i{display:flex}.uv_plus_1ko5kn2j{display:inline-flex}.uv_plus_1ko5kn2n{display:block;font-size:14px;line-height:8;color:var(--rwwhsl2j)}.uv_plus_1ko5kn2o{display:inline-flex;align-items:center;color:var(--rwwhsl2m);font-weight:500;margin-right:4px}.uv_plus_1ko5kn2p{font-size:16px}.uv_plus_1ko5kn2q{font-size:24px}.uv_plus_1ko5kn2r{font-size:16px;text-transform:capitalize}.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{-webkit-appearance:none;margin:0}.uv_plus_sk5tga2{width:15px;margin-right:var(--rwwhsl9u)}.uv_plus_sk5tga3{width:100%;border:1px solid var(--rwwhsl1v)}.uv_plus_sk5tga4{border-radius:4px 4px 0}.uv_plus_sk5tga5{border-radius:4px}.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{border-left:1px solid var(--rwwhsl1v);background-color:var(--rwwhsl1r);width:30%;min-width:126px}.uv_plus_sk5tga9{padding-right:var(--rwwhsl9v);position:relative;width:70%;min-width:230px;padding-left:var(--uv_plus_sk5tga0)}.uv_plus_sk5tgaa:before{content:"";position:absolute;left:0;bottom:0;height:1px;width:calc(100% - 32px);margin-left:var(--rwwhsl9v);border-bottom:1px solid var(--rwwhsl1v)}.uv_plus_sk5tgab{background:var(--rwwhsl5g)}.uv_plus_sk5tgac{border-color:var(--rwwhsl1v);border-style:solid;border-width:0 1px 1px 1px;border-right:none;border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);height:var(--rwwhsl9l);background-color:var(--rwwhsl5g);width:30%;min-width:126px}.uv_plus_sk5tgad{margin:0;width:100%;border-right:1px solid var(--rwwhsl1v);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85)}.uv_plus_sk5tgae{display:flex;align-items:center;margin:0;font-size:18px;color:var(--rwwhsl2j);font-weight:500;padding:var(--rwwhsl9v)}.uv_plus_sk5tgaf{width:70%}.uv_plus_sk5tgag{max-width:200px;padding:var(--rwwhsl9v);align-items:start;text-align:left;float:right}.uv_plus_sk5tgah{position:absolute;top:calc(50% - 16px)}.uv_plus_sk5tgai{margin-left:-185px}.uv_plus_sk5tgaj{margin-left:-115px}.uv_plus_sk5tgak{min-width:200px;padding:0 24px;border-left:1px solid var(--rwwhsl1v)}.uv_plus_sk5tgak:first-of-type,.uv_plus_sk5tgak:last-child{border:0}.uv_plus_sk5tgal{border:0}.uv_plus_sk5tgan{display:none}.uv_plus_sk5tgao{display:inline-block;height:var(--rwwhsl9f);line-height:18;font-size:12px;margin-right:var(--rwwhsl9u)}.uv_plus_sk5tgap{margin-top:var(--rwwhsl9w)}.uv_plus_sk5tgaq{text-align:right;margin-left:var(--rwwhsl9v)}.uv_plus_sk5tgar{text-align:right}.uv_plus_sk5tgas{margin-right:var(--rwwhsl9u)}.uv_plus_sk5tgat{padding:0}.uv_plus_sk5tgau{position:fixed;left:0;right:0;height:120px;background-color:var(--rwwhsl1i);margin:var(--uv_plus_sk5tga1);display:flex;justify-content:center;transition:bottom .3s,box-shadow .3s;z-index:1}.uv_plus_sk5tgav{bottom:-120px;box-shadow:0}.uv_plus_sk5tgaw{bottom:0;box-shadow:var(--rwwhsl8c)}.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;padding:12px 0;min-width:158px}@media(max-width:1800px){.uv_plus_sk5tgam{display:none}}.uv_plus_5imqkb0{padding:var(--rwwhsl9v);text-align:left}.uv_plus_h6pvpm1{display:flex;font-size:var(--rwwhsla9);line-height:var(--rwwhslac);flex-direction:column;align-items:start;margin:0;width:100%}.uv_plus_h6pvpm2{width:var(--uv_plus_h6pvpm0);border-bottom:1px var(--rwwhsl1v) solid;padding-block:var(--rwwhsl9v)}.uv_plus_h6pvpm2:first-of-type{padding-top:0}.uv_plus_h6pvpm2:last-of-type{padding-bottom:0;border-bottom-color:transparent}.uv_plus_h6pvpm2>*:not(:last-child){padding-right:var(--rwwhsl9v)}.uv_plus_h6pvpm3{font-weight:var(--rwwhslbg);color:var(--rwwhsl2m);display:inline-flex;align-items:center;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>*{display:inline-flex;align-items:center;margin-right:var(--rwwhsl9u)}@keyframes uv_plus_1ngtn5a0{0%{max-height:50px}to{max-height:32px}}@keyframes uv_plus_1ngtn5a1{0%{opacity:0;max-height:0;margin-bottom:-8px}to{opacity:1;max-height:40px;margin-bottom:0}}.uv_plus_nytpcy0{padding-bottom:var(--rwwhsl9u);padding-left:var(--rwwhsl9u);transition:opacity .25s ease-in-out,height .25s ease-in-out;height:calc(var(--rwwhslau) + var(--rwwhsl9u))}.uv_plus_nytpcy1{animation:uv_plus_1ngtn5a1 .25s ease-in-out}.uv_plus_nytpcy2{animation:uv_plus_1ngtn5a1 .25s ease-in-out reverse}.uv_plus_nytpcy4{padding-top:var(--rwwhsl9u)}.uv_plus_nytpcy5{position:absolute;right:0;left:0;top:0;height:2px;border-top:2px solid;border-color:transparent;padding:var(--rwwhsla4) 0}.uv_plus_nytpcy5:before{content:"";position:absolute;left:0;top:-4px;height:0;width:0;border:3px solid;border-color:inherit;border-radius:var(--rwwhsl84)}.uv_plus_nytpcy6{position:relative}.uv_plus_nytpcy7{padding:var(--rwwhsl9u) 0}.uv_plus_nytpcy8{padding-left:var(--rwwhsl9x);margin-left:var(--rwwhsla4)}.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{position:absolute;top:0;bottom:0;margin:auto 0;padding:var(--rwwhsla5);border-radius:var(--rwwhsl85)}.uv_plus_x6an4g4:hover{background:var(--rwwhsl5i)}.uv_plus_x6an4g5:hover{background:var(--rwwhsl1u)}.uv_plus_x6an4g6{text-align:left}.uv_plus_x6an4g8{color:inherit;text-decoration:none;background-color:inherit;border:none;text-align:left;border-radius:var(--rwwhsl85);margin-top:var(--rwwhsla5);padding:calc(var(--rwwhsla5) + var(--rwwhsla4)) var(--rwwhsl9u);width:100%}.uv_plus_x6an4ga{cursor:pointer}.uv_plus_x6an4gb{cursor:not-allowed;background-color:unset}.uv_plus_x6an4gc{background-color:var(--rwwhsl5g)}.uv_plus_x6an4gc:hover{background-color:var(--rwwhsl5i)}.uv_plus_x6an4gd{background-color:var(--rwwhsl1k)}.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{opacity:0;margin:0 var(--rwwhsla5);cursor:grab}.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{overflow-wrap:anywhere;overflow:hidden;display:-webkit-box;-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{opacity:0;position:absolute;inset:0 0 0 -24px;margin:auto}.uv_plus_x6an4gs:hover,.uv_plus_x6an4gs:focus,.uv_plus_x6an4gs:active{opacity:1}.uv_plus_x6an4g6:hover .uv_plus_x6an4gs,.uv_plus_x6an4g6:focus .uv_plus_x6an4gs,.uv_plus_x6an4g6:active .uv_plus_x6an4gs{opacity:1}.uv_plus_x6an4gl:hover .uv_plus_x6an4gs,.uv_plus_x6an4gl:active .uv_plus_x6an4gs,.uv_plus_x6an4gl:focus .uv_plus_x6an4gs{opacity:1}.uv_plus_x6an4gt{animation:uv_15brg2b7 .25s ease-in-out}.uv_plus_x6an4gu{animation:uv_15brg2b7 .25s ease-in-out reverse}.uv_plus_x6an4gv{padding:0 var(--rwwhsl9v);margin-top:var(--rwwhsla5);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{display:flex;width:100%;background:var(--rwwhsl1i);border-top:1px solid var(--rwwhsl24);padding:var(--rwwhsl9u) var(--rwwhsl9v);transition:justify-content .25s ease-in-out,box-shadow .23s ease-in-out;box-shadow:var(--rwwhsl8c);justify-content:flex-end}.uv_plus_19x50fv1{box-shadow:none;border:none}.uv_plus_19x50fv2{background:var(--rwwhsl1i)}.uv_plus_19x50fv3{margin:var(--rwwhsl9w) var(--rwwhsl9w) var(--rwwhsl9v) var(--rwwhsl9w);max-width:220px;height:22px;overflow:hidden}.uv_plus_19x50fv4{display:flex;flex-direction:row;position:relative;border-right:1px solid var(--rwwhsl24)}.uv_plus_19x50fv5{background:var(--rwwhsl1i);display:flex;flex-direction:column;width:var(--uv_plus_1rde5pt0)}.uv_plus_19x50fv6{width:67px}.uv_plus_19x50fv7{transition:width .25s ease-in-out;width:67px}.uv_plus_19x50fv8{transition:width .25s ease-in-out;width:var(--uv_plus_1rde5pt0)}.uv_plus_19x50fva{max-width:320px;min-width:220px}.uv_plus_19x50fvb{overflow:hidden;display:flex;flex-direction:column;flex-grow:1}.uv_plus_19x50fvc{align-items:center}.uv_plus_19x50fvd{overflow-x:hidden;overflow-y:auto;flex-grow:1;padding:var(--rwwhsl9v)}.uv_plus_19x50fve{background:transparent;position:absolute;top:0;bottom:0;right:0;width:6px;cursor:col-resize;border-right:2px solid transparent;display:flex}.uv_plus_19x50fve:hover{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp1 td:first-child,.uv_plus_1wcpahp1 th:first-child{width:var(--rwwhsl9l);min-width:var(--rwwhsl9l);max-width:var(--rwwhsl9l)}.uv_plus_1wcpahp2{width:100%;display:table-row;vertical-align:middle;cursor:auto;background:var(--rwwhsl1r);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);position:relative}.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{transition:border-color .2s ease;margin-top:calc((var(--rwwhsl9v) * -1) - 1px);padding-block:var(--rwwhsla4);padding-inline:var(--rwwhsl9u);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);border:1px solid var(--rwwhsl1v);border-top-color:transparent}.uv_plus_1wcpahp4{border:1px solid var(--rwwhsl1v)}.uv_plus_1wcpahp4.uv_plus_1wcpahp4{border-top:1px solid transparent}.uv_plus_1wcpahpc{border:1px solid var(--rwwhsl1v)}.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{height:fit-content;border-top-left-radius:0;border-top-right-radius:0;width:100%;padding:0}.uv_plus_1wcpahpu{height:fit-content;border-top:1px solid var(--rwwhsl1v);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);width:100%;padding-block:var(--rwwhsla4);padding-inline:var(--rwwhsl9u)}.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{position:absolute;transform:translateY(-150%);top:0;left:var(--rwwhsl9w)}.uv_plus_1wcpahp13{position:absolute;top:var(--rwwhsl9v)}.uv_plus_1wcpahp14{padding:0;width:32px}.uv_plus_1wcpahp14:first-of-type{padding-left:var(--rwwhsl9v)}.uv_plus_1wcpahp15{color:var(--rwwhsl5y)}.uv_plus_1wcpahp15 td,.uv_plus_1wcpahp15 td:first-child,.uv_plus_1wcpahp15 td:last-child{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp16 td:nth-child(2),.uv_plus_1wcpahp17 td:nth-child(3){font-weight:var(--rwwhslay)}.uv_plus_1wcpahp15[aria-expanded=true] td,.uv_plus_1wcpahp15[aria-expanded=true] td:first-child,.uv_plus_1wcpahp15[aria-expanded=true] td:last-child,.uv_plus_1wcpahp15[aria-expanded=true]+tr td{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp18 td,.uv_plus_1wcpahp18 td:first-child{border-bottom-left-radius:0}.uv_plus_1wcpahp18 td,.uv_plus_1wcpahp18 td:last-child{border-bottom-right-radius:0}.uv_plus_1wcpahp19{display:flex}.uv_plus_1wcpahp1a{padding:var(--uv_plus_1wcpahp0)}.uv_plus_1wcpahp1b{white-space:pre-line}.uv_plus_1wcpahp1c{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{padding:var(--rwwhsl9w);border-top:1px solid var(--rwwhsl1v)}.uv_plus_1q5g1ma6{max-width:12.5rem;background-color:var(--rwwhsl1i)}.uv_plus_1q5g1ma7{overflow-y:scroll;padding:var(--rwwhsl9w);min-height:10rem;height:100%}.uv_plus_1q5g1ma8{padding-left:var(--rwwhsl9u)}.uv_plus_1q5g1ma9:not(:last-child){border-bottom:1px solid var(--rwwhsl1v);padding-bottom:var(--rwwhsl9w)}@media(min-width:1440px){.uv_plus_1q5g1ma0{min-width:27.5rem}}.uv_plus_11wud800{cursor:pointer}.uv_plus_11wud801{table-layout:fixed;border-collapse:separate;border-spacing:var(--rwwhsl9v) 0;margin:0 calc(-1 * var(--rwwhsl9v));width:calc(100% + var(--rwwhsl9x));height:1px}.uv_plus_11wud802{position:absolute;bottom:100%;left:50%;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}thead .uv_plus_11wud803{height:100%;vertical-align:top;position:relative;padding-top:var(--rwwhsl9x);padding-bottom:var(--rwwhsl9w)}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}tbody .uv_plus_11wud803:not(:first-child){border:1px solid var(--rwwhsl1v);border-width:0 1px}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}tbody tr:last-child .uv_plus_11wud803{padding-bottom:var(--rwwhsl9x)}.uv_plus_11wud804{background-color:var(--rwwhsl1j)}.uv_plus_11wud805{display:none}.uv_plus_11wud806{cursor:pointer}.uv_plus_11wud807{text-align:start;padding-left:var(--rwwhsl9w)}thead .uv_plus_11wud808:not(:first-child),tbody .uv_plus_11wud808:not(:first-child),tbody tr:last-child .uv_plus_11wud808:not(:first-child){border-color:var(--rwwhsl5m)}thead .uv_plus_11wud809:not(:first-child),tbody .uv_plus_11wud809:not(:first-child),tbody tr:last-child .uv_plus_11wud809:not(:first-child){border-color:#00f;border-width:2px 2px 0 2px}tbody .uv_plus_11wud80a{padding-bottom:var(--rwwhsl9z)}.uv_plus_11wud80b{display:none}.uv_plus_11wud80c{text-transform:uppercase}.uv_plus_11wud80d{position:absolute;opacity:0;top:0;left:0}.uv_plus_11wud80e{height:100%}.uv_plus_11wud80f{padding:var(--rwwhsl9u);width:100%}.uv_plus_11wud80g{width:100%}.uv_plus_11wud80h{height:var(--rwwhsl9k);display:flex;align-items:center}.uv_plus_l0ny240{padding:0}.uv_plus_l0ny241{padding:var(--rwwhsl9w);border-right:1px solid var(--rwwhsl1v)}.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;transition:text-decoration-color .25s ease-out;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:2px;text-decoration-color:transparent}.uv_plus_l0ny245:hover{text-decoration:underline;text-decoration-thickness:1px}.uv_plus_l0ny245:active{text-decoration-thickness:2px}.uv_plus_l0ny246{align-items:center}.uv_plus_l0ny247{width:fit-content}
|
|
1
|
+
.uv_plus_1sui13x0{cursor:not-allowed}.uv_plus_1sui13x1{position:absolute;top:var(--rwwhsl9u);right:var(--rwwhsl9u);background-color:#252a3b}.uv_plus_1sui13x1:hover{background-color:#303445}.uv_plus_1sui13x1 svg>path{fill:#fff}.uv_plus_1sui13x2{position:relative;width:100%}.uv_plus_1sui13x3{pointer-events:none;-webkit-user-select:none;user-select:none}.uv_plus_1sui13x2 .cm-editor{font-family:var(--rwwhsld8);font-size:var(--rwwhsld9);background-color:#252a3b;border-radius:var(--rwwhsla4);border:1px solid transparent}.uv_plus_1sui13x2 .cm-editor.cm-focused{outline:none;box-shadow:var(--rwwhsl8m);border:1px solid var(--rwwhsl5m)}.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_1sui13x3 .cm-editor{background-color:#1e2335;color:#484b5a}.uv_plus_1sui13x3 .cm-line span,.uv_plus_1sui13x3 .cm-gutter-Element{color:#484b5a}.uv_plus_1sui13x3 .cm-cursor{border-left-color:transparent;display:none}.uv_plus_1sui13x3 .cm-selectionMatch{background-color:transparent}.uv_plus_1sui13x3 .cm-selectionLayer{display:none}.uv_plus_1sui13x3 .cm-editor.cm-focused{box-shadow:none;border:1px solid transparent}@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{display:block;text-align:left;padding:0;color:var(--rwwhsl2j);text-decoration:none;border:1px solid var(--rwwhsl1v);border-radius:var(--rwwhsl85);background:var(--rwwhsl1i);overflow-wrap:break-word}.uv_plus_u4r1ts4[disabled]{cursor:not-allowed}.uv_plus_u4r1ts4[disabled]:hover{border:1px solid var(--rwwhsl1v);box-shadow:none}.uv_plus_u4r1ts5{display:flex;width:fit-content;background:var(--rwwhsl1r);padding:var(--rwwhsl9u);border-radius:var(--rwwhsl85)}.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) 0 var(--rwwhsl9w) var(--rwwhsl9w)}.uv_plus_u4r1tsb{padding: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{display:inline-flex;background:var(--rwwhsl1r);padding:var(--rwwhsl9u);border-radius:var(--rwwhsl85)}.uv_plus_1gpmh3x2{padding:var(--rwwhsl9w);text-decoration:none;height:100%}.uv_plus_1gpmh3x2:not(:first-child){border-top:1px solid var(--rwwhsl1v)}.uv_plus_1gpmh3x2:first-child{border-radius:var(--rwwhsl85) var(--rwwhsl85) 0 0}.uv_plus_1gpmh3x2:last-child{border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85)}.uv_plus_1gpmh3x2:hover{background:var(--rwwhsl1k)}.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{border-radius:var(--rwwhsl85);border:1px solid var(--rwwhsl1v);background:var(--rwwhsl1i);min-width:0}.uv_plus_1gpmh3x5{padding:var(--rwwhsl9w)}.uv_plus_1gpmh3x5:not(:first-child){border-top:1px solid var(--rwwhsl1v)}.uv_plus_1gpmh3x6{height:32px;width:32px;border-radius:var(--rwwhsl85)}.uv_plus_16zcyo50{display:flex;align-items:center;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{margin:var(--rwwhsl9w);margin-bottom:0;border-radius:var(--rwwhsl85);padding:var(--rwwhsl9w)}.uv_plus_16zcyo58{background-color:var(--rwwhsl1l)}.uv_plus_16zcyo59{background-color:var(--rwwhsl5g)}.uv_plus_16zcyo5a{display:flex;align-self:flex-end}.uv_plus_16zcyo5b{width:100%}.uv_plus_16zcyo5c{background-color:var(--rwwhsl1l);height:var(--rwwhsl9c);margin-right:var(--rwwhsl9u)}@keyframes uv_plus_wizdzu0{0%,10%,40%,80%,to{transform:translateZ(0) rotate(0)}30%{transform:translate3d(-5px,0,0) rotate(5deg)}60%{transform:translate3d(-4px,0,0)}90%{transform:translate3d(-1px,0,0) rotate(-5deg)}}@keyframes uv_plus_wizdzu1{0%,10%,40%,80%,to{transform:translateZ(0) rotate(0)}30%{transform:translate3d(0,5px,0) rotate(5deg)}60%{transform:translate3d(0,-6px,0)}90%{transform:translate3d(0,-2px,0)}}.uv_plus_wizdzu2{height:88px;width:88px;cursor:pointer;transition:transform 1s cubic-bezier(.19,1,.22,1)}.uv_plus_wizdzu2:hover,.uv_plus_wizdzu2:focus{transform:scale(1.2)}.uv_plus_wizdzu3{transform:scale(1.2)}.uv_plus_wizdzu4{animation:uv_plus_wizdzu1 1s ease infinite}.uv_plus_wizdzu5{animation:uv_plus_wizdzu0 1s ease infinite}.uv_plus_dkdfcq0{vertical-align:middle;fill:currentcolor}.uv_plus_dkdfcq8{height:var(--rwwhsl9f);width:var(--rwwhsl9f);min-width:var(--rwwhsl9f);min-height:var(--rwwhsl9f)}.uv_plus_dkdfcq9{height:var(--rwwhsl9d);width:var(--rwwhsl9d);min-width:var(--rwwhsl9d);min-height:var(--rwwhsl9d)}.uv_plus_dkdfcqa{height:var(--rwwhsl9c);width:var(--rwwhsl9c);min-width:var(--rwwhsl9c);min-height:var(--rwwhsl9c)}.uv_plus_dkdfcqb{height:var(--rwwhsl9h);width:var(--rwwhsl9h);min-width:var(--rwwhsl9h);min-height:var(--rwwhsl9h)}.uv_plus_dkdfcqc{height:var(--rwwhsl9a);width:var(--rwwhsl9a);min-width:var(--rwwhsl9a);min-height:var(--rwwhsl9a)}.uv_plus_dkdfcqd{height:var(--rwwhsl9l);width:var(--rwwhsl9l);min-width:var(--rwwhsl9l);min-height: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_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq1 .uv_plus_dkdfcq1g .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq2 .uv_plus_dkdfcq1h .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq3 .uv_plus_dkdfcq1i .fillStroke{fill:none;stroke:var(--rwwhsl27)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq4 .uv_plus_dkdfcq1j .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq5 .uv_plus_dkdfcq1k .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq6 .uv_plus_dkdfcq1l .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqg .uv_plus_dkdfcqf .uv_plus_dkdfcq7 .uv_plus_dkdfcq1m .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq1 .uv_plus_dkdfcq1o .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq2 .uv_plus_dkdfcq1p .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq3 .uv_plus_dkdfcq1q .fillStroke{fill:none;stroke:var(--rwwhsl2a)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq4 .uv_plus_dkdfcq1r .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq5 .uv_plus_dkdfcq1s .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq6 .uv_plus_dkdfcq1t .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqh .uv_plus_dkdfcqf .uv_plus_dkdfcq7 .uv_plus_dkdfcq1u .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq1 .uv_plus_dkdfcq1w .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq2 .uv_plus_dkdfcq1x .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq3 .uv_plus_dkdfcq1y .fillStroke{fill:none;stroke:var(--rwwhsl2c)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq4 .uv_plus_dkdfcq1z .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq5 .uv_plus_dkdfcq20 .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq6 .uv_plus_dkdfcq21 .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqi .uv_plus_dkdfcqf .uv_plus_dkdfcq7 .uv_plus_dkdfcq22 .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq1 .uv_plus_dkdfcq24 .fillStroke{fill:none;stroke:var(--rwwhsl5s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq2 .uv_plus_dkdfcq25 .fillStroke{fill:none;stroke:var(--rwwhsl6g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq3 .uv_plus_dkdfcq26 .fillStroke{fill:none;stroke:var(--rwwhsl2g)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq4 .uv_plus_dkdfcq27 .fillStroke{fill:none;stroke:var(--rwwhsl74)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq5 .uv_plus_dkdfcq28 .fillStroke{fill:none;stroke:var(--rwwhsli)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq6 .uv_plus_dkdfcq29 .fillStroke{fill:none;stroke:var(--rwwhsl7s)}.uv_plus_dkdfcq0 .uv_plus_dkdfcqj .uv_plus_dkdfcqf .uv_plus_dkdfcq7 .uv_plus_dkdfcq2a .fillStroke{fill:none;stroke:var(--rwwhsl16)}.uv_plus_1fq6cbr0{height:var(--rwwhsl9k);width:var(--rwwhsl9k);min-width:var(--rwwhsl9k)}.uv_plus_1fq6cbr1{height:var(--rwwhsl9j);width:var(--rwwhsl9j);min-width:var(--rwwhsl9j)}.uv_plus_1fq6cbr2{height:var(--rwwhsl9h);width:var(--rwwhsl9h);min-width:var(--rwwhsl9h)}.uv_plus_1fq6cbr3{height:var(--rwwhsl9n);width:var(--rwwhsl9n);min-width:var(--rwwhsl9n)}.uv_plus_1fq6cbr4{height:var(--rwwhsl9f);width:var(--rwwhsl9f);min-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{width:15px;margin-right:var(--rwwhsl9u)}.uv_plus_1ko5kn24{margin-left:var(--rwwhsla4)}.uv_plus_1ko5kn25{display:flex;flex-direction:row;-webkit-box-pack:justify;justify-content:space-between;align-items:center;min-height:var(--rwwhsl9l);padding-top:var(--rwwhsl9u);padding-bottom:var(--rwwhsl9u)}.uv_plus_1ko5kn26{height:var(--rwwhsl9k);display:flex;flex-direction:column;-webkit-box-pack:center;justify-content:center}.uv_plus_1ko5kn27{animation:.8s uv_15brg2b3}.uv_plus_1ko5kn29{text-align:initial;height:var(--rwwhsl9k);display:flex;flex-direction:column;-webkit-box-pack:center;justify-content:center}.uv_plus_1ko5kn2a{text-align:right}.uv_plus_1ko5kn2b{animation:uv_15brg2b3 .8s}.uv_plus_1ko5kn2c{margin-left:var(--rwwhsl9u);align-self:center}.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-line:line-through;text-decoration-color:var(--rwwhsl7m)}.uv_plus_1ko5kn2h{max-width:500px;align-items:center;font-size:16px;color:var(--rwwhsl2m);margin-right:var(--rwwhsla4)}.uv_plus_1ko5kn2i{display:flex}.uv_plus_1ko5kn2j{display:inline-flex}.uv_plus_1ko5kn2n{display:block;font-size:14px;line-height:8;color:var(--rwwhsl2j)}.uv_plus_1ko5kn2o{display:inline-flex;align-items:center;color:var(--rwwhsl2m);font-weight:500;margin-right:4px}.uv_plus_1ko5kn2p{font-size:16px}.uv_plus_1ko5kn2q{font-size:24px}.uv_plus_1ko5kn2r{font-size:16px;text-transform:capitalize}.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{-webkit-appearance:none;margin:0}.uv_plus_sk5tga2{width:15px;margin-right:var(--rwwhsl9u)}.uv_plus_sk5tga3{width:100%;border:1px solid var(--rwwhsl1v)}.uv_plus_sk5tga4{border-radius:4px 4px 0}.uv_plus_sk5tga5{border-radius:4px}.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{border-left:1px solid var(--rwwhsl1v);background-color:var(--rwwhsl1r);width:30%;min-width:126px}.uv_plus_sk5tga9{padding-right:var(--rwwhsl9v);position:relative;width:70%;min-width:230px;padding-left:var(--uv_plus_sk5tga0)}.uv_plus_sk5tgaa:before{content:"";position:absolute;left:0;bottom:0;height:1px;width:calc(100% - 32px);margin-left:var(--rwwhsl9v);border-bottom:1px solid var(--rwwhsl1v)}.uv_plus_sk5tgab{background:var(--rwwhsl5g)}.uv_plus_sk5tgac{border-color:var(--rwwhsl1v);border-style:solid;border-width:0 1px 1px 1px;border-right:none;border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);height:var(--rwwhsl9l);background-color:var(--rwwhsl5g);width:30%;min-width:126px}.uv_plus_sk5tgad{margin:0;width:100%;border-right:1px solid var(--rwwhsl1v);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85)}.uv_plus_sk5tgae{display:flex;align-items:center;margin:0;font-size:18px;color:var(--rwwhsl2j);font-weight:500;padding:var(--rwwhsl9v)}.uv_plus_sk5tgaf{width:70%}.uv_plus_sk5tgag{max-width:200px;padding:var(--rwwhsl9v);align-items:start;text-align:left;float:right}.uv_plus_sk5tgah{position:absolute;top:calc(50% - 16px)}.uv_plus_sk5tgai{margin-left:-185px}.uv_plus_sk5tgaj{margin-left:-115px}.uv_plus_sk5tgak{min-width:200px;padding:0 24px;border-left:1px solid var(--rwwhsl1v)}.uv_plus_sk5tgak:first-of-type,.uv_plus_sk5tgak:last-child{border:0}.uv_plus_sk5tgal{border:0}.uv_plus_sk5tgan{display:none}.uv_plus_sk5tgao{display:inline-block;height:var(--rwwhsl9f);line-height:18;font-size:12px;margin-right:var(--rwwhsl9u)}.uv_plus_sk5tgap{margin-top:var(--rwwhsl9w)}.uv_plus_sk5tgaq{text-align:right;margin-left:var(--rwwhsl9v)}.uv_plus_sk5tgar{text-align:right}.uv_plus_sk5tgas{margin-right:var(--rwwhsl9u)}.uv_plus_sk5tgat{padding:0}.uv_plus_sk5tgau{position:fixed;left:0;right:0;height:120px;background-color:var(--rwwhsl1i);margin:var(--uv_plus_sk5tga1);display:flex;justify-content:center;transition:bottom .3s,box-shadow .3s;z-index:1}.uv_plus_sk5tgav{bottom:-120px;box-shadow:0}.uv_plus_sk5tgaw{bottom:0;box-shadow:var(--rwwhsl8c)}.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;padding:12px 0;min-width:158px}@media(max-width:1800px){.uv_plus_sk5tgam{display:none}}.uv_plus_5imqkb0{padding:var(--rwwhsl9v);text-align:left}.uv_plus_h6pvpm1{display:flex;font-size:var(--rwwhsla9);line-height:var(--rwwhslac);flex-direction:column;align-items:start;margin:0;width:100%}.uv_plus_h6pvpm2{width:var(--uv_plus_h6pvpm0);border-bottom:1px var(--rwwhsl1v) solid;padding-block:var(--rwwhsl9v)}.uv_plus_h6pvpm2:first-of-type{padding-top:0}.uv_plus_h6pvpm2:last-of-type{padding-bottom:0;border-bottom-color:transparent}.uv_plus_h6pvpm2>*:not(:last-child){padding-right:var(--rwwhsl9v)}.uv_plus_h6pvpm3{font-weight:var(--rwwhslbg);color:var(--rwwhsl2m);display:inline-flex;align-items:center;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>*{display:inline-flex;align-items:center;margin-right:var(--rwwhsl9u)}@keyframes uv_plus_1ngtn5a0{0%{max-height:50px}to{max-height:32px}}@keyframes uv_plus_1ngtn5a1{0%{opacity:0;max-height:0;margin-bottom:-8px}to{opacity:1;max-height:40px;margin-bottom:0}}.uv_plus_nytpcy0{padding-bottom:var(--rwwhsl9u);padding-left:var(--rwwhsl9u);transition:opacity .25s ease-in-out,height .25s ease-in-out;height:calc(var(--rwwhslau) + var(--rwwhsl9u))}.uv_plus_nytpcy1{animation:uv_plus_1ngtn5a1 .25s ease-in-out}.uv_plus_nytpcy2{animation:uv_plus_1ngtn5a1 .25s ease-in-out reverse}.uv_plus_nytpcy4{padding-top:var(--rwwhsl9u)}.uv_plus_nytpcy5{position:absolute;right:0;left:0;top:0;height:2px;border-top:2px solid;border-color:transparent;padding:var(--rwwhsla4) 0}.uv_plus_nytpcy5:before{content:"";position:absolute;left:0;top:-4px;height:0;width:0;border:3px solid;border-color:inherit;border-radius:var(--rwwhsl84)}.uv_plus_nytpcy6{position:relative}.uv_plus_nytpcy7{padding:var(--rwwhsl9u) 0}.uv_plus_nytpcy8{padding-left:var(--rwwhsl9x);margin-left:var(--rwwhsla4)}.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{position:absolute;top:0;bottom:0;margin:auto 0;padding:var(--rwwhsla5);border-radius:var(--rwwhsl85)}.uv_plus_x6an4g4:hover{background:var(--rwwhsl5i)}.uv_plus_x6an4g5:hover{background:var(--rwwhsl1u)}.uv_plus_x6an4g6{text-align:left}.uv_plus_x6an4g8{color:inherit;text-decoration:none;background-color:inherit;border:none;text-align:left;border-radius:var(--rwwhsl85);margin-top:var(--rwwhsla5);padding:calc(var(--rwwhsla5) + var(--rwwhsla4)) var(--rwwhsl9u);width:100%}.uv_plus_x6an4ga{cursor:pointer}.uv_plus_x6an4gb{cursor:not-allowed;background-color:unset}.uv_plus_x6an4gc{background-color:var(--rwwhsl5g)}.uv_plus_x6an4gc:hover{background-color:var(--rwwhsl5i)}.uv_plus_x6an4gd{background-color:var(--rwwhsl1k)}.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{opacity:0;margin:0 var(--rwwhsla5);cursor:grab}.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{overflow-wrap:anywhere;overflow:hidden;display:-webkit-box;-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{opacity:0;position:absolute;inset:0 0 0 -24px;margin:auto}.uv_plus_x6an4gs:hover,.uv_plus_x6an4gs:focus,.uv_plus_x6an4gs:active{opacity:1}.uv_plus_x6an4g6:hover .uv_plus_x6an4gs,.uv_plus_x6an4g6:focus .uv_plus_x6an4gs,.uv_plus_x6an4g6:active .uv_plus_x6an4gs{opacity:1}.uv_plus_x6an4gl:hover .uv_plus_x6an4gs,.uv_plus_x6an4gl:active .uv_plus_x6an4gs,.uv_plus_x6an4gl:focus .uv_plus_x6an4gs{opacity:1}.uv_plus_x6an4gt{animation:uv_15brg2b7 .25s ease-in-out}.uv_plus_x6an4gu{animation:uv_15brg2b7 .25s ease-in-out reverse}.uv_plus_x6an4gv{padding:0 var(--rwwhsl9v);margin-top:var(--rwwhsla5);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{display:flex;width:100%;background:var(--rwwhsl1i);border-top:1px solid var(--rwwhsl24);padding:var(--rwwhsl9u) var(--rwwhsl9v);transition:justify-content .25s ease-in-out,box-shadow .23s ease-in-out;box-shadow:var(--rwwhsl8c);justify-content:flex-end}.uv_plus_19x50fv1{box-shadow:none;border:none}.uv_plus_19x50fv2{background:var(--rwwhsl1i)}.uv_plus_19x50fv3{margin:var(--rwwhsl9w) var(--rwwhsl9w) var(--rwwhsl9v) var(--rwwhsl9w);max-width:220px;height:22px;overflow:hidden}.uv_plus_19x50fv4{display:flex;flex-direction:row;position:relative;border-right:1px solid var(--rwwhsl24)}.uv_plus_19x50fv5{background:var(--rwwhsl1i);display:flex;flex-direction:column;width:var(--uv_plus_1rde5pt0)}.uv_plus_19x50fv6{width:67px}.uv_plus_19x50fv7{transition:width .25s ease-in-out;width:67px}.uv_plus_19x50fv8{transition:width .25s ease-in-out;width:var(--uv_plus_1rde5pt0)}.uv_plus_19x50fva{max-width:320px;min-width:220px}.uv_plus_19x50fvb{overflow:hidden;display:flex;flex-direction:column;flex-grow:1}.uv_plus_19x50fvc{align-items:center}.uv_plus_19x50fvd{overflow-x:hidden;overflow-y:auto;flex-grow:1;padding:var(--rwwhsl9v)}.uv_plus_19x50fve{background:transparent;position:absolute;top:0;bottom:0;right:0;width:6px;cursor:col-resize;border-right:2px solid transparent;display:flex}.uv_plus_19x50fve:hover{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp1 td:first-child,.uv_plus_1wcpahp1 th:first-child{width:var(--rwwhsl9l);min-width:var(--rwwhsl9l);max-width:var(--rwwhsl9l)}.uv_plus_1wcpahp2{width:100%;display:table-row;vertical-align:middle;cursor:auto;background:var(--rwwhsl1r);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);position:relative}.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{transition:border-color .2s ease;margin-top:calc((var(--rwwhsl9v) * -1) - 1px);padding-block:var(--rwwhsla4);padding-inline:var(--rwwhsl9u);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);border:1px solid var(--rwwhsl1v);border-top-color:transparent}.uv_plus_1wcpahp4{border:1px solid var(--rwwhsl1v)}.uv_plus_1wcpahp4.uv_plus_1wcpahp4{border-top:1px solid transparent}.uv_plus_1wcpahpc{border:1px solid var(--rwwhsl1v)}.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{height:fit-content;border-top-left-radius:0;border-top-right-radius:0;width:100%;padding:0}.uv_plus_1wcpahpu{height:fit-content;border-top:1px solid var(--rwwhsl1v);border-radius:0 0 var(--rwwhsl85) var(--rwwhsl85);width:100%;padding-block:var(--rwwhsla4);padding-inline:var(--rwwhsl9u)}.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{position:absolute;transform:translateY(-150%);top:0;left:var(--rwwhsl9w)}.uv_plus_1wcpahp13{position:absolute;top:var(--rwwhsl9v)}.uv_plus_1wcpahp14{padding:0;width:32px}.uv_plus_1wcpahp14:first-of-type{padding-left:var(--rwwhsl9v)}.uv_plus_1wcpahp15{color:var(--rwwhsl5y)}.uv_plus_1wcpahp15 td,.uv_plus_1wcpahp15 td:first-child,.uv_plus_1wcpahp15 td:last-child{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp16 td:nth-child(2),.uv_plus_1wcpahp17 td:nth-child(3){font-weight:var(--rwwhslay)}.uv_plus_1wcpahp15[aria-expanded=true] td,.uv_plus_1wcpahp15[aria-expanded=true] td:first-child,.uv_plus_1wcpahp15[aria-expanded=true] td:last-child,.uv_plus_1wcpahp15[aria-expanded=true]+tr td{border-color:var(--rwwhsl5m)}.uv_plus_1wcpahp18 td,.uv_plus_1wcpahp18 td:first-child{border-bottom-left-radius:0}.uv_plus_1wcpahp18 td,.uv_plus_1wcpahp18 td:last-child{border-bottom-right-radius:0}.uv_plus_1wcpahp19{display:flex}.uv_plus_1wcpahp1a{padding:var(--uv_plus_1wcpahp0)}.uv_plus_1wcpahp1b{white-space:pre-line}.uv_plus_1wcpahp1c{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{padding:var(--rwwhsl9w);border-top:1px solid var(--rwwhsl1v)}.uv_plus_1q5g1ma6{max-width:12.5rem;background-color:var(--rwwhsl1i)}.uv_plus_1q5g1ma7{overflow-y:scroll;padding:var(--rwwhsl9w);min-height:10rem;height:100%}.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{position:absolute;opacity:0;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(--rwwhsla5)}.uv_plus_1q5g1mad{margin-top:var(--rwwhsla4)}@media(min-width:1440px){.uv_plus_1q5g1ma0{min-width:27.5rem}}.uv_plus_11wud800{cursor:pointer}.uv_plus_11wud801{table-layout:fixed;border-collapse:separate;border-spacing:var(--rwwhsl9v) 0;margin:0 calc(-1 * var(--rwwhsl9v));width:calc(100% + var(--rwwhsl9x));height:1px}.uv_plus_11wud802{position:absolute;bottom:100%;left:50%;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}thead .uv_plus_11wud803{height:100%;vertical-align:top;position:relative;padding-top:var(--rwwhsl9x);padding-bottom:var(--rwwhsl9w)}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}tbody .uv_plus_11wud803:not(:first-child){border:1px solid var(--rwwhsl1v);border-width:0 1px}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}tbody tr:last-child .uv_plus_11wud803{padding-bottom:var(--rwwhsl9x)}.uv_plus_11wud804{background-color:var(--rwwhsl1j)}.uv_plus_11wud805{display:none}.uv_plus_11wud806{cursor:pointer}.uv_plus_11wud807{text-align:start;padding-left:var(--rwwhsl9w)}thead .uv_plus_11wud808:not(:first-child),tbody .uv_plus_11wud808:not(:first-child),tbody tr:last-child .uv_plus_11wud808:not(:first-child){border-color:var(--rwwhsl5m)}thead .uv_plus_11wud809:not(:first-child),tbody .uv_plus_11wud809:not(:first-child),tbody tr:last-child .uv_plus_11wud809:not(:first-child){border-color:#00f;border-width:2px 2px 0 2px}tbody .uv_plus_11wud80a{padding-bottom:var(--rwwhsl9z)}.uv_plus_11wud80b{display:none}.uv_plus_11wud80c{text-transform:uppercase}.uv_plus_11wud80d{position:absolute;opacity:0;top:0;left:0}.uv_plus_11wud80e{height:100%}.uv_plus_11wud80f{padding:var(--rwwhsl9u);width:100%}.uv_plus_11wud80g{width:100%}.uv_plus_11wud80h{height:var(--rwwhsl9k);display:flex;align-items:center}.uv_plus_l0ny240{padding:0}.uv_plus_l0ny241{padding:var(--rwwhsl9w);border-right:1px solid var(--rwwhsl1v)}.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;transition:text-decoration-color .25s ease-out;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:2px;text-decoration-color:transparent}.uv_plus_l0ny245:hover{text-decoration:underline;text-decoration-thickness:1px}.uv_plus_l0ny245:active{text-decoration-thickness:2px}.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.1.0",
|
|
4
4
|
"description": "Ultraviolet Plus",
|
|
5
5
|
"homepage": "https://github.com/scaleway/ultraviolet#readme",
|
|
6
6
|
"repository": {
|
|
@@ -53,17 +53,15 @@
|
|
|
53
53
|
],
|
|
54
54
|
"peerDependencies": {
|
|
55
55
|
"react": "18.x || 19.x",
|
|
56
|
-
"react-dom": "18.x || 19.x"
|
|
57
|
-
"@ultraviolet/ui": "3.0.0"
|
|
56
|
+
"react-dom": "18.x || 19.x"
|
|
58
57
|
},
|
|
59
58
|
"devDependencies": {
|
|
60
59
|
"@babel/core": "7.28.5",
|
|
61
|
-
"@types/react": "19.2.
|
|
60
|
+
"@types/react": "19.2.7",
|
|
62
61
|
"@types/react-dom": "19.2.3",
|
|
63
62
|
"react": "19.2.0",
|
|
64
63
|
"react-dom": "19.2.0",
|
|
65
64
|
"@ultraviolet/illustrations": "6.0.0",
|
|
66
|
-
"@ultraviolet/ui": "3.0.0",
|
|
67
65
|
"@utils/test": "0.0.1"
|
|
68
66
|
},
|
|
69
67
|
"dependencies": {
|
|
@@ -74,9 +72,10 @@
|
|
|
74
72
|
"@vanilla-extract/dynamic": "2.1.5",
|
|
75
73
|
"@vanilla-extract/recipes": "0.5.7",
|
|
76
74
|
"csstype": "3.2.3",
|
|
77
|
-
"react-intersection-observer": "
|
|
78
|
-
"@ultraviolet/icons": "5.0.
|
|
79
|
-
"@ultraviolet/themes": "3.0.0"
|
|
75
|
+
"react-intersection-observer": "10.0.0",
|
|
76
|
+
"@ultraviolet/icons": "5.0.1",
|
|
77
|
+
"@ultraviolet/themes": "3.0.0",
|
|
78
|
+
"@ultraviolet/ui": "3.1.0"
|
|
80
79
|
},
|
|
81
80
|
"scripts": {
|
|
82
81
|
"type:generate": "tsc --declaration -p tsconfig.build.json",
|