@axos-web-dev/shared-components 0.0.57 → 0.0.58

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.
Files changed (69) hide show
  1. package/dist/Article/Article.css.d.ts +230 -0
  2. package/dist/Article/Article.css.js +21 -0
  3. package/dist/Article/Article.d.ts +14 -0
  4. package/dist/Article/Article.js +51 -0
  5. package/dist/Article/index.d.ts +2 -0
  6. package/dist/Article/index.js +12 -0
  7. package/dist/ArticlesSet/ArticlesSet.css.d.ts +155 -0
  8. package/dist/ArticlesSet/ArticlesSet.css.js +21 -0
  9. package/dist/ArticlesSet/ArticlesSet.d.ts +12 -0
  10. package/dist/ArticlesSet/ArticlesSet.js +115 -0
  11. package/dist/ArticlesSet/index.d.ts +2 -0
  12. package/dist/ArticlesSet/index.js +12 -0
  13. package/dist/AwardsBanner/AwardsBanner.css.d.ts +2 -0
  14. package/dist/AwardsBanner/AwardsBanner.css.js +7 -0
  15. package/dist/AwardsBanner/AwardsBanner.d.ts +8 -0
  16. package/dist/AwardsBanner/AwardsBanner.js +18 -0
  17. package/dist/AwardsBanner/index.d.ts +2 -0
  18. package/dist/AwardsBanner/index.js +7 -0
  19. package/dist/AwardsItem/AwardsItem.css.d.ts +3 -0
  20. package/dist/AwardsItem/AwardsItem.css.js +10 -0
  21. package/dist/AwardsItem/AwardsItem.d.ts +9 -0
  22. package/dist/AwardsItem/AwardsItem.js +29 -0
  23. package/dist/AwardsItem/index.d.ts +2 -0
  24. package/dist/AwardsItem/index.js +8 -0
  25. package/dist/Carousel/index.js +5 -0
  26. package/dist/Chevron/index.js +6 -1
  27. package/dist/ExecutiveBio/ExecutiveBio.css.d.ts +1 -39
  28. package/dist/ExecutiveBio/ExecutiveBio.css.js +12 -10
  29. package/dist/ExecutiveBio/ExecutiveBio.d.ts +1 -1
  30. package/dist/ExecutiveBio/ExecutiveBio.interface.d.ts +4 -2
  31. package/dist/ExecutiveBio/ExecutiveBio.js +104 -46
  32. package/dist/ExecutiveBio/ExecutiveBioSet.d.ts +1 -1
  33. package/dist/ExecutiveBio/ExecutiveBioSet.js +22 -128
  34. package/dist/ExecutiveBio/index.js +2 -1
  35. package/dist/FooterSiteMap/AxosBank/FooterSiteMap.js +6 -1
  36. package/dist/Forms/ApplicationStart.js +1 -0
  37. package/dist/Forms/ContactCompany.d.ts +25 -0
  38. package/dist/Forms/ContactCompany.js +190 -0
  39. package/dist/Forms/ContactUsBusiness.js +5 -0
  40. package/dist/Forms/DealerServices.d.ts +32 -0
  41. package/dist/Forms/DealerServices.js +311 -0
  42. package/dist/Forms/EmailOnly.js +5 -0
  43. package/dist/Forms/RenderForm.js +5 -0
  44. package/dist/Forms/ScheduleCall.js +1 -0
  45. package/dist/Forms/ScheduleCallPremier.js +1 -0
  46. package/dist/Forms/SuccesForm.d.ts +7 -3
  47. package/dist/Forms/SuccesForm.js +76 -61
  48. package/dist/Forms/index.d.ts +2 -0
  49. package/dist/Forms/index.js +4 -0
  50. package/dist/Hyperlink/index.js +6 -1
  51. package/dist/ImageLink/ImageLink.js +5 -0
  52. package/dist/ImageLink/ImageLinkSet.js +5 -0
  53. package/dist/ImageLink/index.js +6 -1
  54. package/dist/Input/CurrencyInput.js +1 -0
  55. package/dist/Input/InputPhone.js +1 -0
  56. package/dist/Input/InputTextArea.d.ts +16 -0
  57. package/dist/Input/InputTextArea.js +48 -0
  58. package/dist/Input/index.d.ts +1 -0
  59. package/dist/Input/index.js +2 -0
  60. package/dist/Modal/Modal.js +6 -1
  61. package/dist/SetContainer/SetContainer.js +5 -0
  62. package/dist/assets/Article/Article.css +243 -0
  63. package/dist/assets/ArticlesSet/ArticlesSet.css +234 -0
  64. package/dist/assets/AwardsBanner/AwardsBanner.css +19 -0
  65. package/dist/assets/AwardsItem/AwardsItem.css +40 -0
  66. package/dist/assets/ExecutiveBio/ExecutiveBio.css +61 -65
  67. package/dist/main.d.ts +4 -0
  68. package/dist/main.js +39 -1
  69. package/package.json +1 -1
