trely-ui-kit 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +13 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.d.ts.map +1 -0
- package/dist/components/Breadcrumbs/index.d.ts +3 -0
- package/dist/components/Breadcrumbs/index.d.ts.map +1 -0
- package/dist/components/ImageUpload/ImageUpload.d.ts +6 -9
- package/dist/components/ImageUpload/ImageUpload.d.ts.map +1 -1
- package/dist/components/ImagesUpload/ImagesUpload.d.ts +13 -0
- package/dist/components/ImagesUpload/ImagesUpload.d.ts.map +1 -0
- package/dist/components/ImagesUpload/index.d.ts +3 -0
- package/dist/components/ImagesUpload/index.d.ts.map +1 -0
- package/dist/components/RadioGroup/RadioGroup.d.ts +6 -4
- package/dist/components/RadioGroup/RadioGroup.d.ts.map +1 -1
- package/dist/components/RadioGroup/index.d.ts +2 -2
- package/dist/components/RadioGroup/index.d.ts.map +1 -1
- package/dist/components/SectionContainer/SectionContainer.d.ts +8 -0
- package/dist/components/SectionContainer/SectionContainer.d.ts.map +1 -0
- package/dist/components/SectionContainer/index.d.ts +2 -0
- package/dist/components/SectionContainer/index.d.ts.map +1 -0
- package/dist/components/UnstyledButton/UnstyledButton.d.ts +6 -0
- package/dist/components/UnstyledButton/UnstyledButton.d.ts.map +1 -0
- package/dist/components/UnstyledButton/index.d.ts +2 -0
- package/dist/components/UnstyledButton/index.d.ts.map +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +10 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +12 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3326 -3230
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/components/PhotoUploadField/PhotoUploadField.d.ts +0 -10
- package/dist/components/PhotoUploadField/PhotoUploadField.d.ts.map +0 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ComponentProps, ElementType, ReactNode } from 'react';
|
|
2
|
+
export interface BreadcrumbItem {
|
|
3
|
+
title: ReactNode;
|
|
4
|
+
href?: string;
|
|
5
|
+
}
|
|
6
|
+
export interface BreadcrumbsProps extends ComponentProps<'nav'> {
|
|
7
|
+
items: BreadcrumbItem[];
|
|
8
|
+
className?: string;
|
|
9
|
+
LinkComponent?: ElementType;
|
|
10
|
+
separator?: ReactNode;
|
|
11
|
+
}
|
|
12
|
+
export declare const Breadcrumbs: import('react').ForwardRefExoticComponent<Omit<BreadcrumbsProps, "ref"> & import('react').RefAttributes<HTMLElement>>;
|
|
13
|
+
//# sourceMappingURL=Breadcrumbs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Breadcrumbs.d.ts","sourceRoot":"","sources":["../../../src/components/Breadcrumbs/Breadcrumbs.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,WAAW,EAAc,SAAS,EAAE,MAAM,OAAO,CAAC;AAO3E,MAAM,WAAW,cAAc;IAC7B,KAAK,EAAE,SAAS,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,gBAAiB,SAAQ,cAAc,CAAC,KAAK,CAAC;IAC7D,KAAK,EAAE,cAAc,EAAE,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,WAAW,CAAC;IAC5B,SAAS,CAAC,EAAE,SAAS,CAAC;CACvB;AAED,eAAO,MAAM,WAAW,uHAyCvB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Breadcrumbs/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACtE,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export interface ImageUploadProps {
|
|
3
|
-
value?: File[];
|
|
4
|
-
onChange?: (files: File[]) => void;
|
|
1
|
+
import { InputHTMLAttributes, ReactNode } from 'react';
|
|
2
|
+
export interface ImageUploadProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'type'> {
|
|
5
3
|
label?: string;
|
|
6
4
|
error?: string;
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
className?: string;
|
|
5
|
+
icon?: ReactNode;
|
|
6
|
+
placeholderText?: string;
|
|
7
|
+
preview?: string;
|
|
11
8
|
}
|
|
12
|
-
export declare const ImageUpload:
|
|
9
|
+
export declare const ImageUpload: import('react').ForwardRefExoticComponent<ImageUploadProps & import('react').RefAttributes<HTMLInputElement>>;
|
|
13
10
|
//# sourceMappingURL=ImageUpload.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageUpload.d.ts","sourceRoot":"","sources":["../../../src/components/ImageUpload/ImageUpload.tsx"],"names":[],"mappings":"AAEA,OAAO,
|
|
1
|
+
{"version":3,"file":"ImageUpload.d.ts","sourceRoot":"","sources":["../../../src/components/ImageUpload/ImageUpload.tsx"],"names":[],"mappings":"AAEA,OAAO,EAEL,mBAAmB,EACnB,SAAS,EAKV,MAAM,OAAO,CAAC;AAKf,MAAM,WAAW,gBAAiB,SAAQ,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC3F,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,WAAW,+GAwEvB,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
export interface ImagesUploadProps {
|
|
3
|
+
value?: File[];
|
|
4
|
+
onChange?: (files: File[]) => void;
|
|
5
|
+
label?: string;
|
|
6
|
+
error?: string;
|
|
7
|
+
maxFiles?: number;
|
|
8
|
+
accept?: string;
|
|
9
|
+
disabled?: boolean;
|
|
10
|
+
className?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare const ImagesUpload: React.ForwardRefExoticComponent<ImagesUploadProps & React.RefAttributes<HTMLDivElement>>;
|
|
13
|
+
//# sourceMappingURL=ImagesUpload.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ImagesUpload.d.ts","sourceRoot":"","sources":["../../../src/components/ImagesUpload/ImagesUpload.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA2B,MAAM,OAAO,CAAC;AAOhD,MAAM,WAAW,iBAAiB;IAChC,KAAK,CAAC,EAAE,IAAI,EAAE,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,KAAK,IAAI,CAAC;IACnC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,YAAY,0FA2GxB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ImagesUpload/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
2
2
|
export interface RadioOption {
|
|
3
|
-
value:
|
|
3
|
+
value: any;
|
|
4
4
|
label: string;
|
|
5
|
+
variant?: 'circle' | 'square';
|
|
5
6
|
}
|
|
6
7
|
export interface RadioGroupProps extends Omit<React.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Root>, 'children' | 'onValueChange' | 'onChange'> {
|
|
7
8
|
options: RadioOption[];
|
|
@@ -9,11 +10,12 @@ export interface RadioGroupProps extends Omit<React.ComponentPropsWithoutRef<typ
|
|
|
9
10
|
label?: string;
|
|
10
11
|
onChange?: (value: string) => void;
|
|
11
12
|
className?: string;
|
|
13
|
+
variant?: 'circle' | 'square';
|
|
12
14
|
}
|
|
13
15
|
export interface RadioProps extends Omit<React.ComponentPropsWithoutRef<typeof RadioGroupPrimitive.Item>, 'children'> {
|
|
14
16
|
label: string;
|
|
17
|
+
variant?: 'circle' | 'square';
|
|
15
18
|
}
|
|
16
|
-
declare const
|
|
17
|
-
|
|
18
|
-
export { Radio, RadioGroupRoot as RadioGroup };
|
|
19
|
+
declare const RadioGroup: import('react').ForwardRefExoticComponent<RadioGroupProps & import('react').RefAttributes<HTMLDivElement>>;
|
|
20
|
+
export { RadioGroup };
|
|
19
21
|
//# sourceMappingURL=RadioGroup.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["../../../src/components/RadioGroup/RadioGroup.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,mBAAmB,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"RadioGroup.d.ts","sourceRoot":"","sources":["../../../src/components/RadioGroup/RadioGroup.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,mBAAmB,MAAM,6BAA6B,CAAC;AAOnE,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,GAAG,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;CAC/B;AAED,MAAM,WAAW,eACf,SAAQ,IAAI,CACV,KAAK,CAAC,wBAAwB,CAAC,OAAO,mBAAmB,CAAC,IAAI,CAAC,EAC/D,UAAU,GAAG,eAAe,GAAG,UAAU,CAC1C;IACD,OAAO,EAAE,WAAW,EAAE,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;CAC/B;AAED,MAAM,WAAW,UACf,SAAQ,IAAI,CAAC,KAAK,CAAC,wBAAwB,CAAC,OAAO,mBAAmB,CAAC,IAAI,CAAC,EAAE,UAAU,CAAC;IACzF,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;CAC/B;AAiCD,QAAA,MAAM,UAAU,4GA+Bf,CAAC;AAIF,OAAO,EAAE,UAAU,EAAE,CAAC"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export type { RadioGroupProps, RadioOption
|
|
2
|
-
export {
|
|
1
|
+
export type { RadioGroupProps, RadioOption } from './RadioGroup';
|
|
2
|
+
export { RadioGroup } from './RadioGroup';
|
|
3
3
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/RadioGroup/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,eAAe,EAAE,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/RadioGroup/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AACjE,OAAO,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
export interface SectionContainerProps {
|
|
3
|
+
children: ReactNode;
|
|
4
|
+
paddingSize?: 'sm' | 'md' | 'none';
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
export declare function SectionContainer({ children, paddingSize, className, }: SectionContainerProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
//# sourceMappingURL=SectionContainer.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SectionContainer.d.ts","sourceRoot":"","sources":["../../../src/components/SectionContainer/SectionContainer.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAKlC,MAAM,WAAW,qBAAqB;IACpC,QAAQ,EAAE,SAAS,CAAC;IACpB,WAAW,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,MAAM,CAAC;IACnC,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,QAAQ,EACR,WAAkB,EAClB,SAAS,GACV,EAAE,qBAAqB,2CAgBvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/SectionContainer/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
export interface UnstyledButtonProps extends ComponentProps<'button'> {
|
|
3
|
+
asChild?: boolean;
|
|
4
|
+
}
|
|
5
|
+
export declare const UnstyledButton: import('react').ForwardRefExoticComponent<Omit<UnstyledButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>>;
|
|
6
|
+
//# sourceMappingURL=UnstyledButton.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UnstyledButton.d.ts","sourceRoot":"","sources":["../../../src/components/UnstyledButton/UnstyledButton.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAc,MAAM,OAAO,CAAC;AAMnD,MAAM,WAAW,mBAAoB,SAAQ,cAAc,CAAC,QAAQ,CAAC;IACnE,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,cAAc,gIAO1B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/UnstyledButton/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC"}
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--general-wrapper-padding: 8rem}@media only screen and (max-width:1280px){:root{--general-wrapper-padding: 2.4rem}}@media only screen and (max-width:769px){:root{--general-wrapper-padding: 2rem}}:root{--header-height: 6.9rem}@media only screen and (max-width:766px){:root{--header-height: 5.7rem}}:root{--fg-black: #000;--fg-black-10-opacity: rgb(0 0 0 / 10%);--fg-black-30-opacity: rgb(0 0 0 / 30%);--fg-black-40-opacity: rgb(0 0 0 / 40%);--fg-black-70-opacity: rgb(0 0 0 / 70%);--bg-white: #fff;--bg-white-10-opacity: rgb(255 255 255 / 10%);--bg-white-20-opacity: rgb(255 255 255 / 20%);--fg-white: #fff;--Text-White: #fff;--fg-white-70-opacity: rgb(255 255 255 / 70%);--Text-White-70-opacity: rgb(255 255 255 / 70%);--bg-black-3-opacity: rgb(0 0 0 / 3%);--bg-black-5-opacity: rgb(0 0 0 / 5%);--bg-black-10-opacity: rgb(0 0 0 / 10%);--bg-black-15-opacity: rgb(0 0 0 / 15%);--bg-black-20-opacity: rgb(0 0 0 / 20%);--bg-black-30-opacity: rgb(0 0 0 / 30%);--bg-black-80-opacity: rgb(0 0 0 / 80%);--bg-beiege: #F7F6F4;--bg-dark-brown: #0D0C0C;--fg-blue: #00A4E4;--fg-link: #00A4E4;--stroke-black-5: rgb(0 0 0 / 5%);--System-Colours-Error: #F92E1F;--System-Colours-Success: #52AF01;--system-colours-error-10-opacity: rgb(249 46 31 / 10%);--BG-Accent-Gold: #C6A064;--BG-Light-Gold: #D9B780;--Text-Gold: #CEAC75;--Text-Light-Gold: #F0CE99;--bg-gold-10-opacity: rgb(198 160 100 / 10%);--bg-gold-20-opacity: rgb(198 160 100 / 20%);--bg-gold-30-opacity: rgb(198 160 100 / 30%);--Text-Gold-30-opacity: rgb(206 172 117 / 30%);--Text-Gold-70-opacity: rgb(206 172 117 / 70%);--BG-Green: #273C3F;--BG-Light-Green: #3A5256;--Text-Green: #4A6B6F;--bg-green-5-opacity: rgb(39 60 63 / 5%);--bg-green-10-opacity: rgb(39 60 63 / 10%);--bg-green-15-opacity: rgb(39 60 63 / 15%);--bg-green-30-opacity: rgb(39 60 63 / 30%);--Text-green-70-opacity: rgb(74 107 111 / 70%)}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}*{-webkit-tap-highlight-color:rgba(255,255,255,0)}input,button,textarea,select{font:inherit;border:0;border-radius:0;appearance:none}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{margin:0;appearance:none}a{text-decoration:none;color:inherit}ul,ol{list-style-type:none}button{cursor:pointer;-webkit-user-select:none;user-select:none}img{display:block;max-width:100%}*:focus{outline:none}html,body{height:100%;font-size:10px}html{scroll-behavior:smooth}body{font-family:Inter Tight,Inter,-apple-system,BlinkMacSystemFont,sans-serif;color:var(--fg-black);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}._avatar_1h8d2_1{position:relative;display:flex;flex-shrink:0;justify-content:center;align-items:center;overflow:hidden;background:linear-gradient(135deg,#4a6b6f,#7a9b9f,#4a6b6f);border-radius:50%}._xs_1h8d2_12{width:2.4rem;height:2.4rem;font-size:1rem}._s_1h8d2_18{width:3.2rem;height:3.2rem;font-size:1.2rem}._m_1h8d2_24{width:4rem;height:4rem;font-size:1.4rem}._l_1h8d2_30{width:5.6rem;height:5.6rem;font-size:2rem}._xl_1h8d2_36{width:8rem;height:8rem;font-size:2.8rem}._xxl_1h8d2_42{width:10rem;height:10rem;font-size:3.2rem}._image_1h8d2_48{display:block;width:100%;height:100%;object-fit:cover}._initials_1h8d2_55{font-weight:500;line-height:1;color:var(--fg-white);-webkit-user-select:none;user-select:none}._button_8pv9u_1{position:relative;display:inline-flex;justify-content:center;align-items:center;font-weight:600;background:none;border:none;transition:all .3s ease;cursor:pointer}._button_8pv9u_1:active:not(:disabled){opacity:.7;transition:opacity .1s ease}._button_8pv9u_1:disabled{cursor:not-allowed}._xs_8pv9u_20{padding:.8rem 1.2rem;font-size:14px;line-height:2.2rem;border-radius:.8rem}._xs_8pv9u_20._icon_8pv9u_26{padding:.8rem}._s_8pv9u_30{padding:1rem 1.2rem;font-size:14px;line-height:2.2rem;border-radius:.8rem}._s_8pv9u_30._icon_8pv9u_26{padding:1rem}._m_8pv9u_40{padding:1.2rem;font-size:14px;line-height:2.2rem;border-radius:1rem}._m_8pv9u_40._icon_8pv9u_26{padding:1.2rem}._l_8pv9u_50{padding:1.6rem 1.2rem;font-size:16px;line-height:2.4rem;border-radius:1.2rem}._l_8pv9u_50._icon_8pv9u_26{padding:1.6rem}._gold_8pv9u_60._main_8pv9u_60{color:var(--Text-White);background-color:var(--BG-Accent-Gold)}@media(hover:hover)and (pointer:fine){._gold_8pv9u_60._main_8pv9u_60:hover:not(:disabled){background-color:var(--BG-Light-Gold)}}._gold_8pv9u_60._main_8pv9u_60:disabled{color:var(--Text-White);background-color:var(--bg-gold-30-opacity)}._gold_8pv9u_60._secondary_8pv9u_73{color:var(--Text-Gold);background-color:var(--bg-gold-10-opacity)}@media(hover:hover)and (pointer:fine){._gold_8pv9u_60._secondary_8pv9u_73:hover:not(:disabled){background-color:var(--bg-gold-20-opacity)}}._gold_8pv9u_60._secondary_8pv9u_73:disabled{color:var(--Text-Gold-30-opacity);background-color:var(--bg-gold-10-opacity)}._gold_8pv9u_60._tertiary_8pv9u_86{color:var(--Text-Gold);background-color:transparent}@media(hover:hover)and (pointer:fine){._gold_8pv9u_60._tertiary_8pv9u_86:hover:not(:disabled){background-color:var(--bg-gold-10-opacity)}}._gold_8pv9u_60._tertiary_8pv9u_86:disabled{color:var(--Text-Gold);background-color:transparent;opacity:.4}._green_8pv9u_101._main_8pv9u_60{color:var(--Text-White);background-color:var(--BG-Green)}@media(hover:hover)and (pointer:fine){._green_8pv9u_101._main_8pv9u_60:hover:not(:disabled){background-color:var(--BG-Light-Green)}}._green_8pv9u_101._main_8pv9u_60:disabled{color:var(--Text-White);background-color:var(--bg-green-30-opacity)}._green_8pv9u_101._secondary_8pv9u_73{color:var(--Text-Green);background-color:var(--bg-green-5-opacity)}@media(hover:hover)and (pointer:fine){._green_8pv9u_101._secondary_8pv9u_73:hover:not(:disabled){background-color:var(--bg-green-15-opacity)}}._green_8pv9u_101._secondary_8pv9u_73:disabled{color:var(--bg-green-30-opacity);background-color:var(--bg-green-10-opacity)}._green_8pv9u_101._tertiary_8pv9u_86{color:var(--Text-Green);background-color:transparent}@media(hover:hover)and (pointer:fine){._green_8pv9u_101._tertiary_8pv9u_86:hover:not(:disabled){background-color:var(--bg-green-5-opacity)}}._green_8pv9u_101._tertiary_8pv9u_86:disabled{color:var(--Text-Green);background-color:transparent;opacity:.4}._error_8pv9u_142._main_8pv9u_60{color:var(--Text-White);background-color:var(--System-Colours-Error)}@media(hover:hover)and (pointer:fine){._error_8pv9u_142._main_8pv9u_60:hover:not(:disabled){background-color:#ff4536}}._error_8pv9u_142._main_8pv9u_60:disabled{color:var(--Text-White);background-color:#f92e1f4d}._error_8pv9u_142._secondary_8pv9u_73{color:var(--System-Colours-Error);background-color:#f92e1f0d}@media(hover:hover)and (pointer:fine){._error_8pv9u_142._secondary_8pv9u_73:hover:not(:disabled){background-color:#f92e1f14}}._error_8pv9u_142._secondary_8pv9u_73:disabled{color:#f92e1f4d;background-color:#f92e1f0d}._error_8pv9u_142._tertiary_8pv9u_86{color:var(--System-Colours-Error);background-color:transparent}@media(hover:hover)and (pointer:fine){._error_8pv9u_142._tertiary_8pv9u_86:hover:not(:disabled){background-color:#f92e1f0d}}._error_8pv9u_142._tertiary_8pv9u_86:disabled{color:var(--System-Colours-Error);background-color:transparent;opacity:.4}._content_8pv9u_183{display:flex;justify-content:center;align-items:center;gap:1rem}._loading_8pv9u_190 ._content_8pv9u_183{opacity:0}._loader_8pv9u_194{position:absolute;width:1.6rem;height:1.6rem;border:.2rem solid currentcolor;border-radius:50%;animation:_spin_8pv9u_1 .6s linear infinite;border-top-color:transparent}@keyframes _spin_8pv9u_1{to{transform:rotate(360deg)}}._button_yyut6_1{position:relative;display:inline-flex;justify-content:center;align-items:center;padding:.8rem;border:none;border-radius:10rem;-webkit-backdrop-filter:blur(6rem);backdrop-filter:blur(6rem);transition:all .3s ease;cursor:pointer}._button_yyut6_1:active:not(:disabled){opacity:.7;transition:opacity .1s ease}._button_yyut6_1:disabled{cursor:not-allowed}._white_yyut6_21{color:var(--fg-white, #fff);background:var(--bg-white-10-opacity)}@media(hover:hover)and (pointer:fine){._white_yyut6_21:hover:not(:disabled){background:var(--bg-white-20-opacity)}}._white_yyut6_21:disabled{color:var(--fg-white, #fff);background:var(--bg-white-10-opacity)}._black_yyut6_35{color:var(--fg-black);background:var(--bg-black-5-opacity)}@media(hover:hover)and (pointer:fine){._black_yyut6_35:hover:not(:disabled){background:var(--bg-black-15-opacity)}}._black_yyut6_35:disabled{color:var(--fg-black);background:var(--bg-black-5-opacity)}._icon_1cxib_1{display:inline-block;flex-shrink:0;transition:all .2s ease-in-out;vertical-align:middle}@keyframes _fadeIn_1i5fg_1{0%{opacity:0}to{opacity:1}}@keyframes _slideInFromRight_1i5fg_1{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}@keyframes _slideInFromLeft_1i5fg_1{0%{opacity:0;transform:translate(-100%)}to{opacity:1;transform:translate(0)}}._overlay_1i5fg_29{position:fixed;z-index:101;background:var(--bg-black-80-opacity);-webkit-backdrop-filter:blur(.4rem);backdrop-filter:blur(.4rem);animation:_fadeIn_1i5fg_1 .2s ease-out;inset:0}._drawer_1i5fg_38{position:fixed;top:0;bottom:0;z-index:102;display:flex;flex-direction:column;width:57.1rem;max-width:90vw;max-height:100vh;padding:0 .4rem 0 0;background:var(--BG-White)}@media(max-width:600px){._drawer_1i5fg_38{width:100%;max-width:unset;height:100%;max-height:calc(100dvh - 4rem)}}._drawer_1i5fg_38._right_1i5fg_59{right:0;border-radius:2rem 0 0 2rem;animation:_slideInFromRight_1i5fg_1 .2s ease-out}@media(max-width:600px){._drawer_1i5fg_38._right_1i5fg_59{border-radius:2rem 2rem 0 0}}._drawer_1i5fg_38._left_1i5fg_69{left:0;border-radius:0 2rem 2rem 0;animation:_slideInFromLeft_1i5fg_1 .2s ease-out}@media(max-width:600px){._drawer_1i5fg_38._left_1i5fg_69{border-radius:2rem 2rem 0 0}}._drawer_1i5fg_38 .drawerFormFooter{position:relative;flex-shrink:0;margin-top:auto;padding-top:5.2rem;padding-bottom:3.2rem;background:var(--BG-White)}._drawer_1i5fg_38 .drawerFormFooter:before{position:absolute;top:2rem;right:-3.2rem;left:-3.2rem;display:block;height:1px;background:var(--bg-black-5-opacity);content:""}@media(max-width:600px){._drawer_1i5fg_38 .drawerFormFooter:before{top:2rem;left:-2rem}}._drawer_1i5fg_38 .drawerFormFooter [class*=_button]{width:100%}._drawer_1i5fg_38 .drawerForm{display:flex;flex:1;flex-direction:column}._drawer_1i5fg_38 .drawerFormFields{display:flex;flex:1;flex-direction:column;gap:2.4rem}._header_1i5fg_118{display:flex;flex-shrink:0;flex-direction:column;gap:1.2rem;padding:3.2rem 2.8rem 3.2rem 3.2rem}@media(max-width:600px){._header_1i5fg_118{gap:.8rem;padding:1.6rem 3.8rem 1.6rem 2rem;border-bottom:1px solid var(--bg-black-5-opacity)}}._heading_1i5fg_133{font-size:2.8rem;font-weight:500;line-height:1.21;color:var(--fg-black)}@media(max-width:600px){._heading_1i5fg_133{font-size:2rem;line-height:1.4}}._heading_1i5fg_133._centered_1i5fg_145{text-align:center}@media(max-width:600px){._heading_1i5fg_133._centered_1i5fg_145{margin-left:2.8rem}}._description_1i5fg_154{font-size:1.6rem;line-height:2.4rem;color:var(--fg-black-70-opacity)}@media(max-width:600px){._description_1i5fg_154{font-size:1.4rem;line-height:2.2rem}}._description_1i5fg_154._centered_1i5fg_145{text-align:center}@media(max-width:600px){._description_1i5fg_154._centered_1i5fg_145{margin-left:2.8rem}}._scrollableContainer_1i5fg_174{display:flex;flex:1;min-height:0;padding:0 2.8rem 0 3.2rem;overflow-x:hidden;overflow-y:auto}@media(max-width:600px){._scrollableContainer_1i5fg_174{padding:2rem 1.6rem 0 2rem}}._scrollableContainer_1i5fg_174::-webkit-scrollbar{width:.4rem}._scrollableContainer_1i5fg_174::-webkit-scrollbar-track{background:transparent}._scrollableContainer_1i5fg_174::-webkit-scrollbar-thumb{background:var(--bg-black-20-opacity);border-radius:.2rem}._scrollableContainer_1i5fg_174 .fullWidth{width:100%}._closeButton_1i5fg_201{position:absolute;top:1.2rem;left:-5.2rem;width:3rem;height:3rem;border-radius:50%;-webkit-backdrop-filter:blur(60px);backdrop-filter:blur(60px);transition:all .2s ease}@media(max-width:600px){._closeButton_1i5fg_201{top:.8rem;right:.6rem;left:unset;color:var(--Text-Black);background:var(--bg-black-5-opacity)}}._closeButton_1i5fg_201 svg{width:1.2rem;height:1.2rem}._footer_1i5fg_225{display:flex;flex-shrink:0;gap:1.2rem;margin-top:2.4rem;padding-top:2.4rem;border-top:.1rem solid var(--border-default)}@media(max-width:600px){._footer_1i5fg_225{flex-direction:column}}._link_gxfgk_1{font-weight:400;text-decoration:none;text-decoration-color:transparent;transition:all .3s ease}._link_gxfgk_1:active:not(:disabled){opacity:.7;transition:opacity .1s ease}._link_gxfgk_1._active_gxfgk_11{color:var(--Text-Light-Gold);pointer-events:none}._xs_gxfgk_16{font-size:1.2rem;line-height:1.67}._s_gxfgk_21{font-size:1.4rem;line-height:1.57}._m_gxfgk_26{font-size:1.6rem;line-height:1.5}@media(max-width:600px){._m_gxfgk_26{font-size:1.4rem;line-height:1.57}}._primary_gxfgk_37{color:var(--fg-black)}@media(hover:hover)and (pointer:fine){._primary_gxfgk_37:hover:not(:disabled){color:var(--Text-Light-Gold)}}._secondary_gxfgk_46{color:var(--fg-black-40-opacity)}@media(hover:hover)and (pointer:fine){._secondary_gxfgk_46:hover:not(:disabled){color:var(--fg-black)}}._footer_19j1m_1{background-color:var(--bg-beiege)}._footer_19j1m_1 ._privacyLink_19j1m_4{font-weight:500}._wrapper_19j1m_8{margin:0 auto;padding:4.8rem}@media(max-width:850px){._wrapper_19j1m_8{padding:4rem 2rem}}._logo_19j1m_18 svg{width:7rem;height:2.6rem}._top_19j1m_23{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:4rem;padding-bottom:2.5rem;border-bottom:1px solid var(--bg-black-5-opacity)}@media(max-width:850px){._top_19j1m_23{flex-direction:column;padding-bottom:3.2rem}}@media(max-width:600px){._top_19j1m_23{align-items:center;text-align:center}}._topLeft_19j1m_45{display:flex;flex-direction:column;gap:.6rem}._description_19j1m_51{max-width:42rem;font-size:1.4rem;line-height:1.57;color:var(--fg-black-70-opacity)}@media(max-width:850px){._description_19j1m_51 br{display:none}}@media(max-width:600px){._description_19j1m_51{max-width:33rem}}._rightContainer_19j1m_68{display:grid;grid-template-columns:repeat(auto-fit,minmax(18rem,1fr));gap:1.2rem;max-width:60rem}._rightContainer_19j1m_68:has(>:nth-child(2):last-child){grid-template-columns:repeat(2,1fr)}._rightContainer_19j1m_68:has(>:only-child){grid-template-columns:1fr}@media(max-width:600px){._rightContainer_19j1m_68{grid-template-columns:1fr;width:100%;max-width:none}}._bottom_19j1m_88{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:2rem;padding-top:2.4rem}@media(max-width:850px){._bottom_19j1m_88{flex-direction:column-reverse;align-items:stretch;padding-top:3.2rem}}@media(max-width:600px){._bottom_19j1m_88{gap:3.2rem}}._bottomLeft_19j1m_109{display:flex;align-items:center;gap:4.8rem}@media(max-width:850px){._bottomLeft_19j1m_109{justify-content:space-between}}@media(max-width:600px){._bottomLeft_19j1m_109{flex-direction:column-reverse;gap:1.2rem}}._copyright_19j1m_126{font-size:1.2rem;font-weight:500;line-height:1.67;color:var(--fg-black-40-opacity)}._bottomRight_19j1m_133{display:flex;align-items:center;gap:1.6rem}@media(max-width:850px){._bottomRight_19j1m_133{justify-content:space-between}}@media(max-width:600px){._bottomRight_19j1m_133{flex-direction:column;gap:1.2rem}}._supportText_19j1m_150{font-size:1.4rem;font-weight:500;line-height:1.57;color:var(--fg-black-70-opacity)}._socialButtons_19j1m_157{display:flex;gap:1.2rem}._socialButtons_19j1m_157 ._socialButton_19j1m_157{background:var(--bg-black-30-opacity)}._socialButtons_19j1m_157 ._socialButton_19j1m_157 svg{width:1.6rem;height:1.6rem}._tgIcon_19j1m_169{position:relative;top:1px;left:-1px}._heading_a5m03_1{font-weight:500}._xxs_a5m03_5{font-size:2rem;line-height:1.5}._xs_a5m03_10{font-size:3.2rem;line-height:1.25}._s_a5m03_15{font-size:3.6rem;line-height:1.22}@media(max-width:600px){._s_a5m03_15{font-size:2.8rem;line-height:1.14}}._m_a5m03_26{font-size:4rem;line-height:1.25}@media(max-width:850px){._m_a5m03_26{font-size:3.8rem}}@media(max-width:600px){._m_a5m03_26{font-size:2.8rem;line-height:1.28}}._l_a5m03_42{font-size:4.8rem;line-height:1.125}._dark_a5m03_47{color:var(--fg-black)}._light_a5m03_51{color:var(--fg-white)}._container_rd81k_1{display:flex;flex-direction:column;gap:1rem}._label_rd81k_7{display:block;font-size:1.4rem;font-weight:500;line-height:1.57;color:var(--fg-black-40-opacity)}._previewGrid_rd81k_15{display:flex;flex-wrap:wrap;gap:.8rem}._previewItem_rd81k_21{position:relative;width:calc(33.333% - .533rem);overflow:hidden;background:var(--BG-Light-Gray);border-radius:1.6rem;aspect-ratio:1}._previewItem_rd81k_21:hover ._deleteButton_rd81k_29{opacity:1}._previewImage_rd81k_33{width:100%;height:100%;object-fit:cover}._deleteButton_rd81k_29{position:absolute;top:.8rem;right:.8rem;display:flex;justify-content:center;align-items:center;width:2.4rem;height:2.4rem;color:var(--BG-White);background:#0000008f;border:none;border-radius:50%;opacity:0;transition:opacity .2s ease;cursor:pointer}._deleteButton_rd81k_29 svg{width:1.6rem;height:1.6rem}._deleteButton_rd81k_29:hover:not(:disabled){background:#000000b3}._deleteButton_rd81k_29:disabled{opacity:.5;cursor:not-allowed}._uploadButton_rd81k_68{display:flex;justify-content:center;align-items:center;gap:.8rem;width:100%;padding:.8rem 1.6rem;background:#1b2b2b0d;border:none;border-radius:.8rem;transition:background .2s ease;cursor:pointer}._uploadButton_rd81k_68 svg{width:1.6rem;height:1.6rem;color:var(--fg-black-70-opacity)}._uploadButton_rd81k_68:hover:not(:disabled){background:#1b2b2b14}._uploadButton_rd81k_68:disabled{opacity:.5;cursor:not-allowed}._uploadButtonText_rd81k_94{font-size:1.4rem;font-weight:500;line-height:1.57;text-align:center;white-space:nowrap;color:var(--fg-black-70-opacity)}._error_rd81k_103{display:block;margin-top:-.4rem;font-size:1.2rem;line-height:1.33;color:var(--Error-Red)}._wrapper_gkzyi_1{position:relative;display:flex;flex-direction:column;gap:1rem;width:100%}._label_gkzyi_9{display:inline-block;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black)}._container_gkzyi_17{position:relative;display:flex;width:100%}._input_gkzyi_23{flex:1;width:100%;padding:1.2rem;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black);background:var(--bg-black-3-opacity);border:1px solid var(--stroke-black-5);border-radius:.8rem;outline:none;transition:all .3s ease}._input_gkzyi_23::placeholder{color:var(--fg-black-40-opacity)}@media(hover:hover)and (pointer:fine){._input_gkzyi_23:hover:not(:disabled){border-color:var(--Text-Green)}}._input_gkzyi_23:focus{border-color:var(--Text-Green);box-shadow:0 0 0 .3rem #d3dad880}._input_gkzyi_23:disabled{color:var(--fg-black-30-opacity);border-color:var(--bg-black-3-opacity);cursor:not-allowed}._input_gkzyi_23:disabled::placeholder{color:var(--fg-black-30-opacity)}._input_gkzyi_23._error_gkzyi_57:not(:focus){background:var(--system-colours-error-10-opacity);border-color:var(--System-Colours-Error)}._clearButton_gkzyi_62{position:absolute;top:50%;right:1.2rem;display:flex;justify-content:center;align-items:center;width:1.6rem;height:1.6rem;padding:0;color:var(--fg-black);background-color:var(--bg-black-10-opacity);border:none;border-radius:50%;transform:translateY(-50%);transition:background-color .3s ease;cursor:pointer}@media(hover:hover)and (pointer:fine){._clearButton_gkzyi_62:hover:not(:disabled){background-color:var(--bg-black-15-opacity)}}._clearButton_gkzyi_62:active{transform:translateY(-50%) scale(.98)}._clearButton_gkzyi_62 svg{width:8px;height:8px}._errorText_gkzyi_93{position:absolute;top:100%;right:0;left:0;margin-top:.2rem;overflow:hidden;font-size:11px;font-weight:500;line-height:1.8rem;text-align:left;white-space:nowrap;color:var(--System-Colours-Error);text-overflow:ellipsis}@media(max-width:600px){._errorText_gkzyi_93{font-size:10px}}._overlay_1drti_1{position:fixed;z-index:101;background:var(--bg-black-80-opacity);-webkit-backdrop-filter:blur(.4rem);backdrop-filter:blur(.4rem);animation:_fadeIn_1drti_1 .2s ease-out;inset:0}@keyframes _fadeIn_1drti_1{0%{opacity:0}to{opacity:1}}._modal_1drti_18{position:fixed;top:50%;left:50%;z-index:102;display:flex;flex-direction:column;width:40rem;max-width:90vw;max-height:calc(100vh - 17rem);padding:2.4rem .4rem 2.4rem 2.4rem;background:var(--bg-white);border-radius:2rem;transform:translate(-50%,-50%);animation:_slideIn_1drti_1 .2s ease-out}@media(min-height:1080px)and (min-width:1200px){._modal_1drti_18{max-height:90rem}}@media(max-width:600px){._modal_1drti_18{max-width:calc(100% - 4rem);max-height:calc(100dvh - 4rem);padding:2.4rem .4rem 2.4rem 2rem}}@keyframes _slideIn_1drti_1{0%{opacity:0;transform:translate(-50%,-48%)}to{opacity:1;transform:translate(-50%,-50%)}}._header_1drti_57{display:flex;flex-shrink:0;flex-direction:column;gap:1.2rem;margin-right:2rem;margin-bottom:4rem}@media(max-width:600px){._header_1drti_57{gap:.8rem;margin-right:4.4rem;margin-bottom:3.2rem}}._heading_1drti_73{font-size:2.4rem;font-weight:500;line-height:3.2rem;color:var(--fg-black)}@media(max-width:600px){._heading_1drti_73{font-size:2rem;line-height:2.8rem}}._heading_1drti_73._centered_1drti_85{text-align:center}@media(max-width:600px){._heading_1drti_73._centered_1drti_85{margin-left:2.8rem}}._description_1drti_94{font-size:1.6rem;line-height:2.4rem;color:var(--fg-black-70-opacity)}@media(max-width:600px){._description_1drti_94{font-size:1.4rem;line-height:2.2rem}}._description_1drti_94._centered_1drti_85{text-align:center}._scrollableContainer_1drti_109{flex:1;min-height:0;padding-right:2rem;overflow-x:hidden;overflow-y:auto}@media(max-width:600px){._scrollableContainer_1drti_109{padding-right:1.6rem}}._scrollableContainer_1drti_109::-webkit-scrollbar{width:.4rem}._scrollableContainer_1drti_109::-webkit-scrollbar-track{background:transparent}._scrollableContainer_1drti_109::-webkit-scrollbar-thumb{background:var(--bg-black-20-opacity);border-radius:.2rem}._scrollableContainer_1drti_109::-webkit-scrollbar-thumb:hover{background:var(--bg-black-30-opacity)}._closeButton_1drti_135{position:absolute;top:-2.4rem;right:-4rem}@media(max-width:600px){._closeButton_1drti_135{top:.8rem;right:.8rem;color:var(--fg-black);background:var(--bg-black-5-opacity)}}._wrapper_1a52j_1{display:flex;flex-direction:column;gap:1rem;width:100%}._label_1a52j_8{display:inline-block;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black)}._container_1a52j_16{position:relative;width:100%}._input_1a52j_21{display:none}._uploadBox_1a52j_25{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;height:12.9rem;overflow:hidden;background:var(--bg-black-5-opacity);border-radius:1.6rem;transition:all .3s ease;cursor:pointer}@media(hover:hover){._uploadBox_1a52j_25:hover{background:var(--bg-black-10-opacity)}}._uploadBox_1a52j_25:active{transform:scale(.98)}._uploadBox_1a52j_25._hasPreview_1a52j_46{background:transparent}._uploadBox_1a52j_25._error_1a52j_49{background:var(--system-colours-error-10-opacity);border:1px solid var(--System-Colours-Error)}._placeholder_1a52j_54{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:.8rem}._icon_1a52j_62{display:flex;justify-content:center;align-items:center;width:2.4rem;height:2.4rem;color:var(--bg-black-30-opacity)}._icon_1a52j_62 svg{width:100%;height:100%}._placeholderText_1a52j_75{font-size:1.4rem;font-weight:400;line-height:2.2rem;text-align:center;color:var(--bg-black-30-opacity)}._preview_1a52j_83{display:flex;justify-content:center;align-items:center;width:100%;height:100%}._previewImage_1a52j_91{width:100%;height:100%;border-radius:1.6rem;object-fit:cover}._errorText_1a52j_98{position:absolute;top:100%;right:0;left:0;margin-top:.2rem;overflow:hidden;font-size:11px;font-weight:500;line-height:1.8rem;text-align:left;white-space:nowrap;color:var(--System-Colours-Error);text-overflow:ellipsis}@media(max-width:600px){._errorText_1a52j_98{font-size:10px}}._root_b6i7f_1{display:flex;flex-direction:column;gap:1rem}._label_b6i7f_7{display:inline-block;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black)}._group_b6i7f_15{display:flex;flex-direction:column;gap:.8rem}._item_b6i7f_21{display:flex;align-items:center;gap:.6rem}._radio_b6i7f_27{position:relative;flex-shrink:0;box-sizing:border-box;width:1.6rem;height:1.6rem;background:transparent;border:1px solid var(--FG-Gold);border-radius:50%;transition:all .2s ease;cursor:pointer;all:unset}._radio_b6i7f_27:hover:not(:disabled){background:#c6a06426}._radio_b6i7f_27:active:not(:disabled){transform:scale(.95)}._radio_b6i7f_27[data-state=checked]{border-color:var(--FG-Gold)}._radio_b6i7f_27:disabled{opacity:.5;cursor:not-allowed}._indicator_b6i7f_54{position:absolute;top:50%;left:50%;width:.6rem;height:.6rem;background:var(--Text-Gold);border-radius:50%;transform:translate(-50%,-50%)}._itemLabel_b6i7f_65{font-size:1.4rem;font-weight:400;line-height:2.2rem;color:#000000b3;cursor:pointer}._item_b6i7f_21:has(._radio_b6i7f_27:disabled) ._itemLabel_b6i7f_65{opacity:.5;cursor:not-allowed}._errorText_b6i7f_77{position:absolute;top:100%;right:0;left:0;margin-top:.2rem;overflow:hidden;font-size:11px;font-weight:500;line-height:1.8rem;text-align:left;white-space:nowrap;color:var(--System-Colours-Error);text-overflow:ellipsis}@media(max-width:600px){._errorText_b6i7f_77{font-size:10px}}._root_1qyg8_1{display:flex;flex-direction:column;gap:1rem;width:100%}._label_1qyg8_8{display:inline-block;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black)}._trigger_1qyg8_16{position:relative;display:flex;justify-content:space-between;align-items:center;width:100%;min-height:4.6rem;padding:1.2rem;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black);background:var(--bg-black-3-opacity);border:1px solid var(--stroke-black-5);border-radius:.8rem;outline:none;transition:all .3s ease;cursor:pointer}._trigger_1qyg8_16:hover:not(:disabled){border-color:var(--Text-Green)}._trigger_1qyg8_16[data-placeholder]{color:var(--fg-black-40-opacity)}._trigger_1qyg8_16:disabled{color:var(--fg-black-30-opacity);border-color:var(--bg-black-3-opacity);cursor:not-allowed}._trigger_1qyg8_16._error_1qyg8_46:not(:focus){background:var(--system-colours-error-10-opacity);border-color:var(--System-Colours-Error)}._icon_1qyg8_51{flex-shrink:0;width:2rem;height:2rem;color:var(--fg-black)}._content_1qyg8_58{z-index:1000;width:var(--radix-select-trigger-width);max-height:300px;padding:.4rem;overflow-y:auto;background:var(--BG-White);border:1px solid var(--bg-black-10-opacity);border-radius:.8rem;box-shadow:0 4px 12px #00000014;animation:_fadeIn_1qyg8_1 .15s ease}._viewport_1qyg8_71{padding:0}._item_1qyg8_75{padding:.8rem 1.2rem;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black);border-radius:.6rem;outline:none;transition:all .15s ease;cursor:pointer}._item_1qyg8_75:hover:not([data-disabled]){background:var(--bg-black-5-opacity)}._item_1qyg8_75[data-highlighted]{background:var(--bg-black-5-opacity)}._item_1qyg8_75[data-state=checked]{color:var(--Text-Gold)}._item_1qyg8_75:active:not([data-disabled]){transform:scale(.98)}._errorText_1qyg8_99{position:absolute;top:100%;right:0;left:0;margin-top:.2rem;overflow:hidden;font-size:11px;font-weight:500;line-height:1.8rem;text-align:left;white-space:nowrap;color:var(--System-Colours-Error);text-overflow:ellipsis}@media(max-width:600px){._errorText_1qyg8_99{font-size:10px}}@keyframes _fadeIn_1qyg8_1{0%{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}._text_18ys9_1{font-weight:400}._s_18ys9_5{font-size:1.4rem;line-height:1.57}._m_18ys9_10{font-size:1.6rem;line-height:1.5}@media(max-width:600px){._m_18ys9_10{font-size:1.4rem;line-height:1.57}}._dark_18ys9_21{color:var(--fg-black-70-opacity)}._light_18ys9_25{color:var(--fg-white-70-opacity)}._wrapper_gxw2b_1{position:relative;display:flex;flex-direction:column}._label_gxw2b_7{display:block;margin-bottom:1rem;font-size:1.4rem;font-weight:500;line-height:1.57;text-align:left;color:var(--fg-black-40-opacity)}._container_gxw2b_17{position:relative}._textarea_gxw2b_21{width:100%;font-family:inherit;color:var(--Text-Black);background:var(--bg-black-3-opacity);border:1px solid var(--stroke-black-5-opacity);border-radius:.8rem;outline:none;transition:all .2s ease;resize:vertical}._textarea_gxw2b_21:hover:not(:disabled){border-color:var(--stroke-black-15-opacity)}._textarea_gxw2b_21:focus{color:var(--Text-Black);background:var(--BG-White);border-color:var(--stroke-black-15-opacity)}._textarea_gxw2b_21:not(:placeholder-shown){background:var(--BG-White)}._textarea_gxw2b_21::placeholder{color:var(--fg-black-40-opacity)}._textarea_gxw2b_21:disabled{opacity:.6;cursor:not-allowed}._textarea_gxw2b_21._error_gxw2b_50:not(:focus){background:var(--system-colours-error-10-opacity);border-color:var(--System-Colours-Error)}._textarea_gxw2b_21._s_gxw2b_54{min-height:10rem;padding:.8rem 3.2rem .8rem 1.2rem;font-size:1.3rem;font-weight:400;line-height:1.5}._textarea_gxw2b_21._m_gxw2b_61{min-height:15rem;padding:1rem 3.2rem 1rem 1.4rem;font-size:1.4rem;font-weight:400;line-height:1.57}._errorText_gxw2b_69{position:absolute;top:100%;left:.8rem;margin-top:.4rem;overflow:hidden;font-size:1.1rem;line-height:1;text-align:left;white-space:nowrap;color:var(--System-Colours-Error);text-overflow:ellipsis}@media(max-width:600px){._errorText_gxw2b_69{font-size:1rem}}
|
|
1
|
+
:root{--general-inline-padding: 8rem;--general-block-padding: 10rem}@media only screen and (max-width:1280px){:root{--general-inline-padding: 2.4rem;--general-block-padding: 8rem}}@media only screen and (max-width:769px){:root{--general-inline-padding: 2rem;--general-block-padding: 6rem}}:root{--header-height: 6.9rem}@media only screen and (max-width:766px){:root{--header-height: 5.7rem}}:root{--indent-modificator: 1;--content-width: 144rem;--radix-select-trigger-width: auto;--general-wrapper-padding: var(--general-inline-padding);--BG-Black: #000;--FG-Black: #000;--fg-black: #000;--fg-black-10-opacity: rgba(0, 0, 0, .1);--fg-black-20-opacity: rgba(0, 0, 0, .2);--fg-black-30-opacity: rgba(0, 0, 0, .3);--fg-black-40-opacity: rgba(0, 0, 0, .4);--fg-black-60-opacity: rgba(0, 0, 0, .6);--fg-black-70-opacity: rgba(0, 0, 0, .7);--fg-black-80-opacity: rgba(0, 0, 0, .8);--Text-Black: #000;--Text-Black-40-opacity: rgba(0, 0, 0, .4);--Text-Black-60-opacity: rgba(0, 0, 0, .6);--Text-Black-80-opacity: rgba(0, 0, 0, .8);--bg-white: #fff;--BG-White: #fff;--bg-white-10-opacity: rgba(255, 255, 255, .1);--bg-white-20-opacity: rgba(255, 255, 255, .2);--bg-white-30-opacity: rgba(255, 255, 255, .3);--bg-white-80-opacity: rgba(255, 255, 255, .8);--fg-white: #fff;--fg-white-main: #fff;--fg-white-70-opacity: rgba(255, 255, 255, .7);--text-white-70-opacity: rgba(255, 255, 255, .7);--Text-White: #fff;--bg-black-3-opacity: rgba(0, 0, 0, .03);--bg-black-5-opacity: rgba(0, 0, 0, .05);--bg-black-10-opacity: rgba(0, 0, 0, .1);--bg-black-15-opacity: rgba(0, 0, 0, .15);--bg-black-20-opacity: rgba(0, 0, 0, .2);--bg-black-30-opacity: rgba(0, 0, 0, .3);--bg-black-70-opacity: rgba(0, 0, 0, .7);--bg-black-80-opacity: rgba(0, 0, 0, .8);--bg-beiege: #F7F6F4;--bg-dark-brown: #0D0C0C;--fg-blue: #00A4E4;--fg-link: #00A4E4;--Text-Blue: #00A4E4;--Primary-Blue: #00A4E4;--BG-Grey: #EEECEA;--BG-Light-Gray: #F5F5F5;--Text-Gray: #9E9E9E;--Text-Dark-Gray: #616161;--stroke-black-5: rgba(0, 0, 0, .05);--stroke-black-5-opacity: rgba(0, 0, 0, .05);--stroke-black-10-opacity: rgba(0, 0, 0, .1);--stroke-black-15-opacity: rgba(0, 0, 0, .15);--stroke-black-20-opacity: rgba(0, 0, 0, .2);--System-Colours-Error: #F92E1F;--Error-Red: #F92E1F;--System-Colours-Success: #52AF01;--system-colours-error-10-opacity: rgba(249, 46, 31, .1);--BG-Accent-Gold: #C6A064;--BG-Light-Gold: #D9B780;--Text-Gold: #CEAC75;--FG-Gold: #CEAC75;--FG-Light-Gold: #F0CE99;--Text-Light-Gold: #F0CE99;--bg-gold-10-opacity: rgba(198, 160, 100, .1);--bg-gold-15-opacity: rgba(198, 160, 100, .15);--bg-gold-20-opacity: rgba(198, 160, 100, .2);--bg-gold-30-opacity: rgba(198, 160, 100, .3);--Text-Gold-30-opacity: rgba(206, 172, 117, .3);--Text-Gold-70-opacity: rgba(206, 172, 117, .7);--BG-Accent-Green:#1B2B2B;--BG-Green: #273C3F;--bg-green-70-opacity: rgba(74, 107, 111, .7);--bg-green-80-opacity: rgba(74, 107, 111, .8);--BG-Light-Green: #3A5256;--Text-Green: #4A6B6F;--bg-green-5-opacity: rgba(39, 60, 63, .05);--bg-green-10-opacity: rgba(39, 60, 63, .1);--bg-green-15-opacity: rgba(39, 60, 63, .15);--bg-green-30-opacity: rgba(39, 60, 63, .3);--Text-green-70-opacity: rgba(74, 107, 111, .7)}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}*{-webkit-tap-highlight-color:rgba(255,255,255,0)}input,button,textarea,select{font:inherit;border:0;border-radius:0;appearance:none}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{margin:0;appearance:none}a{text-decoration:none;color:inherit}ul,ol{list-style-type:none}button{cursor:pointer;-webkit-user-select:none;user-select:none}img{display:block;max-width:100%}*:focus{outline:none}.section-padding{padding-block:var(--general-block-padding)}.section-padding-top{padding-block-start:var(--general-block-padding)}.section-padding-bottom{padding-block-end:var(--general-block-padding)}html,body{height:100%;font-size:10px}html{scroll-behavior:smooth}body{font-family:Inter Tight,Inter,-apple-system,BlinkMacSystemFont,sans-serif;color:var(--fg-black);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}._avatar_1h8d2_1{position:relative;display:flex;flex-shrink:0;justify-content:center;align-items:center;overflow:hidden;background:linear-gradient(135deg,#4a6b6f,#7a9b9f,#4a6b6f);border-radius:50%}._xs_1h8d2_12{width:2.4rem;height:2.4rem;font-size:1rem}._s_1h8d2_18{width:3.2rem;height:3.2rem;font-size:1.2rem}._m_1h8d2_24{width:4rem;height:4rem;font-size:1.4rem}._l_1h8d2_30{width:5.6rem;height:5.6rem;font-size:2rem}._xl_1h8d2_36{width:8rem;height:8rem;font-size:2.8rem}._xxl_1h8d2_42{width:10rem;height:10rem;font-size:3.2rem}._image_1h8d2_48{display:block;width:100%;height:100%;object-fit:cover}._initials_1h8d2_55{font-weight:500;line-height:1;color:var(--fg-white);-webkit-user-select:none;user-select:none}._icon_1cxib_1{display:inline-block;flex-shrink:0;transition:all .2s ease-in-out;vertical-align:middle}._root_1arfy_1{display:flex}._list_1arfy_5{display:flex;align-items:center;margin:0;padding:0;list-style:none}._breadcrumb_1arfy_13{display:flex;align-items:center;font-size:1.4rem;line-height:2.2rem}._link_1arfy_20{text-decoration:none;color:var(--fg-black-40-opacity);transition:color .3s ease}@media(hover:hover)and (pointer:fine){._link_1arfy_20:hover:not(:disabled){color:var(--fg-black)}}._item_1arfy_31{font-weight:400;color:var(--fg-black-40-opacity)}._itemLast_1arfy_35{font-weight:600;color:var(--fg-black)}._separator_1arfy_40{display:flex;align-items:center;margin:0 .8rem;color:var(--fg-black-40-opacity)}._separator_1arfy_40 svg{width:1.2rem;height:1.2rem}._button_8pv9u_1{position:relative;display:inline-flex;justify-content:center;align-items:center;font-weight:600;background:none;border:none;transition:all .3s ease;cursor:pointer}._button_8pv9u_1:active:not(:disabled){opacity:.7;transition:opacity .1s ease}._button_8pv9u_1:disabled{cursor:not-allowed}._xs_8pv9u_20{padding:.8rem 1.2rem;font-size:14px;line-height:2.2rem;border-radius:.8rem}._xs_8pv9u_20._icon_8pv9u_26{padding:.8rem}._s_8pv9u_30{padding:1rem 1.2rem;font-size:14px;line-height:2.2rem;border-radius:.8rem}._s_8pv9u_30._icon_8pv9u_26{padding:1rem}._m_8pv9u_40{padding:1.2rem;font-size:14px;line-height:2.2rem;border-radius:1rem}._m_8pv9u_40._icon_8pv9u_26{padding:1.2rem}._l_8pv9u_50{padding:1.6rem 1.2rem;font-size:16px;line-height:2.4rem;border-radius:1.2rem}._l_8pv9u_50._icon_8pv9u_26{padding:1.6rem}._gold_8pv9u_60._main_8pv9u_60{color:var(--Text-White);background-color:var(--BG-Accent-Gold)}@media(hover:hover)and (pointer:fine){._gold_8pv9u_60._main_8pv9u_60:hover:not(:disabled){background-color:var(--BG-Light-Gold)}}._gold_8pv9u_60._main_8pv9u_60:disabled{color:var(--Text-White);background-color:var(--bg-gold-30-opacity)}._gold_8pv9u_60._secondary_8pv9u_73{color:var(--Text-Gold);background-color:var(--bg-gold-10-opacity)}@media(hover:hover)and (pointer:fine){._gold_8pv9u_60._secondary_8pv9u_73:hover:not(:disabled){background-color:var(--bg-gold-20-opacity)}}._gold_8pv9u_60._secondary_8pv9u_73:disabled{color:var(--Text-Gold-30-opacity);background-color:var(--bg-gold-10-opacity)}._gold_8pv9u_60._tertiary_8pv9u_86{color:var(--Text-Gold);background-color:transparent}@media(hover:hover)and (pointer:fine){._gold_8pv9u_60._tertiary_8pv9u_86:hover:not(:disabled){background-color:var(--bg-gold-10-opacity)}}._gold_8pv9u_60._tertiary_8pv9u_86:disabled{color:var(--Text-Gold);background-color:transparent;opacity:.4}._green_8pv9u_101._main_8pv9u_60{color:var(--Text-White);background-color:var(--BG-Green)}@media(hover:hover)and (pointer:fine){._green_8pv9u_101._main_8pv9u_60:hover:not(:disabled){background-color:var(--BG-Light-Green)}}._green_8pv9u_101._main_8pv9u_60:disabled{color:var(--Text-White);background-color:var(--bg-green-30-opacity)}._green_8pv9u_101._secondary_8pv9u_73{color:var(--Text-Green);background-color:var(--bg-green-5-opacity)}@media(hover:hover)and (pointer:fine){._green_8pv9u_101._secondary_8pv9u_73:hover:not(:disabled){background-color:var(--bg-green-15-opacity)}}._green_8pv9u_101._secondary_8pv9u_73:disabled{color:var(--bg-green-30-opacity);background-color:var(--bg-green-10-opacity)}._green_8pv9u_101._tertiary_8pv9u_86{color:var(--Text-Green);background-color:transparent}@media(hover:hover)and (pointer:fine){._green_8pv9u_101._tertiary_8pv9u_86:hover:not(:disabled){background-color:var(--bg-green-5-opacity)}}._green_8pv9u_101._tertiary_8pv9u_86:disabled{color:var(--Text-Green);background-color:transparent;opacity:.4}._error_8pv9u_142._main_8pv9u_60{color:var(--Text-White);background-color:var(--System-Colours-Error)}@media(hover:hover)and (pointer:fine){._error_8pv9u_142._main_8pv9u_60:hover:not(:disabled){background-color:#ff4536}}._error_8pv9u_142._main_8pv9u_60:disabled{color:var(--Text-White);background-color:#f92e1f4d}._error_8pv9u_142._secondary_8pv9u_73{color:var(--System-Colours-Error);background-color:#f92e1f0d}@media(hover:hover)and (pointer:fine){._error_8pv9u_142._secondary_8pv9u_73:hover:not(:disabled){background-color:#f92e1f14}}._error_8pv9u_142._secondary_8pv9u_73:disabled{color:#f92e1f4d;background-color:#f92e1f0d}._error_8pv9u_142._tertiary_8pv9u_86{color:var(--System-Colours-Error);background-color:transparent}@media(hover:hover)and (pointer:fine){._error_8pv9u_142._tertiary_8pv9u_86:hover:not(:disabled){background-color:#f92e1f0d}}._error_8pv9u_142._tertiary_8pv9u_86:disabled{color:var(--System-Colours-Error);background-color:transparent;opacity:.4}._content_8pv9u_183{display:flex;justify-content:center;align-items:center;gap:1rem}._loading_8pv9u_190 ._content_8pv9u_183{opacity:0}._loader_8pv9u_194{position:absolute;width:1.6rem;height:1.6rem;border:.2rem solid currentcolor;border-radius:50%;animation:_spin_8pv9u_1 .6s linear infinite;border-top-color:transparent}@keyframes _spin_8pv9u_1{to{transform:rotate(360deg)}}._button_yyut6_1{position:relative;display:inline-flex;justify-content:center;align-items:center;padding:.8rem;border:none;border-radius:10rem;-webkit-backdrop-filter:blur(6rem);backdrop-filter:blur(6rem);transition:all .3s ease;cursor:pointer}._button_yyut6_1:active:not(:disabled){opacity:.7;transition:opacity .1s ease}._button_yyut6_1:disabled{cursor:not-allowed}._white_yyut6_21{color:var(--fg-white, #fff);background:var(--bg-white-10-opacity)}@media(hover:hover)and (pointer:fine){._white_yyut6_21:hover:not(:disabled){background:var(--bg-white-20-opacity)}}._white_yyut6_21:disabled{color:var(--fg-white, #fff);background:var(--bg-white-10-opacity)}._black_yyut6_35{color:var(--fg-black);background:var(--bg-black-5-opacity)}@media(hover:hover)and (pointer:fine){._black_yyut6_35:hover:not(:disabled){background:var(--bg-black-15-opacity)}}._black_yyut6_35:disabled{color:var(--fg-black);background:var(--bg-black-5-opacity)}@keyframes _fadeIn_1i5fg_1{0%{opacity:0}to{opacity:1}}@keyframes _slideInFromRight_1i5fg_1{0%{opacity:0;transform:translate(100%)}to{opacity:1;transform:translate(0)}}@keyframes _slideInFromLeft_1i5fg_1{0%{opacity:0;transform:translate(-100%)}to{opacity:1;transform:translate(0)}}._overlay_1i5fg_29{position:fixed;z-index:101;background:var(--bg-black-80-opacity);-webkit-backdrop-filter:blur(.4rem);backdrop-filter:blur(.4rem);animation:_fadeIn_1i5fg_1 .2s ease-out;inset:0}._drawer_1i5fg_38{position:fixed;top:0;bottom:0;z-index:102;display:flex;flex-direction:column;width:57.1rem;max-width:90vw;max-height:100vh;padding:0 .4rem 0 0;background:var(--BG-White)}@media(max-width:600px){._drawer_1i5fg_38{width:100%;max-width:unset;height:100%;max-height:calc(100dvh - 4rem)}}._drawer_1i5fg_38._right_1i5fg_59{right:0;border-radius:2rem 0 0 2rem;animation:_slideInFromRight_1i5fg_1 .2s ease-out}@media(max-width:600px){._drawer_1i5fg_38._right_1i5fg_59{border-radius:2rem 2rem 0 0}}._drawer_1i5fg_38._left_1i5fg_69{left:0;border-radius:0 2rem 2rem 0;animation:_slideInFromLeft_1i5fg_1 .2s ease-out}@media(max-width:600px){._drawer_1i5fg_38._left_1i5fg_69{border-radius:2rem 2rem 0 0}}._drawer_1i5fg_38 .drawerFormFooter{position:relative;flex-shrink:0;margin-top:auto;padding-top:5.2rem;padding-bottom:3.2rem;background:var(--BG-White)}._drawer_1i5fg_38 .drawerFormFooter:before{position:absolute;top:2rem;right:-3.2rem;left:-3.2rem;display:block;height:1px;background:var(--bg-black-5-opacity);content:""}@media(max-width:600px){._drawer_1i5fg_38 .drawerFormFooter:before{top:2rem;left:-2rem}}._drawer_1i5fg_38 .drawerFormFooter [class*=_button]{width:100%}._drawer_1i5fg_38 .drawerForm{display:flex;flex:1;flex-direction:column}._drawer_1i5fg_38 .drawerFormFields{display:flex;flex:1;flex-direction:column;gap:2.4rem}._header_1i5fg_118{display:flex;flex-shrink:0;flex-direction:column;gap:1.2rem;padding:3.2rem 2.8rem 3.2rem 3.2rem}@media(max-width:600px){._header_1i5fg_118{gap:.8rem;padding:1.6rem 3.8rem 1.6rem 2rem;border-bottom:1px solid var(--bg-black-5-opacity)}}._heading_1i5fg_133{font-size:2.8rem;font-weight:500;line-height:1.21;color:var(--fg-black)}@media(max-width:600px){._heading_1i5fg_133{font-size:2rem;line-height:1.4}}._heading_1i5fg_133._centered_1i5fg_145{text-align:center}@media(max-width:600px){._heading_1i5fg_133._centered_1i5fg_145{margin-left:2.8rem}}._description_1i5fg_154{font-size:1.6rem;line-height:2.4rem;color:var(--fg-black-70-opacity)}@media(max-width:600px){._description_1i5fg_154{font-size:1.4rem;line-height:2.2rem}}._description_1i5fg_154._centered_1i5fg_145{text-align:center}@media(max-width:600px){._description_1i5fg_154._centered_1i5fg_145{margin-left:2.8rem}}._scrollableContainer_1i5fg_174{display:flex;flex:1;min-height:0;padding:0 2.8rem 0 3.2rem;overflow-x:hidden;overflow-y:auto}@media(max-width:600px){._scrollableContainer_1i5fg_174{padding:2rem 1.6rem 0 2rem}}._scrollableContainer_1i5fg_174::-webkit-scrollbar{width:.4rem}._scrollableContainer_1i5fg_174::-webkit-scrollbar-track{background:transparent}._scrollableContainer_1i5fg_174::-webkit-scrollbar-thumb{background:var(--bg-black-20-opacity);border-radius:.2rem}._scrollableContainer_1i5fg_174 .fullWidth{width:100%}._closeButton_1i5fg_201{position:absolute;top:1.2rem;left:-5.2rem;width:3rem;height:3rem;border-radius:50%;-webkit-backdrop-filter:blur(60px);backdrop-filter:blur(60px);transition:all .2s ease}@media(max-width:600px){._closeButton_1i5fg_201{top:.8rem;right:.6rem;left:unset;color:var(--Text-Black);background:var(--bg-black-5-opacity)}}._closeButton_1i5fg_201 svg{width:1.2rem;height:1.2rem}._footer_1i5fg_225{display:flex;flex-shrink:0;gap:1.2rem;margin-top:2.4rem;padding-top:2.4rem;border-top:.1rem solid var(--border-default)}@media(max-width:600px){._footer_1i5fg_225{flex-direction:column}}._link_gxfgk_1{font-weight:400;text-decoration:none;text-decoration-color:transparent;transition:all .3s ease}._link_gxfgk_1:active:not(:disabled){opacity:.7;transition:opacity .1s ease}._link_gxfgk_1._active_gxfgk_11{color:var(--Text-Light-Gold);pointer-events:none}._xs_gxfgk_16{font-size:1.2rem;line-height:1.67}._s_gxfgk_21{font-size:1.4rem;line-height:1.57}._m_gxfgk_26{font-size:1.6rem;line-height:1.5}@media(max-width:600px){._m_gxfgk_26{font-size:1.4rem;line-height:1.57}}._primary_gxfgk_37{color:var(--fg-black)}@media(hover:hover)and (pointer:fine){._primary_gxfgk_37:hover:not(:disabled){color:var(--Text-Light-Gold)}}._secondary_gxfgk_46{color:var(--fg-black-40-opacity)}@media(hover:hover)and (pointer:fine){._secondary_gxfgk_46:hover:not(:disabled){color:var(--fg-black)}}._footer_19j1m_1{background-color:var(--bg-beiege)}._footer_19j1m_1 ._privacyLink_19j1m_4{font-weight:500}._wrapper_19j1m_8{margin:0 auto;padding:4.8rem}@media(max-width:850px){._wrapper_19j1m_8{padding:4rem 2rem}}._logo_19j1m_18 svg{width:7rem;height:2.6rem}._top_19j1m_23{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:4rem;padding-bottom:2.5rem;border-bottom:1px solid var(--bg-black-5-opacity)}@media(max-width:850px){._top_19j1m_23{flex-direction:column;padding-bottom:3.2rem}}@media(max-width:600px){._top_19j1m_23{align-items:center;text-align:center}}._topLeft_19j1m_45{display:flex;flex-direction:column;gap:.6rem}._description_19j1m_51{max-width:42rem;font-size:1.4rem;line-height:1.57;color:var(--fg-black-70-opacity)}@media(max-width:850px){._description_19j1m_51 br{display:none}}@media(max-width:600px){._description_19j1m_51{max-width:33rem}}._rightContainer_19j1m_68{display:grid;grid-template-columns:repeat(auto-fit,minmax(18rem,1fr));gap:1.2rem;max-width:60rem}._rightContainer_19j1m_68:has(>:nth-child(2):last-child){grid-template-columns:repeat(2,1fr)}._rightContainer_19j1m_68:has(>:only-child){grid-template-columns:1fr}@media(max-width:600px){._rightContainer_19j1m_68{grid-template-columns:1fr;width:100%;max-width:none}}._bottom_19j1m_88{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:2rem;padding-top:2.4rem}@media(max-width:850px){._bottom_19j1m_88{flex-direction:column-reverse;align-items:stretch;padding-top:3.2rem}}@media(max-width:600px){._bottom_19j1m_88{gap:3.2rem}}._bottomLeft_19j1m_109{display:flex;align-items:center;gap:4.8rem}@media(max-width:850px){._bottomLeft_19j1m_109{justify-content:space-between}}@media(max-width:600px){._bottomLeft_19j1m_109{flex-direction:column-reverse;gap:1.2rem}}._copyright_19j1m_126{font-size:1.2rem;font-weight:500;line-height:1.67;color:var(--fg-black-40-opacity)}._bottomRight_19j1m_133{display:flex;align-items:center;gap:1.6rem}@media(max-width:850px){._bottomRight_19j1m_133{justify-content:space-between}}@media(max-width:600px){._bottomRight_19j1m_133{flex-direction:column;gap:1.2rem}}._supportText_19j1m_150{font-size:1.4rem;font-weight:500;line-height:1.57;color:var(--fg-black-70-opacity)}._socialButtons_19j1m_157{display:flex;gap:1.2rem}._socialButtons_19j1m_157 ._socialButton_19j1m_157{background:var(--bg-black-30-opacity)}._socialButtons_19j1m_157 ._socialButton_19j1m_157 svg{width:1.6rem;height:1.6rem}._tgIcon_19j1m_169{position:relative;top:1px;left:-1px}._heading_a5m03_1{font-weight:500}._xxs_a5m03_5{font-size:2rem;line-height:1.5}._xs_a5m03_10{font-size:3.2rem;line-height:1.25}._s_a5m03_15{font-size:3.6rem;line-height:1.22}@media(max-width:600px){._s_a5m03_15{font-size:2.8rem;line-height:1.14}}._m_a5m03_26{font-size:4rem;line-height:1.25}@media(max-width:850px){._m_a5m03_26{font-size:3.8rem}}@media(max-width:600px){._m_a5m03_26{font-size:2.8rem;line-height:1.28}}._l_a5m03_42{font-size:4.8rem;line-height:1.125}._dark_a5m03_47{color:var(--fg-black)}._light_a5m03_51{color:var(--fg-white)}._container_rd81k_1{display:flex;flex-direction:column;gap:1rem}._label_rd81k_7{display:block;font-size:1.4rem;font-weight:500;line-height:1.57;color:var(--fg-black-40-opacity)}._previewGrid_rd81k_15{display:flex;flex-wrap:wrap;gap:.8rem}._previewItem_rd81k_21{position:relative;width:calc(33.333% - .533rem);overflow:hidden;background:var(--BG-Light-Gray);border-radius:1.6rem;aspect-ratio:1}._previewItem_rd81k_21:hover ._deleteButton_rd81k_29{opacity:1}._previewImage_rd81k_33{width:100%;height:100%;object-fit:cover}._deleteButton_rd81k_29{position:absolute;top:.8rem;right:.8rem;display:flex;justify-content:center;align-items:center;width:2.4rem;height:2.4rem;color:var(--BG-White);background:#0000008f;border:none;border-radius:50%;opacity:0;transition:opacity .2s ease;cursor:pointer}._deleteButton_rd81k_29 svg{width:1.6rem;height:1.6rem}._deleteButton_rd81k_29:hover:not(:disabled){background:#000000b3}._deleteButton_rd81k_29:disabled{opacity:.5;cursor:not-allowed}._uploadButton_rd81k_68{display:flex;justify-content:center;align-items:center;gap:.8rem;width:100%;padding:.8rem 1.6rem;background:#1b2b2b0d;border:none;border-radius:.8rem;transition:background .2s ease;cursor:pointer}._uploadButton_rd81k_68 svg{width:1.6rem;height:1.6rem;color:var(--fg-black-70-opacity)}._uploadButton_rd81k_68:hover:not(:disabled){background:#1b2b2b14}._uploadButton_rd81k_68:disabled{opacity:.5;cursor:not-allowed}._uploadButtonText_rd81k_94{font-size:1.4rem;font-weight:500;line-height:1.57;text-align:center;white-space:nowrap;color:var(--fg-black-70-opacity)}._error_rd81k_103{display:block;margin-top:-.4rem;font-size:1.2rem;line-height:1.33;color:var(--Error-Red)}._wrapper_1a52j_1{display:flex;flex-direction:column;gap:1rem;width:100%}._label_1a52j_8{display:inline-block;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black)}._container_1a52j_16{position:relative;width:100%}._input_1a52j_21{display:none}._uploadBox_1a52j_25{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100%;height:12.9rem;overflow:hidden;background:var(--bg-black-5-opacity);border-radius:1.6rem;transition:all .3s ease;cursor:pointer}@media(hover:hover){._uploadBox_1a52j_25:hover{background:var(--bg-black-10-opacity)}}._uploadBox_1a52j_25:active{transform:scale(.98)}._uploadBox_1a52j_25._hasPreview_1a52j_46{background:transparent}._uploadBox_1a52j_25._error_1a52j_49{background:var(--system-colours-error-10-opacity);border:1px solid var(--System-Colours-Error)}._placeholder_1a52j_54{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:.8rem}._icon_1a52j_62{display:flex;justify-content:center;align-items:center;width:2.4rem;height:2.4rem;color:var(--bg-black-30-opacity)}._icon_1a52j_62 svg{width:100%;height:100%}._placeholderText_1a52j_75{font-size:1.4rem;font-weight:400;line-height:2.2rem;text-align:center;color:var(--bg-black-30-opacity)}._preview_1a52j_83{display:flex;justify-content:center;align-items:center;width:100%;height:100%}._previewImage_1a52j_91{width:100%;height:100%;border-radius:1.6rem;object-fit:cover}._errorText_1a52j_98{position:absolute;top:100%;right:0;left:0;margin-top:.2rem;overflow:hidden;font-size:11px;font-weight:500;line-height:1.8rem;text-align:left;white-space:nowrap;color:var(--System-Colours-Error);text-overflow:ellipsis}@media(max-width:600px){._errorText_1a52j_98{font-size:10px}}._wrapper_gkzyi_1{position:relative;display:flex;flex-direction:column;gap:1rem;width:100%}._label_gkzyi_9{display:inline-block;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black)}._container_gkzyi_17{position:relative;display:flex;width:100%}._input_gkzyi_23{flex:1;width:100%;padding:1.2rem;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black);background:var(--bg-black-3-opacity);border:1px solid var(--stroke-black-5);border-radius:.8rem;outline:none;transition:all .3s ease}._input_gkzyi_23::placeholder{color:var(--fg-black-40-opacity)}@media(hover:hover)and (pointer:fine){._input_gkzyi_23:hover:not(:disabled){border-color:var(--Text-Green)}}._input_gkzyi_23:focus{border-color:var(--Text-Green);box-shadow:0 0 0 .3rem #d3dad880}._input_gkzyi_23:disabled{color:var(--fg-black-30-opacity);border-color:var(--bg-black-3-opacity);cursor:not-allowed}._input_gkzyi_23:disabled::placeholder{color:var(--fg-black-30-opacity)}._input_gkzyi_23._error_gkzyi_57:not(:focus){background:var(--system-colours-error-10-opacity);border-color:var(--System-Colours-Error)}._clearButton_gkzyi_62{position:absolute;top:50%;right:1.2rem;display:flex;justify-content:center;align-items:center;width:1.6rem;height:1.6rem;padding:0;color:var(--fg-black);background-color:var(--bg-black-10-opacity);border:none;border-radius:50%;transform:translateY(-50%);transition:background-color .3s ease;cursor:pointer}@media(hover:hover)and (pointer:fine){._clearButton_gkzyi_62:hover:not(:disabled){background-color:var(--bg-black-15-opacity)}}._clearButton_gkzyi_62:active{transform:translateY(-50%) scale(.98)}._clearButton_gkzyi_62 svg{width:8px;height:8px}._errorText_gkzyi_93{position:absolute;top:100%;right:0;left:0;margin-top:.2rem;overflow:hidden;font-size:11px;font-weight:500;line-height:1.8rem;text-align:left;white-space:nowrap;color:var(--System-Colours-Error);text-overflow:ellipsis}@media(max-width:600px){._errorText_gkzyi_93{font-size:10px}}._overlay_1drti_1{position:fixed;z-index:101;background:var(--bg-black-80-opacity);-webkit-backdrop-filter:blur(.4rem);backdrop-filter:blur(.4rem);animation:_fadeIn_1drti_1 .2s ease-out;inset:0}@keyframes _fadeIn_1drti_1{0%{opacity:0}to{opacity:1}}._modal_1drti_18{position:fixed;top:50%;left:50%;z-index:102;display:flex;flex-direction:column;width:40rem;max-width:90vw;max-height:calc(100vh - 17rem);padding:2.4rem .4rem 2.4rem 2.4rem;background:var(--bg-white);border-radius:2rem;transform:translate(-50%,-50%);animation:_slideIn_1drti_1 .2s ease-out}@media(min-height:1080px)and (min-width:1200px){._modal_1drti_18{max-height:90rem}}@media(max-width:600px){._modal_1drti_18{max-width:calc(100% - 4rem);max-height:calc(100dvh - 4rem);padding:2.4rem .4rem 2.4rem 2rem}}@keyframes _slideIn_1drti_1{0%{opacity:0;transform:translate(-50%,-48%)}to{opacity:1;transform:translate(-50%,-50%)}}._header_1drti_57{display:flex;flex-shrink:0;flex-direction:column;gap:1.2rem;margin-right:2rem;margin-bottom:4rem}@media(max-width:600px){._header_1drti_57{gap:.8rem;margin-right:4.4rem;margin-bottom:3.2rem}}._heading_1drti_73{font-size:2.4rem;font-weight:500;line-height:3.2rem;color:var(--fg-black)}@media(max-width:600px){._heading_1drti_73{font-size:2rem;line-height:2.8rem}}._heading_1drti_73._centered_1drti_85{text-align:center}@media(max-width:600px){._heading_1drti_73._centered_1drti_85{margin-left:2.8rem}}._description_1drti_94{font-size:1.6rem;line-height:2.4rem;color:var(--fg-black-70-opacity)}@media(max-width:600px){._description_1drti_94{font-size:1.4rem;line-height:2.2rem}}._description_1drti_94._centered_1drti_85{text-align:center}._scrollableContainer_1drti_109{flex:1;min-height:0;padding-right:2rem;overflow-x:hidden;overflow-y:auto}@media(max-width:600px){._scrollableContainer_1drti_109{padding-right:1.6rem}}._scrollableContainer_1drti_109::-webkit-scrollbar{width:.4rem}._scrollableContainer_1drti_109::-webkit-scrollbar-track{background:transparent}._scrollableContainer_1drti_109::-webkit-scrollbar-thumb{background:var(--bg-black-20-opacity);border-radius:.2rem}._scrollableContainer_1drti_109::-webkit-scrollbar-thumb:hover{background:var(--bg-black-30-opacity)}._closeButton_1drti_135{position:absolute;top:-2.4rem;right:-4rem}@media(max-width:600px){._closeButton_1drti_135{top:.8rem;right:.8rem;color:var(--fg-black);background:var(--bg-black-5-opacity)}}._root_13g3l_1{display:flex;flex-direction:column;gap:1rem}._label_13g3l_7{display:inline-block;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black)}._group_13g3l_15{display:flex;flex-direction:column;gap:.8rem}._item_13g3l_21{display:flex;align-items:center;gap:.6rem}._radio_13g3l_27{position:relative;flex-shrink:0;box-sizing:border-box;width:1.6rem;height:1.6rem;background:transparent;border:1px solid var(--Text-Gold);border-radius:50%;transition:all .2s ease;cursor:pointer}@media(hover:hover)and (pointer:fine){._radio_13g3l_27:hover:not(:disabled){background:var(--bg-gold-15-opacity)}}._radio_13g3l_27:active:not(:disabled){opacity:.7;transition:opacity .1s ease}._radio_13g3l_27[data-state=checked]{border-color:var(--Text-Gold)}._radio_13g3l_27._square_13g3l_51{background:var(--Text-White);border:1px solid var(--stroke-black-5-opacity);border-radius:4px}@media(hover:hover)and (pointer:fine){._radio_13g3l_27._square_13g3l_51:hover:not(:disabled){background:var(--bg-black-5-opacity);border-color:var(--stroke-black-10-opacity)}}._radio_13g3l_27._square_13g3l_51[data-state=checked]{display:flex;justify-content:center;align-items:center;background:var(--BG-Accent-Green);border-color:var(--BG-Accent-Green)}@media(hover:hover)and (pointer:fine){._radio_13g3l_27._square_13g3l_51[data-state=checked]:hover:not(:disabled){background:var(--BG-Accent-Green);border-color:var(--BG-Accent-Green);opacity:.8}}._radio_13g3l_27:disabled{opacity:.5;cursor:not-allowed}._indicator_13g3l_81{position:absolute;top:50%;left:50%;width:.6rem;height:.6rem;background:var(--Text-Gold);border-radius:50%;transform:translate(-50%,-50%)}._itemLabel_13g3l_92{font-size:1.4rem;font-weight:400;line-height:2.2rem;color:var(--fg-black-70-opacity);cursor:pointer}._item_13g3l_21:has(._radio_13g3l_27:disabled) ._itemLabel_13g3l_92{opacity:.5;cursor:not-allowed}._errorText_13g3l_104{position:absolute;top:100%;right:0;left:0;margin-top:.2rem;overflow:hidden;font-size:11px;font-weight:500;line-height:1.8rem;text-align:left;white-space:nowrap;color:var(--System-Colours-Error);text-overflow:ellipsis}@media(max-width:600px){._errorText_13g3l_104{font-size:10px}}._checkIcon_13g3l_125{width:14px;height:14px;color:var(--Text-White)}._container_493c2_1{max-width:var(--content-width);margin:0 auto;padding-inline:var(--general-inline-padding)}._container_493c2_1._withoutPadding_493c2_6{padding-inline:0}._root_1qyg8_1{display:flex;flex-direction:column;gap:1rem;width:100%}._label_1qyg8_8{display:inline-block;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black)}._trigger_1qyg8_16{position:relative;display:flex;justify-content:space-between;align-items:center;width:100%;min-height:4.6rem;padding:1.2rem;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black);background:var(--bg-black-3-opacity);border:1px solid var(--stroke-black-5);border-radius:.8rem;outline:none;transition:all .3s ease;cursor:pointer}._trigger_1qyg8_16:hover:not(:disabled){border-color:var(--Text-Green)}._trigger_1qyg8_16[data-placeholder]{color:var(--fg-black-40-opacity)}._trigger_1qyg8_16:disabled{color:var(--fg-black-30-opacity);border-color:var(--bg-black-3-opacity);cursor:not-allowed}._trigger_1qyg8_16._error_1qyg8_46:not(:focus){background:var(--system-colours-error-10-opacity);border-color:var(--System-Colours-Error)}._icon_1qyg8_51{flex-shrink:0;width:2rem;height:2rem;color:var(--fg-black)}._content_1qyg8_58{z-index:1000;width:var(--radix-select-trigger-width);max-height:300px;padding:.4rem;overflow-y:auto;background:var(--BG-White);border:1px solid var(--bg-black-10-opacity);border-radius:.8rem;box-shadow:0 4px 12px #00000014;animation:_fadeIn_1qyg8_1 .15s ease}._viewport_1qyg8_71{padding:0}._item_1qyg8_75{padding:.8rem 1.2rem;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black);border-radius:.6rem;outline:none;transition:all .15s ease;cursor:pointer}._item_1qyg8_75:hover:not([data-disabled]){background:var(--bg-black-5-opacity)}._item_1qyg8_75[data-highlighted]{background:var(--bg-black-5-opacity)}._item_1qyg8_75[data-state=checked]{color:var(--Text-Gold)}._item_1qyg8_75:active:not([data-disabled]){transform:scale(.98)}._errorText_1qyg8_99{position:absolute;top:100%;right:0;left:0;margin-top:.2rem;overflow:hidden;font-size:11px;font-weight:500;line-height:1.8rem;text-align:left;white-space:nowrap;color:var(--System-Colours-Error);text-overflow:ellipsis}@media(max-width:600px){._errorText_1qyg8_99{font-size:10px}}@keyframes _fadeIn_1qyg8_1{0%{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}._text_18ys9_1{font-weight:400}._s_18ys9_5{font-size:1.4rem;line-height:1.57}._m_18ys9_10{font-size:1.6rem;line-height:1.5}@media(max-width:600px){._m_18ys9_10{font-size:1.4rem;line-height:1.57}}._dark_18ys9_21{color:var(--fg-black-70-opacity)}._light_18ys9_25{color:var(--fg-white-70-opacity)}._wrapper_122rz_1{position:relative;display:flex;flex-direction:column;gap:1rem;width:100%}._label_122rz_9{display:inline-block;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black)}._container_122rz_17{position:relative;display:flex;width:100%}._textarea_122rz_23{flex:1;width:100%;padding:1.2rem;font-family:inherit;font-size:1.4rem;font-weight:500;line-height:2.2rem;color:var(--fg-black);background:var(--bg-black-3-opacity);border:1px solid var(--stroke-black-5);border-radius:.8rem;outline:none;transition:all .3s ease;resize:none}._textarea_122rz_23::placeholder{color:var(--fg-black-40-opacity)}@media(hover:hover)and (pointer:fine){._textarea_122rz_23:hover:not(:disabled){border-color:var(--Text-Green)}}._textarea_122rz_23:focus{border-color:var(--Text-Green);box-shadow:0 0 0 .3rem #d3dad880}._textarea_122rz_23:disabled{color:var(--fg-black-30-opacity);border-color:var(--bg-black-3-opacity);cursor:not-allowed}._textarea_122rz_23:disabled::placeholder{color:var(--fg-black-30-opacity)}._textarea_122rz_23._error_122rz_59:not(:focus){background:var(--system-colours-error-10-opacity);border-color:var(--System-Colours-Error)}._textarea_122rz_23._s_122rz_63{min-height:10rem}._textarea_122rz_23._m_122rz_66{min-height:15rem}._errorText_122rz_70{position:absolute;top:100%;right:0;left:0;margin-top:.2rem;overflow:hidden;font-size:11px;font-weight:500;line-height:1.8rem;text-align:left;white-space:nowrap;color:var(--System-Colours-Error);text-overflow:ellipsis}@media(max-width:600px){._errorText_122rz_70{font-size:10px}}._button_1hm1n_1:focus{outline:none}._button_1hm1n_1:disabled{opacity:.5;cursor:not-allowed}._button_1hm1n_1:active:not(:disabled){opacity:.7;transition:opacity .1s ease}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export type { AvatarProps } from './components/Avatar/Avatar';
|
|
2
2
|
export { Avatar } from './components/Avatar/Avatar';
|
|
3
|
+
export type { BreadcrumbItem, BreadcrumbsProps } from './components/Breadcrumbs';
|
|
4
|
+
export { Breadcrumbs } from './components/Breadcrumbs';
|
|
3
5
|
export type { ButtonProps } from './components/Button/Button';
|
|
4
6
|
export { Button } from './components/Button/Button';
|
|
5
7
|
export type { CircleButtonProps } from './components/CircleButton/CircleButton';
|
|
@@ -12,6 +14,8 @@ export type { HeadingProps } from './components/Heading/Heading';
|
|
|
12
14
|
export { Heading } from './components/Heading/Heading';
|
|
13
15
|
export type { IconProps } from './components/Icon';
|
|
14
16
|
export * from './components/Icon';
|
|
17
|
+
export type { ImagesUploadProps } from './components/ImagesUpload';
|
|
18
|
+
export { ImagesUpload } from './components/ImagesUpload';
|
|
15
19
|
export type { ImageUploadProps } from './components/ImageUpload';
|
|
16
20
|
export { ImageUpload } from './components/ImageUpload';
|
|
17
21
|
export type { InputProps } from './components/Input/Input';
|
|
@@ -20,14 +24,16 @@ export type { LinkProps } from './components/Link/Link';
|
|
|
20
24
|
export { Link } from './components/Link/Link';
|
|
21
25
|
export type { ModalContentProps, ModalDescriptionProps, ModalTitleProps, } from './components/Modal/Modal.tsx';
|
|
22
26
|
export { Modal, ModalClose, ModalContent, ModalDescription, ModalTitle, ModalTrigger, } from './components/Modal/Modal.tsx';
|
|
23
|
-
export type {
|
|
24
|
-
export {
|
|
25
|
-
export type {
|
|
26
|
-
export {
|
|
27
|
+
export type { RadioGroupProps, RadioOption } from './components/RadioGroup';
|
|
28
|
+
export { RadioGroup } from './components/RadioGroup';
|
|
29
|
+
export type { SectionContainerProps } from './components/SectionContainer';
|
|
30
|
+
export { SectionContainer } from './components/SectionContainer';
|
|
27
31
|
export type { SelectOption, SelectProps } from './components/Select';
|
|
28
32
|
export { Select } from './components/Select';
|
|
29
33
|
export type { TextProps } from './components/Text/Text';
|
|
30
34
|
export { Text } from './components/Text/Text';
|
|
31
35
|
export type { TextareaProps } from './components/Textarea';
|
|
32
36
|
export { Textarea } from './components/Textarea';
|
|
37
|
+
export type { UnstyledButtonProps } from './components/UnstyledButton';
|
|
38
|
+
export { UnstyledButton } from './components/UnstyledButton';
|
|
33
39
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,uBAAuB,CAAC;AAE/B,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAC;AACtE,YAAY,EACV,kBAAkB,EAClB,sBAAsB,EACtB,iBAAiB,EACjB,gBAAgB,GACjB,MAAM,gCAAgC,CAAC;AACxC,OAAO,EACL,MAAM,EACN,WAAW,EACX,aAAa,EACb,iBAAiB,EACjB,YAAY,EACZ,WAAW,EACX,aAAa,GACd,MAAM,gCAAgC,CAAC;AACxC,YAAY,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACzE,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC9D,YAAY,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,YAAY,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACnD,cAAc,mBAAmB,CAAC;AAClC,YAAY,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACvD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EACV,iBAAiB,EACjB,qBAAqB,EACrB,eAAe,GAChB,MAAM,8BAA8B,CAAC;AACtC,OAAO,EACL,KAAK,EACL,UAAU,EACV,YAAY,EACZ,gBAAgB,EAChB,UAAU,EACV,YAAY,GACb,MAAM,8BAA8B,CAAC;AACtC,YAAY,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,uBAAuB,CAAC;AAE/B,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AACjF,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACvD,YAAY,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,MAAM,EAAE,MAAM,4BAA4B,CAAC;AACpD,YAAY,EAAE,iBAAiB,EAAE,MAAM,wCAAwC,CAAC;AAChF,OAAO,EAAE,YAAY,EAAE,MAAM,wCAAwC,CAAC;AACtE,YAAY,EACV,kBAAkB,EAClB,sBAAsB,EACtB,iBAAiB,EACjB,gBAAgB,GACjB,MAAM,gCAAgC,CAAC;AACxC,OAAO,EACL,MAAM,EACN,WAAW,EACX,aAAa,EACb,iBAAiB,EACjB,YAAY,EACZ,WAAW,EACX,aAAa,GACd,MAAM,gCAAgC,CAAC;AACxC,YAAY,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACzE,OAAO,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC9D,YAAY,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,EAAE,OAAO,EAAE,MAAM,8BAA8B,CAAC;AACvD,YAAY,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AACnD,cAAc,mBAAmB,CAAC;AAClC,YAAY,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,YAAY,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AACjE,OAAO,EAAE,WAAW,EAAE,MAAM,0BAA0B,CAAC;AACvD,YAAY,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAC3D,OAAO,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAC;AACjD,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EACV,iBAAiB,EACjB,qBAAqB,EACrB,eAAe,GAChB,MAAM,8BAA8B,CAAC;AACtC,OAAO,EACL,KAAK,EACL,UAAU,EACV,YAAY,EACZ,gBAAgB,EAChB,UAAU,EACV,YAAY,GACb,MAAM,8BAA8B,CAAC;AACtC,YAAY,EAAE,eAAe,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC5E,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,YAAY,EAAE,qBAAqB,EAAE,MAAM,+BAA+B,CAAC;AAC3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACjE,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AACrE,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAC7C,YAAY,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACxD,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAC;AAC9C,YAAY,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,YAAY,EAAE,mBAAmB,EAAE,MAAM,6BAA6B,CAAC;AACvE,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC"}
|