@@ -1,6 +1,10 @@
1
- import { PropsWithChildren } from 'react';
1
+ import { PropsWithChildren, ReactNode } from 'react';
2
2
 
3
- export declare function SuccesFormWrapper({ children, isSubmitted, variant: fullVariant, }: {
3
+ export interface SuccessFormProps extends PropsWithChildren {
4
+ id?: string;
5
+ headline?: string;
6
+ bodyCopy?: ReactNode;
4
7
  isSubmitted: boolean;
5
8
  variant?: string;
6
- } & PropsWithChildren): import("react/jsx-runtime").JSX.Element;
9
+ }
10
+ export declare function SuccesFormWrapper({ children, isSubmitted, variant: fullVariant, bodyCopy, headline, id, }: SuccessFormProps): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,4 @@
1
- import { jsx, jsxs } from "react/jsx-runtime";
1
+ import { jsx, jsxs, Fragment } from "react/jsx-runtime";
2
2
  import { getVariant } from "../utils/getVariant.js";
3
3
  import clsx from "clsx";
4
4
  import "@hookform/resolvers/zod";
@@ -14,6 +14,7 @@ import "../Input/Dropdown.js";
14
14
  import "../Input/Input.js";
15
15
  import "../Input/Input.css.js";
16
16
  import "../Input/InputPhone.js";
17
+ import "../Input/InputTextArea.js";
17
18
  import "../icons/ArrowIcon/ArrowIcon.css.js";
18
19
  import "../icons/CheckIcon/CheckIcon.css.js";
19
20
  /* empty css */
@@ -28,6 +29,10 @@ import "../Accordion/Accordion.css.js";
28
29
  import "../Chevron/Chevron.css.js";
29
30
  import "../AlertBanner/AlertBanner.css.js";
30
31
  /* empty css */
32
+ import "../Article/Article.css.js";
33
+ import "../ArticlesSet/ArticlesSet.css.js";
34
+ /* empty css */
35
+ /* empty css */
31
36
  import "../IconBillboard/IconBillboard.css.js";
32
37
  /* empty css */
33
38
  /* empty css */
@@ -59,68 +64,78 @@ import "next/script.js";
59
64
  function SuccesFormWrapper({
60
65
  children,
61
66
  isSubmitted,
62
- variant: fullVariant = "primary"
67
+ variant: fullVariant = "primary",
68
+ bodyCopy,
69
+ headline,
70
+ id
63
71
  }) {
64
72
  const variant = getVariant(fullVariant);
65
- return !isSubmitted ? /* @__PURE__ */ jsx("div", { children }) : /* @__PURE__ */ jsxs("div", { className: clsx(success_wrap({ variant }), "text_center"), children: [
66
- /* @__PURE__ */ jsxs(
67
- "svg",
68
- {
69
- className: success_icon,
70
- width: "90px",
71
- height: "97px",
72
- viewBox: "0 0 90 90",
73
- version: "1.1",
74
- xmlns: "http://www.w3.org/2000/svg",
75
- xmlnsXlink: "http://www.w3.org/1999/xlink",
76
- xmlSpace: "preserve",
77
- style: {
78
- fillRule: "evenodd",
79
- clipRule: "evenodd",
80
- strokeLinecap: "round",
81
- strokeLinejoin: "round",
82
- strokeMiterlimit: "1.5"
83
- },
84
- children: [
85
- /* @__PURE__ */ jsx(
86
- "rect",
87
- {
88
- x: "0",
89
- y: "0",
90
- width: "90",
91
- height: "99",
92
- style: { fill: "none" }
93
- }
94
- ),
95
- /* @__PURE__ */ jsx("clipPath", { id: "_clip1", children: /* @__PURE__ */ jsx("rect", { x: "0", y: "0", width: "90", height: "99" }) }),
96
- /* @__PURE__ */ jsxs("g", { clipPath: "url(#_clip1)", children: [
97
- /* @__PURE__ */ jsx(
98
- "circle",
99
- {
100
- className: success_circle({ variant }),
101
- cx: "44.662",
102
- cy: "44.662",
103
- r: "42.662"
104
- }
105
- ),
106
- /* @__PURE__ */ jsx(
107
- "path",
108
- {
109
- className: succes_check_mark,
110
- d: "M28.985,44.662l12.015,12.015l46.324,-54.677"
111
- }
112
- )
113
- ] })
114
- ]
115
- }
116
- ),
117
- /* @__PURE__ */ jsx("h1", { id: "submittedText", children: "Submitted!" }),
118
- /* @__PURE__ */ jsxs("p", { id: "thankYouText", children: [
119
- "Thank you!",
120
- /* @__PURE__ */ jsx("br", {}),
121
- "A Banking expert will be in contact with you shortly"
122
- ] })
123
- ] });
73
+ return !isSubmitted ? /* @__PURE__ */ jsx("div", { children }) : /* @__PURE__ */ jsxs(
74
+ "div",
75
+ {
76
+ className: clsx(success_wrap({ variant }), "text_center"),
77
+ id: id ?? void 0,
78
+ children: [
79
+ /* @__PURE__ */ jsxs(
80
+ "svg",
81
+ {
82
+ className: success_icon,
83
+ width: "90px",
84
+ height: "97px",
85
+ viewBox: "0 0 90 90",
86
+ version: "1.1",
87
+ xmlns: "http://www.w3.org/2000/svg",
88
+ xmlnsXlink: "http://www.w3.org/1999/xlink",
89
+ xmlSpace: "preserve",
90
+ style: {
91
+ fillRule: "evenodd",
92
+ clipRule: "evenodd",
93
+ strokeLinecap: "round",
94
+ strokeLinejoin: "round",
95
+ strokeMiterlimit: "1.5"
96
+ },
97
+ children: [
98
+ /* @__PURE__ */ jsx(
99
+ "rect",
100
+ {
101
+ x: "0",
102
+ y: "0",
103
+ width: "90",
104
+ height: "99",
105
+ style: { fill: "none" }
106
+ }
107
+ ),
108
+ /* @__PURE__ */ jsx("clipPath", { id: "_clip1", children: /* @__PURE__ */ jsx("rect", { x: "0", y: "0", width: "90", height: "99" }) }),
109
+ /* @__PURE__ */ jsxs("g", { clipPath: "url(#_clip1)", children: [
110
+ /* @__PURE__ */ jsx(
111
+ "circle",
112
+ {
113
+ className: success_circle({ variant }),
114
+ cx: "44.662",
115
+ cy: "44.662",
116
+ r: "42.662"
117
+ }
118
+ ),
119
+ /* @__PURE__ */ jsx(
120
+ "path",
121
+ {
122
+ className: succes_check_mark,
123
+ d: "M28.985,44.662l12.015,12.015l46.324,-54.677"
124
+ }
125
+ )
126
+ ] })
127
+ ]
128
+ }
129
+ ),
130
+ /* @__PURE__ */ jsx("h1", { id: "submittedText", children: headline || "Submitted!" }),
131
+ /* @__PURE__ */ jsx("p", { id: "thankYouText", children: bodyCopy ? bodyCopy : /* @__PURE__ */ jsxs(Fragment, { children: [
132
+ "Thank you!",
133
+ /* @__PURE__ */ jsx("br", {}),
134
+ "A Banking expert will be in contact with you shortly"
135
+ ] }) })
136
+ ]
137
+ }
138
+ );
124
139
  }
125
140
  export {
126
141
  SuccesFormWrapper
@@ -7,3 +7,5 @@ export * from './SalesforceFieldsForm';
7
7
  export * from './ScheduleCall';
8
8
  export * from './ScheduleCallPremier';
9
9
  export * from './SuccesForm';
10
+ export * from './ContactCompany';
11
+ export * from './DealerServices';
@@ -7,9 +7,13 @@ import { SalesforceFieldsForm, SalesforceSchema } from "./SalesforceFieldsForm.j
7
7
  import { ScheduleCall } from "./ScheduleCall.js";
8
8
  import { ScheduleCallPremier } from "./ScheduleCallPremier.js";
9
9
  import { SuccesFormWrapper } from "./SuccesForm.js";
10
+ import { ContactCompany } from "./ContactCompany.js";
11
+ import { DealerServices } from "./DealerServices.js";
10
12
  export {
11
13
  ApplicationStart,
14
+ ContactCompany,
12
15
  ContactUsBusiness,
16
+ DealerServices,
13
17
  EmailOnly,
14
18
  RenderWebForm,
15
19
  SalesforceFieldsForm,
@@ -18,8 +18,12 @@ import "react";
18
18
  import "../Button/Button.css.js";
19
19
  import "react-use";
20
20
  /* empty css */
21
- import "../IconBillboard/IconBillboard.css.js";
21
+ import "../Article/Article.css.js";
22
+ import "../ArticlesSet/ArticlesSet.css.js";
23
+ /* empty css */
22
24
  /* empty css */
25
+ /* empty css */
26
+ import "../IconBillboard/IconBillboard.css.js";
23
27
  /* empty css */
24
28
  /* empty css */
25
29
  import "../Carousel/index.js";
@@ -39,6 +43,7 @@ import "../Input/Dropdown.js";
39
43
  import "../Input/Input.js";
40
44
  import "../Input/Input.css.js";
41
45
  import "../Input/InputPhone.js";
46
+ import "../Input/InputTextArea.js";
42
47
  import "react-hook-form";
43
48
  import "../Forms/Forms.css.js";
44
49
  import "../Forms/SalesforceFieldsForm.js";
@@ -18,6 +18,10 @@ import { isValidElement } from "react";
18
18
  import "../Button/Button.css.js";
19
19
  import "react-use";
20
20
  /* empty css */
21
+ import "../Article/Article.css.js";
22
+ import "../ArticlesSet/ArticlesSet.css.js";
23
+ /* empty css */
24
+ /* empty css */
21
25
  /* empty css */
22
26
  import "../Carousel/index.js";
23
27
  /* empty css */
@@ -36,6 +40,7 @@ import "../Input/Dropdown.js";
36
40
  import "../Input/Input.js";
37
41
  import "../Input/Input.css.js";
38
42
  import "../Input/InputPhone.js";
43
+ import "../Input/InputTextArea.js";
39
44
  import "react-hook-form";
40
45
  import "../Forms/Forms.css.js";
41
46
  import "../Forms/SalesforceFieldsForm.js";
@@ -21,6 +21,10 @@ import "../Accordion/Accordion.js";
21
21
  import "../Accordion/Accordion.css.js";
22
22
  import "../AlertBanner/AlertBanner.css.js";
23
23
  /* empty css */
24
+ import "../Article/Article.css.js";
25
+ import "../ArticlesSet/ArticlesSet.css.js";
26
+ /* empty css */
27
+ /* empty css */
24
28
  /* empty css */
25
29
  import "../Carousel/index.js";
26
30
  /* empty css */
@@ -39,6 +43,7 @@ import "../Input/Dropdown.js";
39
43
  import "../Input/Input.js";
40
44
  import "../Input/Input.css.js";
41
45
  import "../Input/InputPhone.js";
46
+ import "../Input/InputTextArea.js";
42
47
  import "react-hook-form";
43
48
  import "../Forms/Forms.css.js";
44
49
  import "../Forms/SalesforceFieldsForm.js";
@@ -15,8 +15,12 @@ import "react";
15
15
  import "../Button/Button.css.js";
16
16
  import "react-use";
17
17
  /* empty css */
18
- import "../IconBillboard/IconBillboard.css.js";
18
+ import "../Article/Article.css.js";
19
+ import "../ArticlesSet/ArticlesSet.css.js";
20
+ /* empty css */
19
21
  /* empty css */
22
+ /* empty css */
23
+ import "../IconBillboard/IconBillboard.css.js";
20
24
  /* empty css */
21
25
  /* empty css */
22
26
  import "../Carousel/index.js";
@@ -36,6 +40,7 @@ import "../Input/Dropdown.js";
36
40
  import "../Input/Input.js";
37
41
  import "../Input/Input.css.js";
38
42
  import "../Input/InputPhone.js";
43
+ import "../Input/InputTextArea.js";
39
44
  import "react-hook-form";
40
45
  import "../Forms/Forms.css.js";
41
46
  import "../Forms/SalesforceFieldsForm.js";
@@ -8,6 +8,7 @@ import "./Dropdown.js";
8
8
  import { Input } from "./Input.js";
9
9
  import "./Input.css.js";
10
10
  import "./InputPhone.js";
11
+ import "./InputTextArea.js";
11
12
  const CurrencyInput = forwardRef(
12
13
  (props, ref) => {
13
14
  return /* @__PURE__ */ jsx(
@@ -8,6 +8,7 @@ import "./Dropdown.js";
8
8
  /* empty css */
9
9
  import { Input } from "./Input.js";
10
10
  import "./Input.css.js";
11
+ import "./InputTextArea.js";
11
12
  const InputPhone = forwardRef(
12
13
  (props, ref) => {
13
14
  return /* @__PURE__ */ jsx(
@@ -0,0 +1,16 @@
1
+ import { QuaternaryTypes } from '../utils';
2
+ import { InputHTMLAttributes, ReactNode } from 'react';
3
+
4
+ export interface TextAreaInputProps extends InputHTMLAttributes<HTMLTextAreaElement> {
5
+ label?: ReactNode;
6
+ iconLeft?: ReactNode;
7
+ iconRight?: ReactNode;
8
+ sizes?: "small" | "medium" | "large" | undefined;
9
+ error?: boolean | undefined;
10
+ skeleton?: boolean | undefined;
11
+ helperText?: ReactNode;
12
+ variant?: QuaternaryTypes;
13
+ rows?: number;
14
+ maxLength?: number;
15
+ }
16
+ export declare const InputTextArea: import('react').ForwardRefExoticComponent<TextAreaInputProps & import('react').RefAttributes<HTMLTextAreaElement>>;
@@ -0,0 +1,48 @@
1
+ import { jsxs, jsx } from "react/jsx-runtime";
2
+ import clsx from "clsx";
3
+ import { forwardRef } from "react";
4
+ import { wrapper, labelClassName, container, iconContainer, iconInput, input, helperText } from "./Input.css.js";
5
+ const InputTextArea = forwardRef((props, ref) => {
6
+ const {
7
+ disabled,
8
+ label,
9
+ iconLeft,
10
+ iconRight,
11
+ sizes,
12
+ error = false,
13
+ helperText: helper,
14
+ variant,
15
+ rows = 4,
16
+ maxLength = 512,
17
+ ...rest
18
+ } = props;
19
+ return /* @__PURE__ */ jsxs("div", { className: wrapper(), children: [
20
+ label && /* @__PURE__ */ jsx(
21
+ "label",
22
+ {
23
+ className: labelClassName({ error, variant }),
24
+ htmlFor: props.name,
25
+ children: label
26
+ }
27
+ ),
28
+ /* @__PURE__ */ jsxs("div", { className: container({ size: sizes, error }), children: [
29
+ iconLeft && /* @__PURE__ */ jsx("span", { className: iconContainer["left"], children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconLeft }) }),
30
+ /* @__PURE__ */ jsx(
31
+ "textarea",
32
+ {
33
+ ...rest,
34
+ ref,
35
+ className: clsx(props.className, input({ size: sizes })),
36
+ rows,
37
+ placeholder: props.placeholder,
38
+ maxLength
39
+ }
40
+ ),
41
+ iconRight && /* @__PURE__ */ jsx("span", { className: iconContainer.right, children: /* @__PURE__ */ jsx("div", { className: iconInput({ size: sizes }), children: iconRight }) })
42
+ ] }),
43
+ /* @__PURE__ */ jsx("span", { className: helperText({ disabled, error }), children: helper })
44
+ ] });
45
+ });
46
+ export {
47
+ InputTextArea
48
+ };
@@ -5,3 +5,4 @@ export * from './Dropdown.css';
5
5
  export * from './Input';
6
6
  export * from './Input.css';
7
7
  export * from './InputPhone';
8
+ export * from './InputTextArea';
@@ -5,12 +5,14 @@ import { selectInput } from "./Dropdown.css.js";
5
5
  import { Input } from "./Input.js";
6
6
  import { container, helperText, iconContainer, iconContainerBase, iconInput, input, labelClassName, wrapper } from "./Input.css.js";
7
7
  import { InputPhone } from "./InputPhone.js";
8
+ import { InputTextArea } from "./InputTextArea.js";
8
9
  export {
9
10
  Checkbox,
10
11
  CurrencyInput,
11
12
  Dropdown,
12
13
  Input,
13
14
  InputPhone,
15
+ InputTextArea,
14
16
  container,
15
17
  helperText,
16
18
  iconContainer,
@@ -14,8 +14,12 @@ import "../Button/Button.css.js";
14
14
  import "react";
15
15
  import "react-use";
16
16
  /* empty css */
17
- import "../IconBillboard/IconBillboard.css.js";
17
+ import "../Article/Article.css.js";
18
+ import "../ArticlesSet/ArticlesSet.css.js";
19
+ /* empty css */
18
20
  /* empty css */
21
+ /* empty css */
22
+ import "../IconBillboard/IconBillboard.css.js";
19
23
  /* empty css */
20
24
  import "clsx";
21
25
  /* empty css */
@@ -36,6 +40,7 @@ import "../Input/Dropdown.js";
36
40
  import "../Input/Input.js";
37
41
  import "../Input/Input.css.js";
38
42
  import "../Input/InputPhone.js";
43
+ import "../Input/InputTextArea.js";
39
44
  import "react-hook-form";
40
45
  import "../Forms/Forms.css.js";
41
46
  import "../Forms/SalesforceFieldsForm.js";
@@ -18,6 +18,10 @@ import "react";
18
18
  import "../Button/Button.css.js";
19
19
  import "react-use";
20
20
  /* empty css */
21
+ import "../Article/Article.css.js";
22
+ import "../ArticlesSet/ArticlesSet.css.js";
23
+ /* empty css */
24
+ /* empty css */
21
25
  /* empty css */
22
26
  import "../Carousel/index.js";
23
27
  /* empty css */
@@ -36,6 +40,7 @@ import "../Input/Dropdown.js";
36
40
  import "../Input/Input.js";
37
41
  import "../Input/Input.css.js";
38
42
  import "../Input/InputPhone.js";
43
+ import "../Input/InputTextArea.js";
39
44
  import "react-hook-form";
40
45
  import "../Forms/Forms.css.js";
41
46
  import "../Forms/SalesforceFieldsForm.js";
@@ -0,0 +1,243 @@
1
+ ._1073cm80 .n5hj5p1 {
2
+ border: 1px solid #d4d4d4;
3
+ }
4
+ ._1es6o1h0 .n5hj5p1 {
5
+ border: 1px solid #d4d4d4;
6
+ }
7
+ ._1073cm80 .n5hj5p2 {
8
+ border: none;
9
+ }
10
+ ._1es6o1h0 .n5hj5p2 {
11
+ border: none;
12
+ }
13
+ ._1073cm80 .n5hj5p3 {
14
+ border: none;
15
+ }
16
+ ._1es6o1h0 .n5hj5p3 {
17
+ border: none;
18
+ }
19
+ ._1073cm80 .n5hj5p4 {
20
+ border: none;
21
+ }
22
+ ._1es6o1h0 .n5hj5p4 {
23
+ border: none;
24
+ }
25
+ .n5hj5p5 {
26
+ background-repeat: no-repeat;
27
+ background-position: center center;
28
+ background-size: cover;
29
+ min-height: 179px;
30
+ }
31
+ .n5hj5p6 {
32
+ flex: 1 1 0%;
33
+ padding: 24px;
34
+ }
35
+ .n5hj5p7 {
36
+ font: 700 18px / 1.44 var(--main-font-family);
37
+ display: block;
38
+ }
39
+ ._1073cm80 .n5hj5p8 {
40
+ color: var(--_1073cm83);
41
+ }
42
+ ._1es6o1h0 .n5hj5p8 {
43
+ color: var(--_1073cm83);
44
+ }
45
+ ._1073cm80 .n5hj5p9 {
46
+ color: var(--_1073cm8a);
47
+ }
48
+ ._1es6o1h0 .n5hj5p9 {
49
+ color: var(--_1073cm8a);
50
+ }
51
+ ._1073cm80 .n5hj5pa {
52
+ color: #FAA74A;
53
+ }
54
+ ._1es6o1h0 .n5hj5pa {
55
+ color: #FAA74A;
56
+ }
57
+ ._1073cm80 .n5hj5pb {
58
+ color: var(--_1073cm8o);
59
+ }
60
+ ._1es6o1h0 .n5hj5pb {
61
+ color: var(--_1073cm8o);
62
+ }
63
+ .n5hj5pc {
64
+ font-size: 28px;
65
+ }
66
+ ._1073cm80 .n5hj5pd {
67
+ -webkit-background-clip: text;
68
+ background-image: var(--_1073cm84);
69
+ -webkit-text-fill-color: transparent;
70
+ text-shadow: 0px 0px #00000000;
71
+ }
72
+ ._1es6o1h0 .n5hj5pd {
73
+ color: var(--_1073cm83);
74
+ }
75
+ ._1073cm80 .n5hj5pe {
76
+ -webkit-background-clip: text;
77
+ background-image: var(--_1073cm8b);
78
+ -webkit-text-fill-color: transparent;
79
+ text-shadow: 0px 0px #00000000;
80
+ }
81
+ ._1es6o1h0 .n5hj5pe {
82
+ color: var(--_1073cm8a);
83
+ }
84
+ ._1073cm80 .n5hj5pf {
85
+ color: var(--_1073cm8h);
86
+ }
87
+ ._1es6o1h0 .n5hj5pf {
88
+ color: var(--_1073cm8h);
89
+ }
90
+ ._1073cm80 .n5hj5pg {
91
+ color: var(--_1073cm8o);
92
+ }
93
+ ._1es6o1h0 .n5hj5pg {
94
+ color: var(--_1073cm8o);
95
+ }
96
+ ._1073cm80 .n5hj5pi {
97
+ color: var(--_1073cm82);
98
+ background: var(--_1073cm81);
99
+ }
100
+ ._1es6o1h0 .n5hj5pi {
101
+ color: var(--_1073cm82);
102
+ background: var(--_1073cm81);
103
+ }
104
+ ._1073cm80 .n5hj5pj {
105
+ color: var(--_1073cm89);
106
+ background: var(--_1073cm88);
107
+ }
108
+ ._1es6o1h0 .n5hj5pj {
109
+ color: var(--_1073cm89);
110
+ background: var(--_1073cm88);
111
+ }
112
+ ._1073cm80 .n5hj5pk {
113
+ color: var(--_1073cm8g);
114
+ background: var(--_1073cm8f);
115
+ }
116
+ ._1es6o1h0 .n5hj5pk {
117
+ color: var(--_1073cm8g);
118
+ background: var(--_1073cm8f);
119
+ }
120
+ ._1073cm80 .n5hj5pl {
121
+ color: var(--_1073cm8n);
122
+ background: var(--_1073cm8m);
123
+ }
124
+ ._1es6o1h0 .n5hj5pl {
125
+ color: var(--_1073cm8n);
126
+ background: var(--_1073cm8m);
127
+ }
128
+ .n5hj5pm {
129
+ border: 2px solid transparent;
130
+ font-weight: 700;
131
+ margin-bottom: 0;
132
+ transition-duration: 0.15s;
133
+ transition-property: color , background-color , border-color;
134
+ transition-timing-function: linear;
135
+ text-decoration: none;
136
+ display: inline-block;
137
+ white-space: nowrap;
138
+ font-size: 18px;
139
+ opacity: 1;
140
+ cursor: pointer;
141
+ padding: 12px 64px;
142
+ border-radius: 8px;
143
+ line-height: 1.44;
144
+ }
145
+ .n5hj5pm:hover {
146
+ background-color: transparent;
147
+ }
148
+ ._1073cm80 .n5hj5pn {
149
+ background: var(--_1073cm86);
150
+ color: var(--_1073cm85);
151
+ }
152
+ ._1es6o1h0 .n5hj5pn {
153
+ background: var(--_1073cm86);
154
+ color: var(--_1073cm85);
155
+ }
156
+ ._1073cm80 .n5hj5po {
157
+ background: var(--_1073cm8d);
158
+ color: var(--_1073cm8c);
159
+ }
160
+ ._1es6o1h0 .n5hj5po {
161
+ background: var(--_1073cm8d);
162
+ color: var(--_1073cm8c);
163
+ }
164
+ ._1073cm80 .n5hj5pp {
165
+ color: var(--_1073cm8j);
166
+ background-color: var(--_1073cm86);
167
+ }
168
+ ._1es6o1h0 .n5hj5pp {
169
+ color: var(--_1073cm8j);
170
+ background-color: var(--_1073cm8k);
171
+ }
172
+ ._1073cm80 .n5hj5pq {
173
+ color: var(--_1073cm8q);
174
+ background-color: var(--_1073cm8r);
175
+ }
176
+ ._1es6o1h0 .n5hj5pq {
177
+ color: var(--_1073cm8q);
178
+ background-color: var(--_1073cm8r);
179
+ }
180
+ @media (max-width:1280px) {
181
+ .n5hj5p5 {
182
+ min-height: 146px;
183
+ }
184
+ }
185
+ @media (max-width:1023px) {
186
+ .n5hj5p5 {
187
+ min-height: 107px;
188
+ }
189
+ }
190
+ @media (max-width:768px) {
191
+ .n5hj5p5 {
192
+ min-height: 152px;
193
+ }
194
+ }
195
+ @media (max-width:1023px) and (min-width:769px) {
196
+ .n5hj5p7 {
197
+ font-size: 1rem;
198
+ }
199
+ .n5hj5pc {
200
+ font-size: 1.5rem;
201
+ line-height: 1.28;
202
+ }
203
+ options => {
204
+ var className = config.defaultClassName;
205
+ var selections = _objectSpread2(_objectSpread2({}, config.defaultVariants), options);
206
+ for (var variantName in selections) {
207
+ var _selections$variantNa;
208
+ var variantSelection = (_selections$variantNa = selections[variantName]) !== null && _selections$variantNa !== void 0 ? _selections$variantNa : config.defaultVariants[variantName];
209
+ if (variantSelection != null) {
210
+ var selection = variantSelection;
211
+ if (typeof selection === 'boolean') {
212
+ // @ts-expect-error
213
+ selection = selection === true ? 'true' : 'false';
214
+ }
215
+ var selectionClassName =
216
+ // @ts-expect-error
217
+ config.variantClassNames[variantName][selection];
218
+ if (selectionClassName) {
219
+ className += ' ' + selectionClassName;
220
+ }
221
+ }
222
+ }
223
+ for (var [compoundCheck, compoundClassName] of config.compoundVariants) {
224
+ if (shouldApplyCompound(compoundCheck, selections, config.defaultVariants)) {
225
+ className += ' ' + compoundClassName;
226
+ }
227
+ }
228
+ return className;
229
+ } > * {
230
+ font-size: 15px;
231
+ line-height: 1.4;
232
+ }
233
+ .n5hj5pm {
234
+ padding: 12px;
235
+ width: 100%;
236
+ }
237
+ }
238
+ @media (max-width:350px) {
239
+ .n5hj5pm {
240
+ padding: 12px;
241
+ width: 100%;
242
+ }
243
+ }